detail.tsx 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. import {
  2. NBreadcrumb,
  3. NBreadcrumbItem,
  4. NButton,
  5. NImage,
  6. NSlider,
  7. NSpace,
  8. NSpin
  9. } from 'naive-ui';
  10. import { computed, defineComponent, onMounted, reactive, watch } from 'vue';
  11. import styles from './detail.module.less';
  12. // import icon_back from '../../xiaoku-music/images/icon_back.png';
  13. import icon_arrow from '../../../xiaoku-music/images/icon_arrow.png';
  14. import icon_play from '../../../xiaoku-music/images/icon_play.png';
  15. import icon_pause from '../../../xiaoku-music/images/icon_pause.png';
  16. import icon_default from '../../../xiaoku-music/images/icon_default.png';
  17. // import icon_separator from '../../xiaoku-music/images/icon_separator.png';
  18. import iconT from '/src/views/content-information/images/icon-t.png';
  19. import iconAddT from '/src/views/content-information/images/icon-add-t.png';
  20. import iconPlusT from '/src/views/content-information/images/icon-plus-t.png';
  21. import { useRoute, useRouter } from 'vue-router';
  22. import PlayLoading from '../../../xiaoku-music/component/play-loading';
  23. import TheNoticeBar from '/src/components/TheNoticeBar';
  24. import TheEmpty from '/src/components/TheEmpty';
  25. import PlayItem from '../../../xiaoku-music/component/play-item';
  26. import { api_knowledgeWiki_detail } from '/src/views/content-information/api';
  27. import { useSpeak } from '/src/views/content-information/useSpeak';
  28. export default defineComponent({
  29. name: 'instrument-detail',
  30. props: {
  31. id: {
  32. type: String,
  33. default: ''
  34. },
  35. type: {
  36. type: String,
  37. default: ''
  38. },
  39. activeStatus: {
  40. type: Boolean,
  41. default: false
  42. },
  43. contentType: {
  44. type: String,
  45. default: ''
  46. }
  47. },
  48. setup(props, { expose }) {
  49. const route = useRoute();
  50. const speakMusicContent =
  51. 'musicContent' + new Date().getTime() + Math.floor(Math.random() * 100);
  52. const selectionCouser =
  53. 'selectionCouser' +
  54. new Date().getTime() +
  55. Math.floor(Math.random() * 100);
  56. const speak = useSpeak(speakMusicContent, selectionCouser);
  57. const forms = reactive({
  58. page: 1,
  59. rows: 20,
  60. status: true,
  61. name: '', // 关键词
  62. type: props.contentType
  63. });
  64. const data = reactive({
  65. loading: false,
  66. finshed: false,
  67. reshing: false,
  68. details: {} as any,
  69. list: [] as any,
  70. listActive: 0,
  71. playState: 'pause' as 'play' | 'pause',
  72. showPlayer: false,
  73. showPreivew: false,
  74. previewUrl: '',
  75. showCloseBtn: true,
  76. fontSize: 18 // 默认18
  77. });
  78. /** 选中的item */
  79. const activeItem = computed(() => {
  80. return data.list[data.listActive] || {};
  81. });
  82. watch(
  83. () => data.playState,
  84. () => {
  85. if (data.playState === 'play') {
  86. speak.onCloseSpeak();
  87. }
  88. }
  89. );
  90. /** 播放曲目 */
  91. const handlePlay = (item: any) => {
  92. const index = data.list.findIndex((_item: any) => _item.id === item.id);
  93. if (index > -1) {
  94. if (data.listActive === index) {
  95. data.playState = data.playState === 'play' ? 'pause' : 'play';
  96. } else {
  97. data.playState = 'play';
  98. }
  99. data.showPlayer = true;
  100. data.listActive = index;
  101. }
  102. };
  103. /** 音频控制 */
  104. const handleChangeAudio = (
  105. type: 'play' | 'pause' | 'pre' | 'next' | 'favitor'
  106. ) => {
  107. if (type === 'play') {
  108. data.playState = 'play';
  109. } else if (type === 'pause') {
  110. data.playState = 'pause';
  111. } else if (type === 'pre') {
  112. if (data.list[data.listActive - 1]) {
  113. handlePlay(data.list[data.listActive - 1]);
  114. }
  115. } else if (type === 'next') {
  116. if (data.list[data.listActive + 1]) {
  117. handlePlay(data.list[data.listActive + 1]);
  118. }
  119. }
  120. };
  121. const getDetail = async () => {
  122. data.loading = true;
  123. let res = {} as any;
  124. try {
  125. res = await api_knowledgeWiki_detail({
  126. id: props.id || route.query.id
  127. });
  128. } catch (error) {
  129. console.log(error);
  130. }
  131. if (data.reshing) {
  132. data.list = [];
  133. data.reshing = false;
  134. }
  135. data.finshed = true;
  136. data.list = res.data.knowledgeWikiResources || [];
  137. data.list.forEach((item: any) => {
  138. item.audioFileUrl = item.url;
  139. item.musicSheetName = item.name;
  140. });
  141. const knowledgeWikiCategories = res.data.knowledgeWikiCategories || [];
  142. res.data.knowledgeName =
  143. knowledgeWikiCategories.length > 0
  144. ? knowledgeWikiCategories[0].knowledgeWikiCategoryTypeName
  145. : '';
  146. res.data.intros = res.data.intros.replace(
  147. /<video/gi,
  148. '<video class="video-music" style="width: 100% !important;" controlslist="nodownload"'
  149. );
  150. // 使用 DOMParser 解析 HTML 字符串
  151. const parser = new DOMParser();
  152. const doc = parser.parseFromString(res.data.intros, 'text/html');
  153. // 提取并分割 HTML 文档中的内容
  154. const result = document.createElement("div")
  155. result.classList.add("html-to-dom")
  156. result.appendChild(speak.processNode(doc.body))
  157. document
  158. .querySelector('#' + speakMusicContent)
  159. ?.appendChild(result);
  160. data.details = res.data;
  161. data.loading = false;
  162. };
  163. const onStopAll = (type: 'play' | 'pause' | 'pre' | 'next' | 'favitor') => {
  164. handleChangeAudio(type);
  165. speak.onCloseSpeak();
  166. try {
  167. // 暂停视频
  168. const doms = document.querySelectorAll('.video-music');
  169. if (doms && doms.length > 0) {
  170. doms.forEach((dom: any) => {
  171. dom.pause();
  172. });
  173. }
  174. } catch {
  175. //
  176. }
  177. };
  178. onMounted(() => {
  179. getDetail();
  180. });
  181. watch(
  182. () => props.activeStatus,
  183. () => {
  184. if (!props.activeStatus) {
  185. onStopAll('pause');
  186. }
  187. }
  188. );
  189. expose({
  190. handleChangeAudio: onStopAll
  191. });
  192. return () => (
  193. <div
  194. class={[
  195. styles.container,
  196. props.type === 'preview' && styles.containerPreview,
  197. props.type === 'modal' && styles.containerModal
  198. ]}>
  199. <div class={[styles.wrap, data.showPlayer ? styles.wrapBottom : '']}>
  200. <div class={styles.content}>
  201. <div class={styles.contentWrap}>
  202. <div class={[styles.musicList, 'musicList-container']}>
  203. <div class={styles.wrapList}>
  204. <div class={styles.instrumentGroup}>
  205. <NImage
  206. class={[
  207. styles.instrumentImg,
  208. forms.type === 'MUSICIAN' && styles.otherImg
  209. ]}
  210. src={data.details?.avatar}
  211. objectFit="cover"
  212. />
  213. <p class={styles.instrumentName}>{data.details.name}</p>
  214. <p class={styles.instrumentTag}>
  215. {data.details.knowledgeName}
  216. </p>
  217. </div>
  218. <div class={styles.titlec}>
  219. <i class={styles.icon2}></i>代表作
  220. </div>
  221. {data.list.map((item: any, index: any) => {
  222. return (
  223. <div class={styles.itemContainer}>
  224. <div
  225. class={[
  226. styles.item
  227. // data.listActive === index && styles.active
  228. ]}
  229. onClick={(e: Event) => {
  230. e.stopPropagation();
  231. handlePlay(item);
  232. }}>
  233. <div class={styles.img}>
  234. <NImage
  235. lazy
  236. objectFit="cover"
  237. previewDisabled={true}
  238. src={item.titleImg || icon_default}
  239. onLoad={e => {
  240. (e.target as any).dataset.loaded = 'true';
  241. }}
  242. />
  243. <PlayLoading
  244. class={[
  245. data.listActive === index &&
  246. data.playState === 'play'
  247. ? ''
  248. : styles.showPlayLoading
  249. ]}
  250. />
  251. </div>
  252. <div class={styles.title}>
  253. <div class={styles.titleName}>
  254. <TheNoticeBar
  255. text={item.name}
  256. style={{ marginRight: '12px' }}
  257. />
  258. </div>
  259. </div>
  260. <NButton
  261. color="#259CFE"
  262. textColor="#fff"
  263. round
  264. class={styles.btn}
  265. type="primary"
  266. onClick={(e: Event) => {
  267. e.stopPropagation();
  268. handlePlay(item);
  269. }}>
  270. 播放
  271. <img
  272. src={
  273. data.listActive === index &&
  274. data.playState === 'play'
  275. ? icon_pause
  276. : icon_play
  277. }
  278. />
  279. </NButton>
  280. <img class={styles.arrow} src={icon_arrow} />
  281. </div>
  282. </div>
  283. );
  284. })}
  285. {!data.finshed && (
  286. <div class={styles.loadingWrap}>
  287. <NSpin show={true}></NSpin>
  288. </div>
  289. )}
  290. {!data.loading && data.list.length === 0 && (
  291. <div class={styles.empty}>
  292. <TheEmpty description="暂无代表作"></TheEmpty>
  293. </div>
  294. )}
  295. </div>
  296. </div>
  297. <div class={styles.musicStaff}>
  298. <div class={styles.musicTitle}>
  299. <div class={styles.musicTitleLeft}>
  300. <i
  301. class={
  302. forms.type === 'MUSICIAN' ? styles.icon3 : styles.icon1
  303. }></i>
  304. {forms.type === 'MUSICIAN' ? '个人简介' : '乐器简介'}
  305. </div>
  306. <div class={styles.musicTitleRight}>
  307. {speak.isSpeak.value ? (
  308. <span
  309. class={styles.textClose}
  310. onClick={speak.onCloseSpeak}>
  311. <i class={styles.icon}></i>关闭朗读
  312. </span>
  313. ) : (
  314. <span
  315. class={styles.textRead}
  316. onClick={() => {
  317. speak.onAllSpeak();
  318. handleChangeAudio('pause');
  319. }}>
  320. <i class={styles.icon}></i>全文朗读
  321. </span>
  322. )}
  323. </div>
  324. </div>
  325. <div
  326. class={styles.musicContent}
  327. id={speakMusicContent}
  328. style={{ fontSize: data.fontSize + 'px' }}>
  329. {/* 选中的内容 */}
  330. <div
  331. id={selectionCouser}
  332. class={[
  333. styles.selectionCouser,
  334. !speak.showDom.value && styles.hide
  335. ]}>
  336. <span
  337. class={styles.textStart}
  338. onClick={() => {
  339. speak.onTextStart();
  340. handleChangeAudio('pause');
  341. }}>
  342. 开始朗读<i class={styles.icon}></i>
  343. </span>
  344. <span
  345. class={styles.textReadOnly}
  346. onClick={() => {
  347. speak.onTextReadOnly();
  348. handleChangeAudio('pause');
  349. }}>
  350. 只读这段<i class={styles.icon}></i>
  351. </span>
  352. </div>
  353. </div>
  354. </div>
  355. <div class={styles.changeSizeSection}>
  356. <img src={iconT} class={styles.iconT} />
  357. <img
  358. src={iconAddT}
  359. class={styles.iconAddT}
  360. onClick={() => {
  361. if (data.fontSize >= 32) return;
  362. data.fontSize += 1;
  363. }}
  364. />
  365. <NSlider
  366. v-model:value={data.fontSize}
  367. vertical
  368. placement="left"
  369. min={12}
  370. max={32}
  371. />
  372. <img
  373. src={iconPlusT}
  374. class={styles.iconPlusT}
  375. onClick={() => {
  376. if (data.fontSize <= 12) return;
  377. data.fontSize -= 1;
  378. }}
  379. />
  380. </div>
  381. </div>
  382. </div>
  383. </div>
  384. {data.list.length !== 0 && (
  385. <PlayItem
  386. type={props.type}
  387. show={data.showPlayer}
  388. playState={data.playState}
  389. item={activeItem.value}
  390. onChange={value => handleChangeAudio(value)}
  391. onShow={(status: boolean) => {
  392. data.showPlayer = status
  393. }}
  394. />
  395. )}
  396. </div>
  397. );
  398. }
  399. });