123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- import {
- NBreadcrumb,
- NBreadcrumbItem,
- NButton,
- NImage,
- NSlider,
- NSpace,
- NSpin
- } from 'naive-ui';
- import { computed, defineComponent, onMounted, reactive, watch } from 'vue';
- import styles from './detail.module.less';
- // import icon_back from '../../xiaoku-music/images/icon_back.png';
- import icon_arrow from '../../../xiaoku-music/images/icon_arrow.png';
- import icon_play from '../../../xiaoku-music/images/icon_play.png';
- import icon_pause from '../../../xiaoku-music/images/icon_pause.png';
- import icon_default from '../../../xiaoku-music/images/icon_default.png';
- // import icon_separator from '../../xiaoku-music/images/icon_separator.png';
- import iconT from '/src/views/content-information/images/icon-t.png';
- import iconAddT from '/src/views/content-information/images/icon-add-t.png';
- import iconPlusT from '/src/views/content-information/images/icon-plus-t.png';
- import { useRoute, useRouter } from 'vue-router';
- import PlayLoading from '../../../xiaoku-music/component/play-loading';
- import TheNoticeBar from '/src/components/TheNoticeBar';
- import TheEmpty from '/src/components/TheEmpty';
- import PlayItem from '../../../xiaoku-music/component/play-item';
- import { api_knowledgeWiki_detail } from '/src/views/content-information/api';
- import { useSpeak } from '/src/views/content-information/useSpeak';
- export default defineComponent({
- name: 'instrument-detail',
- props: {
- id: {
- type: String,
- default: ''
- },
- type: {
- type: String,
- default: ''
- },
- activeStatus: {
- type: Boolean,
- default: false
- },
- contentType: {
- type: String,
- default: ''
- }
- },
- setup(props, { expose }) {
- const route = useRoute();
- const speakMusicContent =
- 'musicContent' + new Date().getTime() + Math.floor(Math.random() * 100);
- const selectionCouser =
- 'selectionCouser' +
- new Date().getTime() +
- Math.floor(Math.random() * 100);
- const speak = useSpeak(speakMusicContent, selectionCouser);
- const forms = reactive({
- page: 1,
- rows: 20,
- status: true,
- name: '', // 关键词
- type: props.contentType
- });
- const data = reactive({
- loading: false,
- finshed: false,
- reshing: false,
- details: {} as any,
- list: [] as any,
- listActive: 0,
- playState: 'pause' as 'play' | 'pause',
- showPlayer: false,
- showPreivew: false,
- previewUrl: '',
- showCloseBtn: true,
- fontSize: 18 // 默认18
- });
- /** 选中的item */
- const activeItem = computed(() => {
- return data.list[data.listActive] || {};
- });
- watch(
- () => data.playState,
- () => {
- if (data.playState === 'play') {
- speak.onCloseSpeak();
- }
- }
- );
- /** 播放曲目 */
- const handlePlay = (item: any) => {
- const index = data.list.findIndex((_item: any) => _item.id === item.id);
- if (index > -1) {
- if (data.listActive === index) {
- data.playState = data.playState === 'play' ? 'pause' : 'play';
- } else {
- data.playState = 'play';
- }
- data.showPlayer = true;
- data.listActive = index;
- }
- };
- /** 音频控制 */
- const handleChangeAudio = (
- type: 'play' | 'pause' | 'pre' | 'next' | 'favitor'
- ) => {
- if (type === 'play') {
- data.playState = 'play';
- } else if (type === 'pause') {
- data.playState = 'pause';
- } else if (type === 'pre') {
- if (data.list[data.listActive - 1]) {
- handlePlay(data.list[data.listActive - 1]);
- }
- } else if (type === 'next') {
- if (data.list[data.listActive + 1]) {
- handlePlay(data.list[data.listActive + 1]);
- }
- }
- };
- const getDetail = async () => {
- data.loading = true;
- let res = {} as any;
- try {
- res = await api_knowledgeWiki_detail({
- id: props.id || route.query.id
- });
- } catch (error) {
- console.log(error);
- }
- if (data.reshing) {
- data.list = [];
- data.reshing = false;
- }
- data.finshed = true;
- data.list = res.data.knowledgeWikiResources || [];
- data.list.forEach((item: any) => {
- item.audioFileUrl = item.url;
- item.musicSheetName = item.name;
- });
- const knowledgeWikiCategories = res.data.knowledgeWikiCategories || [];
- res.data.knowledgeName =
- knowledgeWikiCategories.length > 0
- ? knowledgeWikiCategories[0].knowledgeWikiCategoryTypeName
- : '';
- res.data.intros = res.data.intros.replace(
- /<video/gi,
- '<video class="video-music" style="width: 100% !important;" controlslist="nodownload"'
- );
- // 使用 DOMParser 解析 HTML 字符串
- const parser = new DOMParser();
- const doc = parser.parseFromString(res.data.intros, 'text/html');
- // 提取并分割 HTML 文档中的内容
- const result = document.createElement("div")
- result.classList.add("html-to-dom")
- result.appendChild(speak.processNode(doc.body))
- document
- .querySelector('#' + speakMusicContent)
- ?.appendChild(result);
- data.details = res.data;
- data.loading = false;
- };
- const onStopAll = (type: 'play' | 'pause' | 'pre' | 'next' | 'favitor') => {
- handleChangeAudio(type);
- speak.onCloseSpeak();
- try {
- // 暂停视频
- const doms = document.querySelectorAll('.video-music');
- if (doms && doms.length > 0) {
- doms.forEach((dom: any) => {
- dom.pause();
- });
- }
- } catch {
- //
- }
- };
- onMounted(() => {
- getDetail();
- });
- watch(
- () => props.activeStatus,
- () => {
- if (!props.activeStatus) {
- onStopAll('pause');
- }
- }
- );
- expose({
- handleChangeAudio: onStopAll
- });
- return () => (
- <div
- class={[
- styles.container,
- props.type === 'preview' && styles.containerPreview,
- props.type === 'modal' && styles.containerModal
- ]}>
- <div class={[styles.wrap, data.showPlayer ? styles.wrapBottom : '']}>
- <div class={styles.content}>
- <div class={styles.contentWrap}>
- <div class={[styles.musicList, 'musicList-container']}>
- <div class={styles.wrapList}>
- <div class={styles.instrumentGroup}>
- <NImage
- class={[
- styles.instrumentImg,
- forms.type === 'MUSICIAN' && styles.otherImg
- ]}
- src={data.details?.avatar}
- objectFit="cover"
- />
- <p class={styles.instrumentName}>{data.details.name}</p>
- <p class={styles.instrumentTag}>
- {data.details.knowledgeName}
- </p>
- </div>
- <div class={styles.titlec}>
- <i class={styles.icon2}></i>代表作
- </div>
- {data.list.map((item: any, index: any) => {
- return (
- <div class={styles.itemContainer}>
- <div
- class={[
- styles.item
- // data.listActive === index && styles.active
- ]}
- onClick={(e: Event) => {
- e.stopPropagation();
- handlePlay(item);
- }}>
- <div class={styles.img}>
- <NImage
- lazy
- objectFit="cover"
- previewDisabled={true}
- src={item.titleImg || icon_default}
- onLoad={e => {
- (e.target as any).dataset.loaded = 'true';
- }}
- />
- <PlayLoading
- class={[
- data.listActive === index &&
- data.playState === 'play'
- ? ''
- : styles.showPlayLoading
- ]}
- />
- </div>
- <div class={styles.title}>
- <div class={styles.titleName}>
- <TheNoticeBar
- text={item.name}
- style={{ marginRight: '12px' }}
- />
- </div>
- </div>
- <NButton
- color="#259CFE"
- textColor="#fff"
- round
- class={styles.btn}
- type="primary"
- onClick={(e: Event) => {
- e.stopPropagation();
- handlePlay(item);
- }}>
- 播放
- <img
- src={
- data.listActive === index &&
- data.playState === 'play'
- ? icon_pause
- : icon_play
- }
- />
- </NButton>
- <img class={styles.arrow} src={icon_arrow} />
- </div>
- </div>
- );
- })}
- {!data.finshed && (
- <div class={styles.loadingWrap}>
- <NSpin show={true}></NSpin>
- </div>
- )}
- {!data.loading && data.list.length === 0 && (
- <div class={styles.empty}>
- <TheEmpty description="暂无代表作"></TheEmpty>
- </div>
- )}
- </div>
- </div>
- <div class={styles.musicStaff}>
- <div class={styles.musicTitle}>
- <div class={styles.musicTitleLeft}>
- <i
- class={
- forms.type === 'MUSICIAN' ? styles.icon3 : styles.icon1
- }></i>
- {forms.type === 'MUSICIAN' ? '个人简介' : '乐器简介'}
- </div>
- <div class={styles.musicTitleRight}>
- {speak.isSpeak.value ? (
- <span
- class={styles.textClose}
- onClick={speak.onCloseSpeak}>
- <i class={styles.icon}></i>关闭朗读
- </span>
- ) : (
- <span
- class={styles.textRead}
- onClick={() => {
- speak.onAllSpeak();
- handleChangeAudio('pause');
- }}>
- <i class={styles.icon}></i>全文朗读
- </span>
- )}
- </div>
- </div>
- <div
- class={styles.musicContent}
- id={speakMusicContent}
- style={{ fontSize: data.fontSize + 'px' }}>
- {/* 选中的内容 */}
- <div
- id={selectionCouser}
- class={[
- styles.selectionCouser,
- !speak.showDom.value && styles.hide
- ]}>
- <span
- class={styles.textStart}
- onClick={() => {
- speak.onTextStart();
- handleChangeAudio('pause');
- }}>
- 开始朗读<i class={styles.icon}></i>
- </span>
- <span
- class={styles.textReadOnly}
- onClick={() => {
- speak.onTextReadOnly();
- handleChangeAudio('pause');
- }}>
- 只读这段<i class={styles.icon}></i>
- </span>
- </div>
- </div>
- </div>
- <div class={styles.changeSizeSection}>
- <img src={iconT} class={styles.iconT} />
- <img
- src={iconAddT}
- class={styles.iconAddT}
- onClick={() => {
- if (data.fontSize >= 32) return;
- data.fontSize += 1;
- }}
- />
- <NSlider
- v-model:value={data.fontSize}
- vertical
- placement="left"
- min={12}
- max={32}
- />
- <img
- src={iconPlusT}
- class={styles.iconPlusT}
- onClick={() => {
- if (data.fontSize <= 12) return;
- data.fontSize -= 1;
- }}
- />
- </div>
- </div>
- </div>
- </div>
- {data.list.length !== 0 && (
- <PlayItem
- type={props.type}
- show={data.showPlayer}
- playState={data.playState}
- item={activeItem.value}
- onChange={value => handleChangeAudio(value)}
- onShow={(status: boolean) => {
- data.showPlayer = status
- }}
- />
- )}
- </div>
- );
- }
- });
|