123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- import {
- closeToast,
- Icon,
- Popup,
- showConfirmDialog,
- showToast,
- Slider,
- Swipe,
- SwipeItem
- } from 'vant'
- import {
- defineComponent,
- onMounted,
- reactive,
- nextTick,
- onUnmounted,
- ref,
- watch,
- Transition,
- computed
- } from 'vue'
- import styles from './index.module.less'
- import 'plyr/dist/plyr.css'
- import request from '@/helpers/request'
- import { state } from '@/state'
- import { useRoute, useRouter } from 'vue-router'
- import iconBack from '../coursewarePlay/image/back.svg'
- import { postMessage, promisefiyPostMessage } from '@/helpers/native-message'
- import iconLoop from '../coursewarePlay/image/icon-loop.svg'
- import iconLoopActive from '../coursewarePlay/image/icon-loop-active.svg'
- import iconplay from '../coursewarePlay/image/icon-play.svg'
- import iconpause from '../coursewarePlay/image/icon-pause.svg'
- import iconVideobg from '../coursewarePlay/image/icon-videobg.png'
- import { browser, getSecondRPM } from '@/helpers/utils'
- const materialType = {
- 视频: 'VIDEO',
- 图片: 'IMG',
- 曲目: 'SONG'
- }
- export default defineComponent({
- name: 'exercise-after-class',
- setup() {
- const handleInit = (type = 0) => {
- // 横屏
- postMessage({
- api: 'setRequestedOrientation',
- content: {
- orientation: type
- }
- })
- // 头,包括返回箭头
- postMessage({
- api: 'setTitleBarVisibility',
- content: {
- status: type
- }
- })
- // 安卓的状态栏
- postMessage({
- api: 'setStatusBarVisibility',
- content: {
- isVisibility: type
- }
- })
- }
- handleInit()
- onUnmounted(() => {
- handleInit(1)
- })
- const route = useRoute()
- const router = useRouter()
- const query = route.query
- const browserInfo = browser()
- const headeRef = ref()
- const data = reactive({
- videoData: null as any,
- details: [] as any,
- trainingTimes: 0,
- itemList: [] as any,
- showHead: true,
- loading: true,
- recordLoading: false
- })
- const activeData = reactive({
- nowTime: 0,
- model: true, // 遮罩
- timer: null as any,
- item: null as any
- })
- // 获取缓存路径
- const getCacheFilePath = async (material: any) => {
- const res = await promisefiyPostMessage({
- api: 'getCourseFilePath',
- content: {
- url: material.content,
- localPath: '',
- materialId: material.id,
- updateTime: material.updateTime,
- type: material.type
- }
- })
- return res
- }
- const getDetail = async () => {
- let details = []
- try {
- const res: any = await request.get(
- state.platformApi + `/lessonTraining/courseSchedule/${route.query.courseScheduleId}`
- )
- if (Array.isArray(res?.data)) {
- const studentLevel = state.user?.data?.studentLevel || 1
- details = res.data.find((n: any) => n.studentLevel === studentLevel)?.details || []
- }
- } catch (error) {
- console.log('error')
- }
- if (details.length) {
- data.details = details
- const videoData: any =
- details.find((n: any) => n.materialId == route.query.materialId) || {}
- try {
- videoData.training = JSON.parse(videoData?.lessonTrainingTemp?.trainingConfigJson)
- } catch (error) {}
- //请求本地缓存
- if (browserInfo.isApp && ['VIDEO'].includes(videoData.type)) {
- const localData = await getCacheFilePath(videoData)
- if (localData?.content?.localPath) {
- videoData.url = videoData.content
- videoData.content = localData.content.localPath
- }
- }
- data.itemList.push({
- ...videoData,
- id: videoData.materialId,
- currentTime: 0,
- duration: 100,
- paused: true,
- loop: false,
- videoEle: null,
- timer: null,
- playModel: true
- })
- popupData.itemActive = videoData.id
- popupData.tabName = videoData.materialName
- data.videoData = videoData
- handleExerciseCompleted()
- }
- }
- const getTrainingTimes = (res: any) => {
- let trainingTimes = 0
- if (Array.isArray(res?.trainings)) {
- const train = res.trainings.find((n: any) => n.materialId === query.materialId)
- if (train) {
- trainingTimes = train.trainingTimes
- }
- }
- data.trainingTimes = trainingTimes
- }
- // 获取课后练习记录
- const trainingRecord = async () => {
- try {
- const res: any = await request.post(
- state.platformApi +
- `/studentLessonTraining/trainingRecord/${query.courseScheduleId}?userId=${state.user?.data?.id}`
- )
- if (res?.data) {
- getTrainingTimes(res.data)
- handleExerciseCompleted()
- }
- } catch (error) {}
- }
- onMounted(() => {
- getDetail()
- trainingRecord()
- })
- // 返回
- const goback = () => {
- postMessage({ api: 'back' })
- }
- const swipeRef = ref()
- const popupData = reactive({
- firstIndex: 0,
- open: false,
- activeIndex: -1,
- tabActive: '',
- tabName: '',
- itemActive: '',
- itemName: ''
- })
- // 双击
- const handleDbClick = (item: any) => {
- if (item && item.type === 'VIDEO') {
- const videoEle: HTMLVideoElement = document.querySelector(`[data-vid='${item.id}']`)!
- if (videoEle) {
- if (videoEle.paused) {
- closeToast()
- videoEle.play()
- } else {
- showToast('已暂停')
- videoEle.pause()
- }
- }
- item.timer = setTimeout(() => {
- activeData.model = false
- }, 3000)
- }
- }
- // 达到指标,记录
- const addTrainingRecord = async (m: any) => {
- data.recordLoading = true
- const body = {
- materialType: 'VIDEO',
- record: {
- sourceTime: m.duration,
- clientType: state.platformType,
- feature: 'LESSON_TRAINING',
- deviceType: browserInfo.android ? 'ANDROID' : browserInfo.isApp ? 'IOS' : 'WEB'
- },
- courseScheduleId: query.courseScheduleId,
- lessonTrainingId: query.lessonTrainingId,
- materialId: query.materialId
- }
- try {
- const res: any = await request.post(
- state.platformApi + '/studentLessonTraining/lessonTrainingRecord',
- {
- data: body
- }
- )
- trainingRecord()
- } catch (error) {}
- setTimeout(() => {
- data.recordLoading = false
- }, 2000)
- }
- // 停止所有的播放
- const handleStopVideo = () => {
- data.itemList.forEach((m: any) => {
- m.videoEle?.pause()
- })
- }
- // 判断练习是否完成
- const handleExerciseCompleted = () => {
- if (
- data.trainingTimes != 0 &&
- data.trainingTimes == (data.videoData as any)?.training?.practiceTimes
- ) {
- handleStopVideo()
- const itemIndex = data.details.findIndex(
- (n: any) => n.materialId == data.videoData?.materialId
- )
- const isLastIndex = itemIndex === data.details.length - 1
- showConfirmDialog({
- title: '课后训练',
- message: '你已完成该练习~',
- confirmButtonColor: 'var(--van-primary)',
- confirmButtonText: isLastIndex ? '完成' : '下一题',
- cancelButtonText: '继续'
- }).then(() => {
- if (!isLastIndex) {
- const nextItem = data.details[itemIndex + 1]
- if (nextItem?.type === materialType.视频) {
- // console.log('下一题视频', nextItem)
- router.replace({
- path: '/exerciseAfterClass',
- query: {
- ...query,
- materialId: nextItem.materialId
- }
- })
- }
- if (nextItem?.type === materialType.曲目) {
- goback()
- let src = `${location.origin}/orchestra-music-score/?id=${nextItem.content}`
- postMessage({
- api: 'openAccompanyWebView',
- content: {
- url: src,
- orientation: 0,
- isHideTitle: true,
- statusBarTextColor: false,
- isOpenLight: true
- }
- })
- }
- }
- })
- }
- }
- return () => (
- <div class={styles.coursewarePlay}>
- <Swipe
- style={{ height: '100vh' }}
- ref={swipeRef}
- showIndicators={false}
- loop={false}
- vertical
- lazyRender={true}
- >
- {data.itemList.map((m: any, mIndex: number) => {
- return (
- <SwipeItem>
- <>
- <div
- class={styles.itemDiv}
- onClick={() => {
- clearTimeout(activeData.timer)
- clearTimeout(m.timer)
- if (Date.now() - activeData.nowTime < 300) {
- handleDbClick(m)
- return
- }
- activeData.nowTime = Date.now()
- activeData.timer = setTimeout(() => {
- activeData.model = !activeData.model
- }, 300)
- }}
- >
- <video
- playsinline="false"
- preload="auto"
- class="player"
- poster={iconVideobg}
- data-vid={m.id}
- src={m.content}
- loop={m.loop}
- onLoadedmetadata={(e: Event) => {
- const videoEle = e.target as unknown as HTMLVideoElement
- m.currentTime = videoEle.currentTime
- m.duration = videoEle.duration
- m.videoEle = videoEle
- }}
- onTimeupdate={(e: Event) => {
- const videoEle = e.target as unknown as HTMLVideoElement
- m.currentTime = videoEle.currentTime
- if (m.duration - m.currentTime < 1) {
- if (data.recordLoading) return
- console.log('完成观看次数')
- addTrainingRecord(m)
- }
- }}
- onPlay={() => {
- // 播放
- m.paused = false
- }}
- onPause={() => {
- //暂停
- clearTimeout(m.timer)
- m.paused = true
- }}
- >
- <source src={m.content} type="video/mp4" />
- </video>
- <Transition name="bottom">
- {activeData.model && (
- <div class={styles.bottomFixedContainer}>
- <div class={styles.time}>
- <span>{getSecondRPM(m.currentTime)}</span>
- <span>{getSecondRPM(m.duration)}</span>
- </div>
- <div class={styles.slider}>
- <Slider
- buttonSize={16}
- step={0.01}
- modelValue={m.currentTime}
- min={0}
- max={m.duration}
- />
- </div>
- <div class={styles.actions}>
- <div>
- {m.paused ? (
- <Icon
- name={iconplay}
- onClick={(e: Event) => {
- e.stopPropagation()
- clearTimeout(m.timer)
- closeToast()
- m.videoEle?.play()
- m.paused = false
- m.timer = setTimeout(() => {
- activeData.model = false
- }, 3000)
- }}
- />
- ) : (
- <Icon
- name={iconpause}
- onClick={(e: Event) => {
- e.stopPropagation()
- console.log('点击暂停')
- m.videoEle?.pause()
- m.paused = true
- }}
- />
- )}
- {m.loop ? (
- <Icon
- name={iconLoopActive}
- onClick={(e: Event) => {
- e.stopPropagation()
- m.loop = false
- }}
- />
- ) : (
- <Icon
- name={iconLoop}
- onClick={(e: Event) => {
- e.stopPropagation()
- m.loop = true
- }}
- />
- )}
- </div>
- <div>{m.name}</div>
- </div>
- </div>
- )}
- </Transition>
- </div>
- </>
- </SwipeItem>
- )
- })}
- </Swipe>
- <Transition name="top">
- {activeData.model && (
- <div class={styles.headerContainer} ref={headeRef}>
- <div class={styles.backBtn} onClick={() => goback()}>
- <Icon name={iconBack} />
- 返回
- </div>
- <div class={styles.menu}>{popupData.tabName}</div>
- <div class={styles.nums}>
- 练习次数:{data.trainingTimes}/
- {(data.videoData as any)?.training?.practiceTimes || 0}
- </div>
- </div>
- )}
- </Transition>
- </div>
- )
- }
- })
|