1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330 |
- <!-- -->
- <template>
- <div class="NNPE-ArticleView" v-if="curQue">
- <!-- <a class="ArticleView-full" @click="fullScreen">黑板模式</a> -->
- <div
- class="aduioLine-box aduioLine-practice-npc"
- v-if="
- ((curQue.mp3_list && curQue.mp3_list.length > 0 && curQue.mp3_list[0].url) ||
- config.isHasPY ||
- config.isHasEN) &&
- curQue.property.mp3_position === 'top'
- "
- >
- <div class="aduioLine-content">
- <template v-if="curQue.mp3_list && curQue.mp3_list.length > 0 && curQue.mp3_list[0].url">
- <AudioLine
- audioId="diaPraAudio"
- :mp3="curQue.mp3_list[0].url"
- :getCurTime="getCurTime"
- ref="audioLine"
- :stopAudio="stopAudio"
- :width="colLength == 2 ? 175 : isPhone ? 200 : 750"
- :isRepeat="isRepeat"
- :mp3Source="curQue.mp3_list[0].source"
- :ed="ed"
- type="audioLine"
- @handleChangeStopAudio="handleChangeStopAudio"
- @emptyEd="emptyEd"
- />
- </template>
- </div>
- <div class="aduioLine-right">
- <span :class="['Repeat-16', isRepeat ? '' : 'disabled']" @click="changeRepeat"></span>
- <!-- <span
- :class="['pinyin-16', config.isShowPY ? '' : 'disabled']"
- @click="changePinyin"
- v-if="config.isHasPY"
- ></span>
- <span :class="['EN-16', config.isShowEN ? '' : 'disabled']" @click="changeEN" v-if="config.isHasEN"></span> -->
- <SvgIcon
- v-if="config.isHasPY"
- icon-class="pin-btn"
- size="16"
- :class="['pinyin-16', config.isShowPY ? '' : 'disabled']"
- :style="{ color: config.isShowPY ? (attrib ? attrib.topic_color : '') : '#DCDFE6' }"
- @click="changePinyin"
- />
- <!-- <span :class="['EN-16', config.isShowEN ? '' : 'disabled']" @click="changeEN" v-if="config.isHasEN"></span> -->
- <SvgIcon
- v-if="config.isHasEN"
- icon-class="en-btn"
- size="16"
- :class="['EN-16', config.isShowEN ? '' : 'disabled']"
- :style="{ color: config.isShowEN ? (attrib ? attrib.topic_color : '') : '#DCDFE6' }"
- @click="changeEN"
- />
- </div>
- </div>
- <template v-if="resObj">
- <p class="notice" v-if="curQue.notice" style="padding-top: 24px">
- {{ curQue.notice }}
- </p>
- <div class="NPC-sentences-list">
- <div
- :class="['NNPE-detail-box', sentIndex == index ? 'active' : '']"
- v-for="(item, index) in resObj.sentList"
- :key="'detail' + index"
- >
- <div
- class="NNPE-detail"
- @click="
- handleChangeTime(
- curQue.wordTime && curQue.wordTime[index] && curQue.wordTime[index].bg,
- index,
- curQue.wordTime && curQue.wordTime[index] && curQue.wordTime[index].ed,
- )
- "
- >
- <template v-if="item.sentArr[0].sentIndex == 0">
- <RoleChs
- :curRole="item.roleDetail"
- :color="
- (curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime >= curQue.wordTime[index].bg &&
- curTime <= curQue.wordTime[index].ed) ||
- sentIndex == index
- ? 'rgba(0,0,0,0.85)'
- : 'rgba(0,0,0,0.45)'
- "
- :type="curQue.property.role_img_type"
- />
- </template>
- <div v-else style="width: 36px; height: 36px"></div>
- <div class="sentence-box">
- <template v-if="item.sentArr[0].sentIndex == 0">
- <!-- <div class="roleDetail" v-if="item.roleDetail.detail && item.roleDetail.detail.wordsList.length > 0">
- <span
- :class="[
- 'pinyin',
- (curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime >= curQue.wordTime[index].bg &&
- curTime <= curQue.wordTime[index].ed) ||
- sentIndex == index
- ? 'color85'
- : 'color45',
- ]"
- >{{ item.roleDetail.detail.wordsList | handlePinyin }}</span
- >
- <span
- :class="[
- 'chs',
- (curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime >= curQue.wordTime[index].bg &&
- curTime <= curQue.wordTime[index].ed) ||
- sentIndex == index
- ? 'color85'
- : 'color45',
- ]"
- >{{ item.roleDetail.detail.wordsList | handleChs }}</span
- >
- </div> -->
- <div class="roleDetail" v-if="item.roleDetail.fullName || item.roleDetail.fullPinyin">
- <span
- :class="[
- 'chs',
- (curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime >= curQue.wordTime[index].bg &&
- curTime <= curQue.wordTime[index].ed) ||
- sentIndex == index
- ? 'color85'
- : 'color45',
- ]"
- >{{ item.roleDetail.fullName }}</span
- >
- <span
- :class="[
- 'pinyin',
- (curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime >= curQue.wordTime[index].bg &&
- curTime <= curQue.wordTime[index].ed) ||
- sentIndex == index
- ? 'color85'
- : 'color45',
- ]"
- >{{ item.roleDetail.fullPinyin }}</span
- >
- </div>
- </template>
- <div class="sentence-box-inner" :style="{ background: item.roleDetail.color.bg }">
- <div
- v-if="item.enwords && config.isShowEN && curQue.enPosition && curQue.enPosition == 'top'"
- :class="['enwords', sentIndex == index ? 'wordBlank' : '']"
- >
- {{ item.enwords }}
- </div>
- <div style="overflow: hidden; clear: both"></div>
- <div class="NNPE-words-box">
- <div
- class="NNPE-words"
- v-for="(pItem, pIndex) in item.sentArr"
- :key="'wordsList' + pIndex"
- :class="[
- pItem.chs != '“' && pItem.wordIndex == 0 ? 'textLeft' : 'textCenter',
- pItem.chs == '“' ? 'textRight' : '',
- ]"
- >
- <template v-if="!pItem.width">
- <template v-if="pItem.isShow">
- <template
- v-if="
- (item.sentArr[pIndex + 1] &&
- item.sentArr[pIndex + 1].chs &&
- chsFhList.indexOf(item.sentArr[pIndex + 1].chs) > -1) ||
- (item.sentArr[pIndex + 1] &&
- item.sentArr[pIndex + 1].chs &&
- item.sentArr[pIndex + 1].chs == '#')
- "
- >
- <span class="NNPE-words-box">
- <template v-if="curQue.property.pinyin_position == 'top'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- class="NNPE-pinyin"
- :class="[
- pItem.className ? pItem.className : '',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(pItem.pinyin) > -1 ? 'noFont' : '',
- ]"
- >{{ pItem.pinyin }}</span
- >
- </template>
- <span
- class="NNPE-chs"
- :class="[
- pItem.padding && config.isShowPY && item.dhaspinyin ? 'padding' : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- >
- <template>
- <span
- v-for="(wItem, wIndex) in pItem.leg"
- :key="'ci' + wIndex + pIndex + index"
- :class="[
- isPlaying &&
- pItem.timeList &&
- pItem.timeList[wIndex] &&
- curTime >= pItem.timeList[wIndex].wordBg &&
- curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime <= curQue.wordTime[index].ed
- ? 'active'
- : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- :style="{
- fontFamily: pItem.config.fontFamily,
- height: '28px',
- display: 'inline-block',
- }"
- >{{ NumberList.indexOf(pItem.pinyin) == -1 ? pItem.chs[wIndex] : '' }}</span
- >
- </template>
- </span>
- <template v-if="curQue.property.pinyin_position == 'bottom'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- class="NNPE-pinyin"
- :class="[
- pItem.className ? pItem.className : '',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(pItem.pinyin) > -1 ? 'noFont' : '',
- ]"
- >{{ pItem.pinyin }}</span
- >
- </template>
- </span>
- <span class="NNPE-words-box">
- <template v-if="curQue.property.pinyin_position == 'top'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- :class="[
- 'NNPE-pinyin',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(item.sentArr[pIndex + 1].pinyin) > -1 ? 'noFont' : '',
- ]"
- style="text-align: left"
- >{{ item.sentArr[pIndex + 1].pinyin }}</span
- >
- </template>
- <span class="NNPE-chs" style="text-align: left">
- <span
- :class="[
- isPlaying &&
- pItem.timeList[pItem.leg - 1] &&
- curTime >= pItem.timeList[pItem.leg - 1].wordBg &&
- curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime <= curQue.wordTime[index].ed
- ? 'active'
- : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- :style="{
- fontFamily: item.sentArr[pIndex + 1].config.fontFamily,
- height: '28px',
- display: 'inline-block',
- }"
- >
- {{
- NumberList.indexOf(item.sentArr[pIndex + 1].pinyin) == -1
- ? item.sentArr[pIndex + 1].chs
- : ''
- }}</span
- >
- </span>
- <template v-if="curQue.property.pinyin_position == 'bottom'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- :class="[
- 'NNPE-pinyin',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(item.sentArr[pIndex + 1].pinyin) > -1 ? 'noFont' : '',
- ]"
- style="text-align: left"
- >{{ item.sentArr[pIndex + 1].pinyin }}</span
- >
- </template>
- </span>
- <span
- class="NNPE-words-box"
- v-if="
- item.sentArr[pIndex + 2] &&
- item.sentArr[pIndex + 2].chs &&
- chsFhList.indexOf(item.sentArr[pIndex + 2].chs) > -1
- "
- >
- <template v-if="curQue.property.pinyin_position == 'top'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- :class="[
- 'NNPE-pinyin',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(item.sentArr[pIndex + 2].pinyin) > -1 ? 'noFont' : '',
- ]"
- style="text-align: left"
- >{{ item.sentArr[pIndex + 2].pinyin }}</span
- >
- </template>
- <span class="NNPE-chs" style="text-align: left">
- <span
- :class="[
- isPlaying &&
- pItem.timeList[pItem.leg - 1] &&
- curTime >= pItem.timeList[pItem.leg - 1].wordBg &&
- curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime <= curQue.wordTime[index].ed
- ? 'active'
- : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- :style="{
- fontFamily: item.sentArr[pIndex + 2].config.fontFamily,
- height: '28px',
- display: 'inline-block',
- }"
- >
- {{
- NumberList.indexOf(item.sentArr[pIndex + 2].pinyin) == -1
- ? item.sentArr[pIndex + 2].chs
- : ''
- }}</span
- >
- </span>
- <template v-if="curQue.property.pinyin_position == 'bottom'">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- :class="[
- 'NNPE-pinyin',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(item.sentArr[pIndex + 2].pinyin) > -1 ? 'noFont' : '',
- ]"
- style="text-align: left"
- >{{ item.sentArr[pIndex + 2].pinyin }}</span
- >
- </template>
- </span>
- </template>
- <template v-else>
- <template v-if="curQue.property.pinyin_position == 'top'">
- <template v-if="NumberList.indexOf(pItem.pinyin) < 0">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- class="NNPE-pinyin"
- :class="[
- pItem.chs != '“' && pItem.padding ? 'padding' : '',
- pItem.className ? pItem.className : '',
- sentIndex == index ? 'wordBlank' : '',
- noFont.indexOf(item.pinyin) > -1 ? 'noFont' : '',
- ]"
- >{{ pItem.pinyin }}</span
- >
- </template>
- </template>
- <span
- v-if="pItem.chs != '#'"
- class="NNPE-chs"
- :class="[
- pItem.chs != '“' && pItem.padding && config.isShowPY && item.dhaspinyin ? 'padding' : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- >
- <template>
- <span
- v-for="(wItem, wIndex) in pItem.leg"
- :key="'ci' + wIndex + pIndex + index"
- :class="[
- isPlaying &&
- pItem.timeList &&
- pItem.timeList[wIndex] &&
- curTime >= pItem.timeList[wIndex].wordBg &&
- curQue.wordTime &&
- curQue.wordTime[index] &&
- curTime <= curQue.wordTime[index].ed
- ? 'active'
- : '',
- ]"
- :style="{
- fontFamily: pItem.config.fontFamily,
- height: '28px',
- display: 'inline-block',
- }"
- >{{ pItem.chs[wIndex] }}</span
- >
- </template>
- </span>
- <template v-if="curQue.property.pinyin_position == 'bottom'">
- <template v-if="NumberList.indexOf(pItem.pinyin) < 0">
- <span
- v-if="config.isShowPY && item.dhaspinyin"
- class="NNPE-pinyin"
- :class="[
- pItem.chs != '“' && pItem.padding ? 'padding' : '',
- pItem.className ? pItem.className : '',
- sentIndex == index ? 'wordBlank' : '',
- ]"
- >{{ pItem.pinyin }}</span
- >
- </template>
- </template>
- </template>
- </template>
- </template>
- <template v-else>
- <span
- :style="{
- height: pItem.height + 'px',
- width: pItem.width + 'px',
- }"
- ></span>
- </template>
- </div>
- </div>
- <div style="overflow: hidden; clear: both"></div>
- <div
- v-if="
- item.enwords &&
- config.isShowEN &&
- (!curQue.enPosition || (curQue.enPosition && curQue.enPosition == 'bottom'))
- "
- :class="['enwords', sentIndex == index ? 'wordBlank' : '']"
- >
- {{ item.enwords }}
- </div>
- <div
- class="multilingual-para"
- :class="[item.isTitle ? 'multilingual-para-center' : '']"
- v-if="curQue.property.multilingual_position === 'para'"
- >
- {{
- multilingualTextList[multilingual] && multilingualTextList[multilingual][index]
- ? multilingualTextList[multilingual][index]
- : ''
- }}
- </div>
- </div>
- </div>
- </div>
- <div v-show="sentIndex == index" class="Soundrecord-content">
- <div class="Soundrecord-content-inner">
- <Soundrecord
- type="promax"
- class="luyin-box"
- @getWavblob="getWavblob"
- @handleParentPlay="handleParentPlay"
- @sentPause="sentPause"
- :TaskModel="TaskModel"
- :answerRecordList="
- curQue.Bookanswer.practiceModel[index] && curQue.Bookanswer.practiceModel[index].recordList
- "
- :tmIndex="index"
- @handleWav="handleWav"
- :sentIndex="sentIndex"
- v-if="refresh"
- />
- <div class="compare-box" v-if="curQue.mp3_list && curQue.mp3_list.length > 0">
- <Audio-compare
- :themeColor="attrib ? attrib.topic_color : '#e35454'"
- :index="index"
- :sentIndex="sentIndex"
- :url="curQue.mp3_list[0].id"
- :bg="curQue.wordTime[index].bg"
- :ed="curQue.wordTime[index].ed"
- :wavblob="wavblob"
- :getCurTime="getCurTime"
- :sentPause="sentPause"
- :isRecord="isRecord"
- :handleChangeStopAudio="handleChangeStopAudio"
- :getPlayStatus="getPlayStatus"
- />
- </div>
- </div>
- <span class="full-screen-icon" @click="fullScreen"> </span>
- </div>
- </div>
- <!-- <div class="multilingual" v-for="(items, indexs) in multilingualTextList" :key="indexs">
- {{ items }}
- </div> -->
- </div>
- </template>
- <template v-for="(items, indexs) in curQue.detail">
- <div
- class="multilingual"
- :key="indexs"
- v-if="curQue.property.multilingual_position === 'all' && items.multilingualTextList[multilingual]"
- >
- <div class="multilingual-para" :class="[items.isTitle ? 'multilingual-para-center' : '']">
- {{
- items.multilingualTextList && items.multilingualTextList[multilingual]
- ? items.multilingualTextList[multilingual].join(' ')
- : ''
- }}
- </div>
- </div>
- </template>
- <div
- class="aduioLine-box aduioLine-practice-npc aduioLine-box-bottom"
- v-if="
- ((curQue.mp3_list && curQue.mp3_list.length > 0 && curQue.mp3_list[0].url) ||
- config.isHasPY ||
- config.isHasEN) &&
- curQue.property.mp3_position === 'bottom'
- "
- >
- <div class="aduioLine-content">
- <template v-if="curQue.mp3_list && curQue.mp3_list.length > 0 && curQue.mp3_list[0].url">
- <AudioLine
- audioId="diaPraAudio"
- :mp3="curQue.mp3_list[0].url"
- :getCurTime="getCurTime"
- ref="audioLine"
- :stopAudio="stopAudio"
- :width="colLength == 2 ? 175 : isPhone ? 200 : 750"
- :isRepeat="isRepeat"
- :mp3Source="curQue.mp3_list[0].source"
- :ed="ed"
- type="audioLine"
- @handleChangeStopAudio="handleChangeStopAudio"
- @emptyEd="emptyEd"
- />
- </template>
- </div>
- <div class="aduioLine-right">
- <span :class="['Repeat-16', isRepeat ? '' : 'disabled']" @click="changeRepeat"></span>
- <span
- :class="['pinyin-16', config.isShowPY ? '' : 'disabled']"
- @click="changePinyin"
- v-if="config.isHasPY"
- ></span>
- <span :class="['EN-16', config.isShowEN ? '' : 'disabled']" @click="changeEN" v-if="config.isHasEN"></span>
- </div>
- </div>
- <div class="voice-full-screen" :id="'screen-' + mathNum">
- <Voicefullscreen
- v-if="isFull && resObj"
- :themeColor="attrib ? attrib.topic_color : '#e35454'"
- :curQue="curQue"
- :sentList="resObj.sentList"
- :sentIndex="sentIndex"
- :mp3="curQue.mp3_list && curQue.mp3_list[0] ? curQue.mp3_list[0].id : ''"
- :noFont="noFont"
- :NNPENewWordList="NNPENewWordList"
- :currentTreeID="currentTreeID"
- :isFull="isFull"
- :config="config"
- :TaskModel="TaskModel"
- @handleWav="handleWav"
- @changePinyin="changePinyin"
- @changeEN="changeEN"
- @exitFullscreen="exitFullscreen"
- @changeIsFull="changeIsFull"
- :NpcNewWordMp3="NpcNewWordMp3"
- />
- </div>
- </div>
- </template>
- <script>
- import { timeStrToSen } from '@/utils/transform';
- import AudioLine from '../voice_matrix/components/AudioLine.vue';
- import Soundrecord from '../../common/SoundRecord.vue'; // 录音模板
- import RoleChs from './RoleChs.vue';
- import AudioCompare from '../article/components/AudioCompare.vue';
- import Voicefullscreen from '../article/Voicefullscreen.vue';
- export default {
- name: 'ArticleView',
- props: [
- 'curQue',
- 'colorBox',
- 'noFont',
- 'attrib',
- 'config',
- 'NNPENewWordList',
- 'currentTreeID',
- 'TaskModel',
- 'colLength',
- 'NpcNewWordMp3',
- 'isPhone',
- 'multilingual',
- ],
- components: {
- AudioLine,
- Soundrecord,
- RoleChs,
- AudioCompare,
- Voicefullscreen,
- },
- filters: {
- handlePinyin(wordsList) {
- let str = '';
- wordsList.forEach((item, index) => {
- if (index < wordsList.length - 1) {
- str += item.pinyin + ' ';
- } else {
- str += item.pinyin;
- }
- });
- return str;
- },
- handleChs(wordsList) {
- let str = '';
- wordsList.forEach((item, index) => {
- if (index < wordsList.length - 1) {
- str += item.chs + ' ';
- } else {
- str += item.chs;
- }
- });
- return str;
- },
- },
- data() {
- return {
- wavblob: null,
- resObj: null,
- curTime: 0, //单位s
- chsFhList: [',', '。', '”', ':', '》', '?', '!', ';', '、'],
- enFhList: [',', '.', ';', '?', '!', ':', '>', '<'],
- NumberList: ['①', '②', '③', '④', '⑤', '⑥', '⑦', '⑧', '⑨', '⑩', '⑪', '⑫', '⑬', '⑭', '⑮', '⑯', '⑰', '⑱', '⑲', '⑳'],
- stopAudio: false,
- sentIndex: 0,
- isRepeat: false,
- currSent: null, //当前句子的时间
- isRecord: false,
- isFull: false,
- mathNum: Math.random().toString(36).substr(2),
- ed: undefined,
- refresh: true,
- highWords: null,
- highWordsArr: [],
- highIndex: 0,
- newWordList: [],
- multilingualTextList: {},
- };
- },
- computed: {
- isPlaying: function () {
- let playing = false;
- if (this.$refs.audioLine) {
- playing = this.$refs.audioLine.audio.isPlaying;
- }
- return playing;
- },
- },
- watch: {
- sentIndex: {
- handler: function (newVal, oldVal) {
- let _this = this;
- if (newVal != oldVal) {
- let Bookanswer = _this.curQue.Bookanswer;
- if (
- Bookanswer &&
- Bookanswer.practiceModel &&
- Bookanswer.practiceModel[newVal] &&
- Bookanswer.practiceModel[newVal].recordList &&
- Bookanswer.practiceModel[newVal].recordList.length > 0
- ) {
- _this.wavblob = Bookanswer.practiceModel[newVal].recordList[0].wavData;
- } else {
- _this.wavblob = '';
- }
- }
- },
- deep: true,
- },
- isFull: {
- handler: function (newVal, oldVal) {
- let _this = this;
- _this.refresh = false;
- if (!newVal) {
- _this.$nextTick(() => {
- // 重新渲染组件
- _this.refresh = true;
- });
- }
- },
- deep: true,
- },
- },
- //方法集合
- methods: {
- getPlayStatus(val) {
- //this.isPlaying = val;
- },
- pauseAudio() {
- let audio = document.getElementsByTagName('audio');
- if (audio && audio.length > 0 && window.location.href.indexOf('GCLS-Learn') == -1) {
- audio.forEach((item) => {
- item.pause();
- });
- }
- },
- pauseVideo() {
- let video = document.getElementsByTagName('video');
- if (video && video.length > 0 && window.location.href.indexOf('GCLS-Learn') == -1) {
- video.forEach((item) => {
- item.pause();
- });
- }
- },
- //语音全屏
- fullScreen(type) {
- this.pauseAudio();
- this.pauseVideo();
- this.isFull = true;
- this.goFullscreen();
- },
- goFullscreen() {
- let id = 'screen-' + this.mathNum;
- var element = document.getElementById(id);
- if (element.requestFullscreen) {
- element.requestFullscreen();
- } else if (element.msRequestFullscreen) {
- element.msRequestFullscreen();
- } else if (element.mozRequestFullScreen) {
- element.mozRequestFullScreen();
- } else if (element.webkitRequestFullscreen) {
- element.webkitRequestFullscreen();
- }
- },
- exitFullscreen() {
- this.isFull = false;
- if (document.exitFullscreen) {
- document.exitFullscreen();
- } else if (document.msExitFullscreen) {
- document.msExitFullscreen();
- } else if (document.mozCancelFullScreen) {
- document.mozCancelFullScreen();
- } else if (document.webkitExitFullscreen) {
- document.webkitExitFullscreen();
- }
- },
- changeIsFull() {
- this.isFull = false;
- },
- getWavblob(wavblob) {
- this.wavblob = wavblob;
- },
- sentPause(isRecord) {
- this.isRecord = isRecord;
- },
- getCurTime(curTime) {
- let _this = this;
- if (_this.isRepeat) {
- let time = curTime * 1000;
- if (time >= _this.currSent.ed || time <= _this.currSent.bg) {
- _this.curTime = _this.currSent.bg;
- this.$refs.audioLine.onTimeupdateTime(_this.currSent.bg / 1000, true);
- } else {
- _this.curTime = curTime * 1000;
- }
- } else {
- _this.curTime = curTime * 1000;
- _this.getSentIndex(_this.curTime);
- }
- },
- getSentIndex(curTime) {
- for (let i = 0; i < this.curQue.wordTime.length; i++) {
- let bg = this.curQue.wordTime[i].bg;
- let ed = this.curQue.wordTime[i].ed;
- if (curTime >= bg && curTime <= ed) {
- this.sentIndex = i;
- break;
- }
- }
- },
- handleData() {
- this.curQue.multilingual.forEach((item) => {
- let trans_arr = item.translation.split('\n');
- this.$set(this.multilingualTextList, item.type, trans_arr);
- });
- let resArr = [],
- sentArrTotal = [];
- let curQue = JSON.parse(JSON.stringify(this.curQue));
- let wordTimeList = curQue.wordTime;
- let dhaspinyin = false; // 每段是否有拼音
- curQue.detail.forEach((dItem, dIndex) => {
- dhaspinyin = false;
- let roleDetail = this.getRole(dItem);
- dItem.wordsList.forEach((sItem, sIndex) => {
- let sentArr = [];
- let sentence = dItem.sentences[sIndex];
- sItem.forEach((wItem, wIndex) => {
- let startIndex = wIndex == 0 ? 0 : sentArr[wIndex - 1].startIndex + sentArr[wIndex - 1].chs.length;
- let endIndex = wIndex == 0 ? wItem.chs.length : sentArr[wIndex - 1].endIndex + wItem.chs.length;
- // this.judgePad(sItem, wItem, wIndex);
- this.mergeWordSymbol(wItem);
- let words = '';
- if (this.newWordList.length > 0) {
- if (!this.highWords) {
- this.findLightWord(wItem, wIndex, sentence, sItem);
- words = this.highWords ? this.highWords.words : '';
- } else {
- if (wIndex > this.highWords.endIndex - 1) {
- this.highWords = null;
- this.findLightWord(wItem, wIndex, sentence, sItem);
- words = this.highWords ? this.highWords.words : '';
- } else {
- words = this.highWords ? this.highWords.words : '';
- }
- }
- }
- let obj = {
- paraIndex: dIndex, //段落索引
- sentIndex: sIndex, //在段落中句子索引
- wordIndex: wIndex, //单词的索引
- pinyin:
- curQue.pinyin_type === 'pinyin'
- ? curQue.property.is_first_sentence_first_hz_pinyin_first_char_upper_case === 'true' && wIndex === 0
- ? wItem.pinyin_up
- : wItem.pinyin
- : wItem.pinyin_tone,
- chs: wItem.chs,
- padding: true,
- className: wItem.className,
- isShow: wItem.isShow,
- startIndex: startIndex,
- endIndex: endIndex,
- leg: wItem.chs.length,
- timeList: [],
- words: words,
- config: {
- fontFamily: wItem.fontFamily,
- },
- };
- sentArr.push(obj);
- if (wItem.pinyin) dhaspinyin = true;
- });
- let objs = {
- roleDetail: roleDetail,
- sentArr: sentArr,
- enwords: dItem.sentencesEn && dItem.sentencesEn[sIndex] && dItem.sentencesEn[sIndex].replace(/\'/g, '’'),
- dhaspinyin: dhaspinyin,
- };
- sentArrTotal.push(sentArr);
- resArr.push(objs);
- });
- });
- if (wordTimeList && wordTimeList.length > 0) {
- this.mergeWordTime(sentArrTotal, wordTimeList);
- }
- this.resObj = { sentList: resArr };
- },
- //获取角色
- getRole(dItem) {
- let roleIndex = dItem.roleIndex;
- let resObj = null;
- let roleList = JSON.parse(JSON.stringify(this.curQue.property.role_list));
- for (let i = 0; i < roleList.length; i++) {
- let item = roleList[i];
- if (item.id == roleIndex) {
- resObj = item;
- // resObj.color = this.colorBox[i];
- break;
- }
- }
- return resObj;
- },
- mergeWordTime(resArr, wordTimeList) {
- resArr.forEach((item, index) => {
- let wordsResultList = wordTimeList[index].wordsResultList;
- item.forEach((wItem) => {
- let startIndex = wItem.startIndex;
- let endIndex = wItem.endIndex;
- wItem.timeList = wordsResultList.slice(startIndex, endIndex);
- });
- });
- },
- //词和标点合一起
- mergeWordSymbol(wItem) {
- if (this.chsFhList.indexOf(wItem.chs) > -1 || this.NumberList.indexOf(wItem.pinyin) > -1) {
- wItem.isShow = false;
- } else {
- wItem.isShow = true;
- }
- },
- findLightWord(wItem, startIndex, sentence, sItem) {
- let words = '',
- endIndex = 0;
- this.newWordList.forEach((item) => {
- if (item.length == 1) {
- if (item == wItem.chs && !wItem.banLight) {
- words = wItem.chs;
- endIndex = startIndex + 1;
- }
- } else {
- if (item[0] == wItem.chs && sentence.indexOf(item) > -1) {
- let index = null;
- let chsStr = '';
- for (let i = startIndex; i < sItem.length + 1; i++) {
- index = i;
- if (chsStr.length == item.length) {
- break;
- } else {
- chsStr += sItem[i] ? sItem[i].chs : '';
- }
- }
- if (chsStr == item && !wItem.banLight) {
- words = item;
- endIndex = index;
- }
- } else if (wItem.new_word && wItem.new_word == item && !wItem.banLight) {
- words = item;
- endIndex = startIndex + 1;
- }
- }
- });
- if (words) {
- this.highWords = { words: words, endIndex: endIndex };
- } else {
- this.highWords = null;
- }
- },
- //判断是否有padding
- judgePad(sItem, wItem, curIndex) {
- let leg = sItem.length;
- if (curIndex < leg - 1) {
- let nextIndex = curIndex + 1;
- let chs = sItem[nextIndex].chs;
- if (this.chsFhList.indexOf(chs) > -1 || this.chsFhList.indexOf(wItem.chs) > -1) {
- wItem.padding = false;
- } else {
- wItem.padding = true;
- }
- if (this.enFhList.indexOf(wItem.pinyin) > -1) {
- wItem.className = 'textLeft';
- }
- }
- },
- //转化时间
- handleTimeList(list) {
- let listRes = [];
- list.forEach((item) => {
- let res = timeStrToSen(item);
- listRes.push(res);
- });
- return listRes;
- },
- //计算总时间
- countWordTime(sentArr) {
- let total = 0;
- sentArr.forEach((item) => {
- total += item.endTime;
- });
- return total;
- },
- //点击播放某个句子
- handleChangeTime(time, index, ed) {
- let _this = this;
- if (_this.isRepeat) {
- _this.currSent = _this.curQue.wordTime[index];
- }
- _this.sentIndex = index;
- _this.ed = ed;
- if (time) {
- _this.curTime = time;
- _this.$refs.audioLine.onTimeupdateTime(time / 1000, true);
- }
- },
- emptyEd() {
- this.ed = undefined;
- },
- handleWav(list, tmIndex) {
- tmIndex = tmIndex ? tmIndex : 0;
- this.curQue.Bookanswer.practiceModel[tmIndex] = {
- recordList: [],
- };
- this.$set(this.curQue.Bookanswer.practiceModel[tmIndex], 'recordList', list);
- },
- // 录音时暂停音频播放
- handleParentPlay() {
- this.stopAudio = true;
- },
- // 音频播放时改变布尔值
- handleChangeStopAudio() {
- this.stopAudio = false;
- },
- //拼音的显示和隐藏
- changePinyin() {
- if (this.config.isHasPY) {
- this.$emit('changeConfig', 'isShowPY');
- }
- },
- // 英文的显示和隐藏
- changeEN() {
- if (this.config.isHasEN) {
- this.$emit('changeConfig', 'isShowEN');
- }
- },
- // 单句是否重复播放
- changeRepeat() {
- let _this = this;
- _this.isRepeat = !_this.isRepeat;
- this.currSent = _this.curQue.wordTime[_this.sentIndex];
- },
- handleNewword() {
- let NewWordList = [];
- this.NNPENewWordList.forEach((wItem) => {
- // item.forEach((wItem) => {
- if (wItem.new_word) {
- NewWordList.push(wItem.new_word);
- } else if (wItem.detail && wItem.detail.sentence) {
- NewWordList.push(wItem.detail.sentence);
- }
- // });
- });
- this.newWordList = JSON.parse(JSON.stringify(NewWordList));
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- if (this.curQue) {
- this.handleData();
- }
- },
- beforeCreate() {}, //生命周期 - 创建之前
- beforeMount() {}, //生命周期 - 挂载之前
- beforeUpdate() {}, //生命周期 - 更新之前
- updated() {}, //生命周期 - 更新之后
- beforeDestroy() {}, //生命周期 - 销毁之前
- destroyed() {}, //生命周期 - 销毁完成
- activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang="scss" scoped>
- //@import url(); 引入公共css类
- .NNPE-ArticleView {
- position: relative;
- width: 100%;
- .ArticleView-full {
- position: absolute;
- top: -44px;
- left: 0;
- z-index: 99999;
- padding-left: 24px;
- font-size: 14px;
- font-weight: bold;
- line-height: 24px;
- color: #000;
- background: url('@/assets/full-screen-red.png') left center no-repeat;
- background-size: 16px 16px;
- }
- .NPC-sentences-list {
- padding: 0 0 24px;
- }
- .multilingual {
- padding: 6px 24px 12px;
- word-break: break-word;
- }
- .aduioLine-content {
- flex: 1;
- }
- .aduioLine-practice-npc {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- .aduioLine-right {
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 92px;
- height: 40px;
- padding: 0 12px;
- border-left: 1px solid rgba(0, 0, 0, 10%);
- > span {
- width: 16px;
- height: 16px;
- cursor: pointer;
- }
- }
- }
- .NNPE-detail-box {
- &.active {
- background: rgba(0, 0, 0, 6%);
- }
- }
- .enwords {
- padding-left: 3px;
- font-family: 'Helvetica';
- font-size: 14px;
- font-weight: normal;
- line-height: 22px;
- color: rgba(0, 0, 0, 45%);
- word-break: break-word;
- &.wordBlank {
- color: rgba(0, 0, 0, 85%);
- }
- }
- .NNPE-detail {
- box-sizing: border-box;
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- width: 100%;
- padding: 8px 24px;
- overflow: hidden;
- clear: both;
- color: rgba(0, 0, 0, 45%);
- .sentence-box {
- padding-left: 8px;
- overflow: hidden;
- clear: both;
- &-inner {
- box-sizing: border-box;
- float: left;
- padding: 8px 12px;
- border: 1px solid rgba(0, 0, 0, 10%);
- border-radius: 8px;
- }
- .roleDetail {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- height: 36px;
- .pinyin {
- margin-left: 4px;
- font-family: 'League';
- font-size: 14px;
- line-height: 22px;
- color: rgba(0, 0, 0, 85%);
- &.noFont {
- font-family: initial;
- }
- }
- .chs {
- font-family: '楷体';
- font-size: 16px;
- line-height: 24px;
- color: rgba(0, 0, 0, 85%);
- }
- .color85 {
- color: rgba(0, 0, 0, 85%);
- }
- .color45 {
- color: rgba(0, 0, 0, 45%);
- }
- }
- }
- .NNPE-words {
- float: left;
- &-box {
- float: left;
- > span {
- display: block;
- &.NNPE-pinyin {
- height: 20px;
- font-family: 'League';
- font-size: 14px;
- font-weight: normal;
- line-height: 20px;
- &.noFont {
- font-family: initial;
- }
- &.textLeft {
- text-align: left;
- }
- &.wordBlank {
- color: rgba(0, 0, 0, 85%);
- }
- }
- &.NNPE-chs {
- font-family: '楷体';
- font-size: 20px;
- line-height: 28px;
- .active {
- color: #de4444;
- }
- &.wordBlank {
- color: rgba(0, 0, 0, 85%);
- }
- }
- // &.padding {
- // padding-right: 6px;
- // }
- }
- }
- &.textLeft {
- text-align: left;
- }
- &.textCenter {
- text-align: center;
- }
- &.textRight {
- text-align: right;
- }
- > span {
- display: block;
- &.NNPE-pinyin {
- height: 20px;
- font-family: 'League';
- font-size: 14px;
- font-weight: normal;
- line-height: 20px;
- &.noFont {
- font-family: initial;
- }
- &.textLeft {
- text-align: left;
- }
- &.wordBlank {
- color: rgba(0, 0, 0, 85%);
- }
- }
- &.NNPE-chs {
- font-family: '楷体';
- font-size: 20px;
- line-height: 28px;
- .active {
- color: #de4444;
- }
- &.wordBlank {
- color: rgba(0, 0, 0, 85%);
- }
- }
- &.padding {
- padding: 0 3px;
- }
- }
- }
- }
- .Soundrecord-content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 10px 8px 68px;
- &-inner {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- width: 304px;
- padding: 4px 12px;
- background: #fff;
- border: 1px solid rgba(0, 0, 0, 10%);
- border-radius: 8px;
- .luyin-box {
- width: 280px;
- }
- .compare-box {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 32px;
- }
- }
- .full-screen-icon {
- width: 16px;
- height: 16px;
- cursor: pointer;
- background: url('@/assets/full-screen-red.png') no-repeat left top;
- background-size: 100% 100%;
- }
- }
- .voice-full-screen {
- // position: fixed;
- // top: 0;
- // left: 0;
- // z-index: 9999;
- }
- }
- </style>
|