%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/question/ |
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/question/option.php |
<?php /** * Admin question editor: question answer template. * * @since 3.0.0 */ ?> <script type="text/x-template" id="tmpl-lp-question-answer-option"> <tr class="answer-option" :class="[isNew() ? 'new-option' : '']" :data-answer-id="id"> <td class="sort lp-sortable-handle"><?php learn_press_admin_view( 'svg-icon' ); ?></td> <td class="order">{{index +1}}.</td> <td class="answer-text"> <form @submit.prevent=""> <input type="text" v-model="answer.text" @change="changeTitle" @blur="updateTitle" @keyup.enter="updateTitle"/> </form> </td> <td class="answer-correct lp-answer-check"> <input :type="radio ? 'radio' : 'checkbox'" :checked="correct ? 'checked' : ''" :value="answer.value" :name="name" @change="changeCorrect"> </td> <td class="actions lp-toolbar-buttons"> <div v-if="deletable" class="lp-toolbar-btn lp-btn-remove remove-answer"> <a class="lp-btn-icon dashicons dashicons-trash" @click="deleteAnswer"></a> </div> </td> </tr> </script> <script type="text/javascript"> (function (Vue, $store, $) { Vue.component('lp-question-answer-option', { template: '#tmpl-lp-question-answer-option', props: ['answer', 'index', 'type', 'radio', 'number'], data: function () { return { changed: false } }, computed: { // answer id id: function () { return this.answer.question_answer_id; }, // check correct answer correct: function () { return this.answer.is_true === 'yes'; }, // input correct form name name: function () { return 'answer_question[' + $store.getters['id'] + ']' }, // deletable answer deletable: function () { return !(this.number < 3 || (this.correct && $store.getters['numberCorrect'] === 1) || this.type === 'true_or_false'); } }, mounted: function () { if (this.isNew()) { this.changed = true; this.updateTitle(); } }, methods: { changeTitle: function () { this.changed = true; }, updateTitle: function () { if (this.changed) { this.$emit('updateTitle', this.answer); } }, changeCorrect: function (e) { this.answer.is_true = (e.target.checked) ? 'yes' : ''; this.$emit('changeCorrect', this.answer); }, deleteAnswer: function () { this.$emit('deleteAnswer', { id: this.id, order: this.answer.answer_order }); }, isNew: function () { return isNaN(this.answer.question_answer_id); } } }) })(Vue, LP_Question_Store, jQuery); </script>