123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <!-- eslint-disable vue/no-v-html -->
- <template>
- <div class="judge-preview">
- <div class="stem">
- <span class="question-number">{{ data.property.question_number }}.</span>
- <span v-html="sanitizeHTML(data.stem)"></span>
- </div>
- <AudioPlay
- v-if="isEnable(data.property.is_enable_listening) && data.file_id_list.length > 0"
- :file-id="data.file_id_list[0]"
- />
- <ul class="option-list">
- <li
- v-for="({ content, mark }, i) in data.option_list"
- :key="mark"
- :class="['option-item', { active: isAnswer(mark) }]"
- >
- <div class="option-content">
- <span class="serial-number">{{ computedQuestionNumber(i, data.option_number_show_mode) }}</span>
- <div v-html="sanitizeHTML(content)"></div>
- </div>
- <div class="option-type">
- <div
- v-for="option_type in data.property.option_type_list"
- :key="option_type"
- :class="[
- 'option-type-item',
- {
- active: isAnswer(mark, option_type),
- },
- ]"
- @click="selectAnswer(mark, option_type)"
- >
- <SvgIcon v-if="option_type === option_type_list[0].value" icon-class="check-mark" width="17" height="12" />
- <SvgIcon v-if="option_type === option_type_list[1].value" icon-class="cross" size="12" />
- <SvgIcon v-if="option_type === option_type_list[2].value" icon-class="circle" size="20" />
- </div>
- </div>
- </li>
- </ul>
- </div>
- </template>
- <script>
- import { option_type_list } from '@/views/exercise_questions/data/judge';
- import { computedQuestionNumber } from '@/views/exercise_questions/data/common';
- import PreviewMixin from './components/PreviewMixin';
- export default {
- name: 'JudgePreview',
- mixins: [PreviewMixin],
- data() {
- return {
- computedQuestionNumber,
- option_type_list,
- };
- },
- methods: {
- isAnswer(mark, option_type) {
- return this.answer.answer_list.some((li) => li.mark === mark && li.option_type === option_type);
- },
- selectAnswer(mark, option_type) {
- const index = this.answer.answer_list.findIndex((li) => li.mark === mark);
- if (index === -1) {
- this.answer.answer_list.push({ mark, option_type });
- } else {
- this.answer.answer_list[index].option_type = option_type;
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- @use '@/styles/mixin.scss' as *;
- .judge-preview {
- @include preview;
- .option-list {
- display: flex;
- flex-direction: column;
- row-gap: 16px;
- .option-item {
- display: flex;
- column-gap: 16px;
- .option-content {
- display: flex;
- flex: 1;
- column-gap: 24px;
- align-items: center;
- padding: 12px 24px;
- background-color: $content-color;
- border-radius: 40px;
- .serial-number {
- color: #000;
- }
- }
- .option-type {
- display: flex;
- column-gap: 8px;
- align-items: center;
- &-item {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 48px;
- height: 48px;
- color: #000;
- cursor: pointer;
- background-color: $content-color;
- border-radius: 50%;
- &.active {
- color: #fff;
- background-color: $light-main-color;
- }
- }
- }
- }
- }
- }
- </style>
|