123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <!-- eslint-disable vue/no-v-html -->
- <template>
- <div class="choosetone-preview">
- <div class="stem">
- <span class="question-number">{{ data.property.question_number }}.</span>
- <span v-html="sanitizeHTML(data.stem)"></span>
- </div>
- <div v-if="data.property.is_enable_description" class="description">{{ data.description }}</div>
- <div class="option-list">
- <li v-for="(item, i) in data.option_list" :key="i" :class="['option-item', { active: isAnswer(item.mark) }]">
- <span>{{ computeOptionMethods[data.option_number_show_mode](i) }}. </span>
- <AudioPlay v-if="item.audio_file_id" :file-id="item.audio_file_id" />
- <div class="option-content">
- <template v-if="data.property.tone_type === 'select'">
- <span
- v-for="(itemc, indexc) in con_preview[i].item_con"
- :key="indexc"
- :class="['item-con']"
- @click="con_preview[i].item_active_index = indexc"
- >
- {{ itemc }}
- </span>
- </template>
- </div>
- <span
- v-for="({ img, value }, j) in toneList"
- :key="j"
- :class="[
- 'tone',
- con_preview[i].user_answer[con_preview[i].item_active_index].select_tone === value ? 'active' : '',
- ]"
- @click="chooseTone(con_preview[i], value)"
- >
- <SvgIcon :icon-class="img" />
- </span>
- </li>
- </div>
- </div>
- </template>
- <script>
- import { computeOptionMethods } from '@/views/exercise_questions/data/common';
- import PreviewMixin from './components/PreviewMixin';
- export default {
- name: 'ChooseTonePreview',
- mixins: [PreviewMixin],
- data() {
- return {
- computeOptionMethods,
- toneList: [
- { value: '1', label: '一声', img: 'first-tone' },
- { value: '2', label: '二声', img: 'second-tone' },
- { value: '3', label: '三声', img: 'third-tone' },
- { value: '4', label: '四声', img: 'fourth-tone' },
- { value: '0', label: '轻声', img: 'neutral-tone' },
- ],
- con_preview: [],
- tone_data: [
- ['ā', 'á', 'ǎ', 'à', 'a'],
- ['ō', 'ó', 'ǒ', 'ò', 'o'],
- ['ē', 'é', 'ě', 'è', 'e'],
- ['ī', 'í', 'ǐ', 'ì', 'i'],
- ['ū', 'ú', 'ǔ', 'ù', 'u'],
- ['ǖ', 'ǘ', 'ǚ', 'ǜ', 'ü'],
- ['Ā', 'Á', 'Â', 'À', 'A'],
- ['Ō', 'Ó', 'Ô', 'Ò', 'O'],
- ['Ē', 'É', 'Ê', 'È', 'E'],
- ['Ī', 'Í', 'Î', 'Ì', 'I'],
- ['Ū', 'Ú', 'Û', 'Ù', 'U'],
- ],
- final_con: '',
- };
- },
- created() {
- this.handleData();
- },
- methods: {
- isAnswer(mark, option_type) {
- return this.answer.select_list.some((li) => li.mark === mark && li.option_type === option_type);
- },
- chooseTone(item, value) {
- item.user_answer[item.item_active_index].select_tone = value;
- if (this.data.property.tone_type === 'dimension') {
- item.user_answer[item.item_active_index].select_letter = item.user_answer[item.item_active_index].active_letter;
- }
- this.handleReplaceTone(item.item_con_yuan[item.item_active_index] + value);
- setTimeout(() => {
- item.item_con[item.item_active_index] = this.final_con;
- this.$forceUpdate();
- }, 100);
- },
- // 处理数据
- handleData() {
- this.con_preview = [];
- this.data.option_list.forEach((item) => {
- let con_arr = item.content_preview.split(' ');
- let user_answer = [];
- con_arr.forEach(() => {
- user_answer.push({
- select_tone: null,
- select_letter: '',
- });
- });
- let obj = {
- item_con: con_arr,
- item_con_yuan: JSON.parse(JSON.stringify(con_arr)),
- mark: item.mark,
- user_answer,
- item_active_index: 0,
- active_letter: '',
- };
- this.con_preview.push(obj);
- });
- console.log(this.con_preview);
- },
- handleReplaceTone(e) {
- this.$nextTick(() => {
- let value = e;
- this.resArr = [];
- if (value) {
- let reg = /\s+/g;
- let valueArr = value.split(reg);
- valueArr.forEach((item) => {
- this.handleValue(item);
- });
- let str = '';
- setTimeout(() => {
- this.resArr.forEach((item) => {
- str += ' ';
- item.forEach((sItem) => {
- if (sItem.number && sItem.con) {
- let number = Number(sItem.number);
- let con = sItem.con;
- let word = this.addTone(number, con);
- str += word;
- } else if (sItem.number) {
- str += sItem.number;
- } else if (sItem.con) {
- str += ` ${sItem.con} `;
- }
- });
- });
- this.final_con = str.trim();
- }, 10);
- }
- });
- },
- handleValue(valItem) {
- let reg = /\d/;
- let reg2 = /[A-Za-z]+\d/g;
- let numList = [];
- let valArr = valItem.split('');
- if (reg2.test(valItem)) {
- for (let i = 0; i < valArr.length; i++) {
- let item = valItem[i];
- if (reg.test(item)) {
- let numIndex = numList.length === 0 ? 0 : numList[numList.length - 1].index;
- let con = valItem.substring(numIndex, i);
- con = con.replace(/\d/g, '');
- let obj = {
- index: i,
- number: item,
- con,
- isTran: true,
- };
- numList.push(obj);
- }
- }
- } else {
- numList = [];
- }
- if (numList.length === 0) {
- this.resArr.push([{ con: valItem }]);
- } else {
- this.resArr.push(numList);
- }
- },
- addTone(number, con) {
- let zmList = ['a', 'o', 'e', 'i', 'u', 'v', 'A', 'O', 'E', 'I', 'U'];
- let cons = con;
- if (number) {
- for (let i = 0; i < zmList.length; i++) {
- let zm = zmList[i];
- if (con.indexOf(zm) > -1) {
- let zm2 = this.tone_data[i][number - 1];
- if (con.indexOf('iu') > -1) {
- zm2 = this.tone_data[4][number - 1];
- cons = con.replace('u', zm2);
- } else if (con.indexOf('ui') > -1) {
- zm2 = this.tone_data[3][number - 1];
- cons = con.replace('i', zm2);
- } else if (
- con.indexOf('yv') > -1 ||
- con.indexOf('jv') > -1 ||
- con.indexOf('qv') > -1 ||
- con.indexOf('xv') > -1
- ) {
- zm2 = this.tone_data[4][number - 1];
- cons = con.replace('v', zm2);
- } else {
- cons = con.replace(zm, zm2);
- }
- break;
- }
- }
- }
- return cons;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- @use '@/styles/mixin.scss' as *;
- .choosetone-preview {
- @include preview;
- .option-list {
- display: flex;
- flex-direction: column;
- flex-flow: wrap;
- row-gap: 16px;
- .option-item {
- display: flex;
- column-gap: 16px;
- align-items: center;
- width: 45%;
- margin-right: 5%;
- .option-content {
- padding: 12px 24px;
- color: #706f78;
- background-color: #f9f8f9;
- border-radius: 40px;
- }
- .item-con {
- cursor: pointer;
- }
- .tone {
- width: 32px;
- height: 32px;
- padding: 8px;
- font-size: 0;
- text-align: center;
- cursor: pointer;
- &.active {
- background: #dfe9fd;
- border-radius: 16px;
- }
- }
- }
- }
- }
- </style>
|