123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825 |
- import {
- defineComponent,
- onMounted,
- reactive,
- onUnmounted,
- ref,
- Transition
- } from 'vue';
- import styles from './index.module.less';
- import 'plyr/dist/plyr.css';
- import MusicScore from './component/musicScore';
- import iconMenu from './image/icon-menu.svg';
- import iconUp from './image/icon-up.svg';
- import iconDown from './image/icon-down.svg';
- import iconNote from './image/icon-note.png';
- import iconWhiteboard from './image/icon-whiteboard.png';
- import iconAssignHomework from './image/icon-assignHomework.svg';
- import iconOverPreivew from './image/icon-over-preview.svg';
- import { Vue3Lottie } from 'vue3-lottie';
- import playLoadData from './datas/data.json';
- import VideoPlay from './component/video-play';
- import {
- useMessage,
- NDrawer,
- NDrawerContent,
- NModal,
- NSpace,
- NButton,
- NTooltip
- } from 'naive-ui';
- import CardType from '@/components/card-type';
- import Pen from './component/tools/pen';
- import AudioPay from './component/audio-pay';
- import TrainSettings from './model/train-settings';
- import { useRoute } from 'vue-router';
- import { queryCourseware } from '../prepare-lessons/api';
- export type ToolType = 'init' | 'pen' | 'whiteboard';
- export type ToolItem = {
- type: ToolType;
- name: string;
- icon: string;
- };
- export default defineComponent({
- name: 'CoursewarePlay',
- setup() {
- const message = useMessage();
- const route = useRoute();
- /** 设置播放容器 16:9 */
- const parentContainer = reactive({
- width: '100vw'
- });
- const setContainer = () => {
- const min = Math.min(screen.width, screen.height);
- const max = Math.max(screen.width, screen.height);
- const width = min * (16 / 9);
- if (width > max) {
- parentContainer.width = '100vw';
- return;
- } else {
- parentContainer.width = width + 'px';
- }
- };
- const handleInit = (type = 0) => {
- //设置容器16:9
- setContainer();
- };
- handleInit();
- onUnmounted(() => {
- handleInit(1);
- });
- const data = reactive({
- type: '' as '' | 'preview' | 'class', // 预览类型
- subjectId: '' as any, // 声部编号
- detailId: '' as any, // 编号 - 章节编号
- classGroupId: '' as any, // 上课时需要 班级编号
- // detail: null,
- knowledgePointList: [] as any,
- itemList: [] as any,
- // showHead: true,
- // isCourse: false,
- // isRecordPlay: false,
- videoRefs: {} as any[],
- audioRefs: {} as any[],
- modelAttendStatus: false, // 布置作业提示弹窗
- modelTrainStatus: false, // 训练设置
- homeworkStatus: true // 布置作业完成时
- });
- const activeData = reactive({
- // isAutoPlay: false, // 是否自动播放
- nowTime: 0,
- model: true, // 遮罩
- isAnimation: true, // 是否动画
- // videoBtns: true, // 视频
- // currentTime: 0,
- // duration: 0,
- timer: null as any,
- item: null as any
- });
- const getDetail = async () => {
- try {
- const res = await queryCourseware({
- coursewareDetailKnowledgeId: data.detailId,
- subjectId: data.subjectId,
- pag: 1,
- rows: 99
- });
- const tempRows = res.data.rows || [];
- const temp: any = [];
- tempRows.forEach((row: any) => {
- if (!row.removeFlag) {
- temp.push({
- id: row.id,
- materialId: row.materialId,
- coverImg: row.coverImg,
- type: row.materialType,
- title: row.materialName,
- isCollect: !!row.favoriteFlag,
- isSelected: row.source === 'PLATFORM' ? true : false,
- content: row.content
- });
- }
- });
- data.knowledgePointList = temp;
- data.itemList = data.knowledgePointList.map((m: any) => {
- return {
- ...m,
- iframeRef: null,
- videoEle: null,
- audioEle: null,
- autoPlay: false, //加载完成是否自动播放
- isprepare: false, // 视频是否加载完成
- isRender: false // 是否渲染了
- };
- });
- } catch {
- //
- }
- };
- // ifram事件处理
- const iframeHandle = (ev: MessageEvent) => {
- if (ev.data?.api === 'headerTogge') {
- activeData.model =
- ev.data.show || (ev.data.playState == 'play' ? false : true);
- }
- };
- onMounted(() => {
- const query = route.query;
- data.type = query.type as any;
- data.subjectId = query.subjectId;
- data.detailId = query.detailId;
- data.classGroupId = query.classGroupId;
- window.addEventListener('message', iframeHandle);
- getDetail();
- });
- const popupData = reactive({
- open: false,
- activeIndex: 0,
- toolOpen: false // 工具弹窗控制
- });
- /**停止所有的播放 */
- const handleStop = () => {
- for (let i = 0; i < data.itemList.length; i++) {
- const activeItem = data.itemList[i];
- if (activeItem.type === 'VIDEO' && activeItem.videoEle) {
- activeItem.videoEle.stop();
- }
- if (activeItem.type === 'SONG' && activeItem.audioEle) {
- activeItem.audioEle.stop();
- }
- // console.log('🚀 ~ activeItem:', activeItem)
- // 停止曲谱的播放
- if (activeItem.type === 'MUSIC') {
- activeItem.iframeRef?.contentWindow?.postMessage(
- { api: 'setPlayState' },
- '*'
- );
- }
- }
- };
- // 切换素材
- const toggleMaterial = (itemActive: any) => {
- const index = data.itemList.findIndex((n: any) => n.id == itemActive);
- if (index > -1) {
- handleSwipeChange(index);
- }
- };
- /** 延迟收起模态框 */
- const setModelOpen = () => {
- clearTimeout(activeData.timer);
- message.destroyAll();
- activeData.timer = setTimeout(() => {
- activeData.model = false;
- Object.values(data.videoRefs).map((n: any) =>
- n.toggleHideControl(false)
- );
- Object.values(data.audioRefs).map((n: any) =>
- n.toggleHideControl(false)
- );
- }, 4000);
- };
- /** 立即收起所有的模态框 */
- const clearModel = () => {
- clearTimeout(activeData.timer);
- message.destroyAll();
- activeData.model = false;
- Object.values(data.videoRefs).map((n: any) =>
- n?.toggleHideControl(false)
- );
- Object.values(data.audioRefs).map((n: any) =>
- n?.toggleHideControl(false)
- );
- };
- const toggleModel = (type = true) => {
- activeData.model = type;
- Object.values(data.videoRefs).map((n: any) => n?.toggleHideControl(type));
- Object.values(data.audioRefs).map((n: any) => n?.toggleHideControl(type));
- };
- // 双击
- const handleDbClick = (item: any) => {
- if (item && item.type === 'VIDEO') {
- const videoEle: HTMLVideoElement = item.videoEle;
- if (videoEle) {
- if (videoEle.paused) {
- message.destroyAll();
- videoEle.play();
- } else {
- message.warning('已暂停');
- videoEle.pause();
- }
- }
- }
- };
- // 切换播放
- // const togglePlay = (m: any, isPlay: boolean) => {
- // if (isPlay) {
- // m.videoEle?.play();
- // } else {
- // m.videoEle?.pause();
- // }
- // };
- // const showIndex = ref(-4);
- const effectIndex = ref(3);
- const effects = [
- {
- prev: {
- transform: 'translate3d(0, 0, -800px) rotateX(180deg)'
- },
- next: {
- transform: 'translate3d(0, 0, -800px) rotateX(-180deg)'
- }
- },
- {
- prev: {
- transform: 'translate3d(-100%, 0, -800px)'
- },
- next: {
- transform: 'translate3d(100%, 0, -800px)'
- }
- },
- {
- prev: {
- transform: 'translate3d(-50%, 0, -800px) rotateY(80deg)'
- },
- next: {
- transform: 'translate3d(50%, 0, -800px) rotateY(-80deg)'
- }
- },
- {
- prev: {
- transform: 'translate3d(-100%, 0, -800px) rotateY(-120deg)'
- },
- next: {
- transform: 'translate3d(100%, 0, -800px) rotateY(120deg)'
- }
- },
- // 风车4
- {
- prev: {
- transform: 'translate3d(-50%, 50%, -800px) rotateZ(-14deg)',
- opacity: 0
- },
- next: {
- transform: 'translate3d(50%, 50%, -800px) rotateZ(14deg)',
- opacity: 0
- }
- },
- // 翻页5
- {
- prev: {
- transform: 'translateZ(-800px) rotate3d(0, -1, 0, 90deg)',
- opacity: 0
- },
- next: {
- transform: 'translateZ(-800px) rotate3d(0, 1, 0, 90deg)',
- opacity: 0
- },
- current: { transitionDelay: '700ms' }
- }
- ];
- const acitveTimer = ref();
- // 轮播切换
- const handleSwipeChange = (index: number) => {
- // 如果是当前正在播放 或者是视频最后一个
- if (popupData.activeIndex == index) return;
- handleStop();
- clearTimeout(acitveTimer.value);
- checkedAnimation(popupData.activeIndex, index);
- popupData.activeIndex = index;
- acitveTimer.value = setTimeout(
- () => {
- const item = data.itemList[index];
- if (item) {
- if (item.type == 'MUSIC') {
- activeData.model = true;
- }
- if (item.type === 'SONG') {
- // 自动播放下一个音频
- clearTimeout(activeData.timer);
- message.destroyAll();
- // item.autoPlay = false;
- // nextTick(() => {
- // item.audioEle?.onPlay();
- // });
- }
- if (item.type === 'VIDEO') {
- // 自动播放下一个视频
- clearTimeout(activeData.timer);
- message.destroyAll();
- // item.autoPlay = false;
- // nextTick(() => {
- // item.videoEle?.play();
- // });
- }
- }
- // requestAnimationFrame(() => {
- // const _effectIndex = effectIndex.value + 1;
- // effectIndex.value =
- // _effectIndex >= effects.length - 1 ? 0 : _effectIndex;
- // });
- },
- activeData.isAnimation ? 800 : 0
- );
- };
- /** 是否有转场动画 */
- const checkedAnimation = (index: number, nextIndex?: number) => {
- const item = data.itemList[index];
- const nextItem = data.itemList[nextIndex!];
- if (nextItem) {
- if (nextItem.knowledgePointId != item.knowledgePointId) {
- activeData.isAnimation = true;
- return;
- }
- const videoEle = item.videoEle;
- const nextVideo = nextItem.videoEle;
- if (videoEle && videoEle.duration < 8 && index < nextIndex!) {
- activeData.isAnimation = false;
- } else if (nextVideo && nextVideo.duration < 8 && index > nextIndex!) {
- activeData.isAnimation = false;
- } else {
- activeData.isAnimation = true;
- }
- } else {
- activeData.isAnimation = item?.adviseStudyTimeSecond < 8 ? false : true;
- }
- };
- // 上一个知识点, 下一个知识点
- const handlePreAndNext = (type: string) => {
- if (type === 'up') {
- handleSwipeChange(popupData.activeIndex - 1);
- } else {
- handleSwipeChange(popupData.activeIndex + 1);
- }
- };
- /** 弹窗关闭 */
- const handleClosePopup = () => {
- const item = data.itemList[popupData.activeIndex];
- if (item?.type == 'VIDEO' && !item.videoEle?.paused) {
- setModelOpen();
- }
- if (item?.type == 'SONG' && !item.audioEle?.paused) {
- setModelOpen();
- }
- };
- // 监听页面键盘事件 - 上下切换
- document.body.addEventListener('keyup', (e: KeyboardEvent) => {
- // console.log(e, 'e');
- if (e.code === 'ArrowUp') {
- if (popupData.activeIndex === 0) return;
- handlePreAndNext('up');
- } else if (e.code === 'ArrowDown') {
- if (popupData.activeIndex === data.itemList.length - 1) return;
- handlePreAndNext('down');
- }
- // else if (e.code === 'Space') {
- // handleStop();
- // }
- });
- /** 教学数据 */
- const studyData = reactive({
- type: '' as ToolType,
- penShow: false
- });
- /** 打开教学工具 */
- const openStudyTool = (item: ToolItem) => {
- const activeItem = data.itemList[popupData.activeIndex];
- // 暂停视频和曲谱的播放
- if (activeItem.type === 'VIDEO' && activeItem.videoEle) {
- activeItem.videoEle.pause();
- }
- if (activeItem.type === 'SONG' && activeItem.audioEle) {
- activeItem.audioEle.stop();
- }
- if (activeItem.type === 'MUSIC') {
- activeItem.iframeRef?.contentWindow?.postMessage(
- { api: 'setPlayState' },
- '*'
- );
- }
- clearModel();
- popupData.toolOpen = false;
- studyData.type = item.type;
- switch (item.type) {
- case 'pen':
- studyData.penShow = true;
- break;
- case 'whiteboard':
- studyData.penShow = true;
- }
- };
- /** 关闭教学工具 */
- const closeStudyTool = () => {
- studyData.type = 'init';
- toggleModel();
- };
- return () => (
- <div id="playContent" class={styles.playContent}>
- <div
- onClick={() => {
- clearTimeout(activeData.timer);
- activeData.model = !activeData.model;
- Object.values(data.videoRefs).map((n: any) =>
- n.toggleHideControl(activeData.model)
- );
- Object.values(data.audioRefs).map((n: any) =>
- n.toggleHideControl(activeData.model)
- );
- }}>
- <div
- class={styles.coursewarePlay}
- style={{ width: parentContainer.width }}
- onClick={(e: Event) => {
- e.stopPropagation();
- setModelOpen();
- }}>
- <div class={styles.wraps}>
- {data.itemList.map((m: any, mIndex: number) => {
- const isRender =
- m.isRender || Math.abs(popupData.activeIndex - mIndex) < 2;
- const isEmtry = Math.abs(popupData.activeIndex - mIndex) > 4;
- if (isRender) {
- m.isRender = true;
- }
- return isRender ? (
- <div
- key={'index' + mIndex}
- class={[
- styles.itemDiv,
- popupData.activeIndex === mIndex && styles.itemActive,
- activeData.isAnimation && styles.acitveAnimation,
- Math.abs(popupData.activeIndex - mIndex) < 2
- ? styles.show
- : styles.hide
- ]}
- style={
- mIndex < popupData.activeIndex
- ? effects[effectIndex.value].prev
- : mIndex > popupData.activeIndex
- ? effects[effectIndex.value].next
- : {}
- }
- onClick={(e: Event) => {
- e.stopPropagation();
- clearTimeout(activeData.timer);
- if (Date.now() - activeData.nowTime < 300) {
- handleDbClick(m);
- return;
- }
- activeData.nowTime = Date.now();
- activeData.timer = setTimeout(() => {
- activeData.model = !activeData.model;
- Object.values(data.videoRefs).map((n: any) =>
- n.toggleHideControl(activeData.model)
- );
- Object.values(data.audioRefs).map((n: any) =>
- n.toggleHideControl(activeData.model)
- );
- if (activeData.model) {
- setModelOpen();
- }
- }, 300);
- }}>
- {m.type === 'VIDEO' ? (
- <>
- <VideoPlay
- ref={(v: any) => (data.videoRefs[mIndex] = v)}
- item={m}
- isEmtry={isEmtry}
- onLoadedmetadata={(videoItem: any) => {
- m.videoEle = videoItem;
- m.isprepare = true;
- }}
- onTogglePlay={(paused: boolean) => {
- m.autoPlay = false;
- if (paused || popupData.open) {
- clearTimeout(activeData.timer);
- } else {
- setModelOpen();
- }
- }}
- onEnded={() => {
- const _index = popupData.activeIndex + 1;
- if (_index < data.itemList.length) {
- handleSwipeChange(_index);
- }
- }}
- onReset={() => {
- if (!m.videoEle?.paused) {
- setModelOpen();
- }
- }}
- />
- <Transition name="van-fade">
- {!m.isprepare && (
- <div class={styles.loadWrap}>
- <Vue3Lottie
- animationData={playLoadData}></Vue3Lottie>
- </div>
- )}
- </Transition>
- </>
- ) : m.type === 'IMG' ? (
- <img src={m.content} />
- ) : m.type === 'SONG' ? (
- <AudioPay
- item={m}
- ref={(v: any) => (data.audioRefs[mIndex] = v)}
- onLoadedmetadata={(audioItem: any) => {
- m.audioEle = audioItem;
- m.isprepare = true;
- }}
- onTogglePlay={(paused: boolean) => {
- m.autoPlay = false;
- if (paused || popupData.open) {
- clearTimeout(activeData.timer);
- } else {
- setModelOpen();
- }
- }}
- onEnded={() => {
- const _index = popupData.activeIndex + 1;
- if (_index < data.itemList.length) {
- handleSwipeChange(_index);
- }
- }}
- onReset={() => {
- if (!m.audioEle?.paused) {
- setModelOpen();
- }
- }}
- />
- ) : (
- <MusicScore
- activeModel={activeData.model}
- data-vid={m.id}
- music={m}
- onSetIframe={(el: any) => {
- m.iframeRef = el;
- }}
- />
- )}
- </div>
- ) : null;
- })}
- </div>
- <Transition name="right">
- {activeData.model && (
- <div
- class={styles.rightFixedBtns}
- onClick={(e: Event) => {
- e.stopPropagation();
- clearTimeout(activeData.timer);
- }}>
- <div
- class={[
- styles.fullBtn,
- popupData.activeIndex === 0 ? styles.btnsDisabled : ''
- ]}
- onClick={() => {
- if (popupData.activeIndex === 0) return;
- handlePreAndNext('up');
- }}>
- <img src={iconUp} />
- </div>
- <div
- class={[styles.fullBtn, styles.point]}
- onClick={() => (popupData.open = true)}>
- <img src={iconMenu} />
- </div>
- <div
- class={[
- styles.fullBtn,
- popupData.activeIndex === data.itemList.length - 1
- ? styles.btnsDisabled
- : ''
- ]}
- onClick={() => {
- if (popupData.activeIndex === data.itemList.length - 1)
- return;
- handlePreAndNext('down');
- }}>
- <img src={iconDown} />
- </div>
- </div>
- )}
- </Transition>
- </div>
- </div>
- {/* <div
- style={{ transform: activeData.model ? '' : 'translateY(-100%)' }}
- class={styles.headerContainer}
- ref={headeRef}>
- <div class={styles.backBtn} onClick={() => goback()}>
- <Icon name={iconBack} />
- 返回
- </div>
- <div class={styles.menu}>{popupData.itemName}</div>
- </div> */}
- {/* 布置作业按钮 */}
- <div
- class={[
- styles.assignHomework,
- activeData.model ? '' : styles.sectionAnimateUp
- ]}
- onClick={() => {
- if (data.type === 'preview') {
- window.close();
- } else {
- data.modelAttendStatus = true;
- }
- }}>
- <img
- src={data.type === 'preview' ? iconOverPreivew : iconAssignHomework}
- />
- </div>
- {/* 白板 批注 */}
- <div
- class={[
- styles.switchDisplaySection,
- activeData.model ? '' : styles.sectionAnimate
- ]}>
- <NTooltip trigger="hover">
- {{
- trigger: () => (
- <div
- class={styles.displayBtn}
- onClick={() =>
- openStudyTool({
- type: 'pen',
- icon: iconNote,
- name: '批注'
- })
- }>
- <img src={iconNote} />
- </div>
- ),
- default: () => '批注'
- }}
- </NTooltip>
- <NTooltip trigger="hover">
- {{
- trigger: () => (
- <div
- class={styles.displayBtn}
- onClick={() =>
- openStudyTool({
- type: 'whiteboard',
- icon: iconWhiteboard,
- name: '白板'
- })
- }>
- <img src={iconWhiteboard} />
- </div>
- ),
- default: () => '白板'
- }}
- </NTooltip>
- </div>
- {/* 显示列表 */}
- <NDrawer
- v-model:show={popupData.open}
- class={styles.drawerContainer}
- onAfterLeave={handleClosePopup}
- showMask={false}>
- <NDrawerContent title="资源列表" closable>
- {data.knowledgePointList.map((item: any, index: number) => (
- <CardType
- item={item}
- isActive={popupData.activeIndex === index}
- isCollect={false}
- isShowCollect={false}
- onClick={(item: any) => {
- popupData.open = false;
- toggleMaterial(item.id);
- }}
- />
- ))}
- </NDrawerContent>
- </NDrawer>
- {/* 批注 */}
- {studyData.penShow && (
- <Pen
- show={studyData.type === 'pen' || studyData.type === 'whiteboard'}
- type={studyData.type}
- close={() => closeStudyTool()}
- />
- )}
- {/* 布置作业 */}
- <NModal
- v-model:show={data.modelAttendStatus}
- preset="card"
- class={styles.attendClassModal}
- title={'课后训练'}>
- <div class={styles.modelAttendContent}>
- 本节课已设置课后训练,是否布置?
- </div>
- <NSpace class={styles.modelAttendBtnGroup}>
- <NButton
- type="default"
- round
- onClick={() => {
- data.modelAttendStatus = false;
- window.close();
- }}>
- 暂不布置
- </NButton>
- <NButton
- type="primary"
- round
- onClick={() => {
- data.modelTrainStatus = true;
- data.modelAttendStatus = false;
- }}>
- 布置
- </NButton>
- </NSpace>
- </NModal>
- {/* 训练设置 */}
- <NModal
- v-model:show={data.modelTrainStatus}
- preset="card"
- class={[styles.attendClassModal, styles.trainClassModal]}
- title={'训练设置'}>
- <TrainSettings
- detailId={data.detailId}
- subjectId={data.subjectId}
- classGroupId={data.classGroupId}
- onClose={() => (data.modelTrainStatus = false)}
- onConfirm={() => {
- // 布置完作业之后直接关闭
- setTimeout(() => {
- window.close();
- }, 1000);
- }}
- />
- </NModal>
- {/* <NModal
- v-model:show={data.homeworkStatus}
- preset="card"
- class={[styles.attendClassModal]}
- closable={false}
- maskClosable={false}
- title={' '}>
- <div class={styles.workContainer}>
- <h2>作业布置成功</h2>
- <p>倒</p>
- </div>
- </NModal> */}
- </div>
- );
- }
- });
|