import { defineComponent, Directive, Ref, ref, Transition, Teleport, nextTick, computed, onMounted } from 'vue' import { Button, Cell, CellGroup, Dialog, Divider, Popover, Slider, Switch } from 'vant' import ButtonIcon from './icon' import runtime, * as RuntimeUtils from '/src/pages/detail/runtime' import Speed from '/src/pages/detail/speed' import detailState from '/src/pages/detail/state' import SettingState from '/src/pages/detail/setting-state' import appState from '/src/state' import FloatWraper from './float-wraper' import Evaluating, { evaluatStopPlay } from './evaluating' import iconTitle from '../popups/evaluating/icons/title.svg' import iconCancel from '../popups/evaluating/icons/cancel.svg' import iconConfirm from '../popups/evaluating/icons/confirm.svg' import { useClientType, useMenu, useOriginSearch, useReload } from '../uses' import { permissionPopup } from '../popups/permission/permission' import { open as openMusicList } from '../music-list' import { postMessage } from '/src/helpers/native-message' import Popups from '../popups' import Setting from '../popups/setting' import evastyles from '../popups/evaluating/index.module.less' import ModelWraper from './model-wraper' import Follow from '../popups/follow' import { switchProps } from '../popups/setting/evaluat' import iconBack from './icons/icon-back.png' import iconFollowEndBtn from '../popups/follow/icons/icon-followEndBtn.png' import iconEvaluatingEnd from './icons/icon-evaluatingEnd.png' import iconCameraOff from './icons/icon-camera-off.png' import iconCameraOn from './icons/icon-camera-on.png' import store from 'store' import styles from './index.module.less' import { sendBackRecordTotalTime } from '../App' import { unitTestData } from '../unitTest' export const confirmShow: Ref = ref(false) /**评测开始按钮状态 */ export const startButtonShow = ref(true) export const evaluatingRef: Ref = ref({}) export const settingPopup: Ref = ref(null) export const suggestPopup: Ref = ref(null) export const followRef = ref(null) let openSuggestPopupFn = () => {} export const openSuggestPopup = () => { openSuggestPopupFn() } /** * 前置验证是否在APP中并且已经付费 * @param cb 回调函数 {status} 验证状态 * @returns */ const beforeCheck = (cb: (status: boolean) => void) => { const search = useOriginSearch() const setting = (search.setting || {}) as any const chargeType = detailState.activeDetail?.paymentType const orderStatus = detailState.activeDetail?.orderStatus const play = detailState.activeDetail?.play const membershipDays = appState.user?.membershipDays || 0 if (useClientType() === 'web' || play || setting.feeType === 'FREE') { return cb(true) } if ( chargeType?.includes('VIP') && chargeType?.includes('CHARGE') && !(membershipDays > 0) && orderStatus !== 'PAID' ) { permissionPopup.active = 'memberAndDemand' permissionPopup.show = true return cb(false) } if (chargeType === 'VIP' && !(membershipDays > 0)) { permissionPopup.active = 'member' permissionPopup.show = true return cb(false) } if (chargeType === 'CHARGE' && orderStatus !== 'PAID') { permissionPopup.active = 'demand' permissionPopup.show = true return cb(false) } cb(true) } const back: () => void = () => { sendBackRecordTotalTime() postMessage({ api: 'back', }) } export type IModelType = 'practice' | 'evaluation' | 'follow' | 'init' export const modelType = ref('init') export const onChangeModelType = (type: IModelType) => { if (type === modelType.value) return if (type === 'evaluation') { RuntimeUtils.changeSpeed(detailState.activeDetail?.originalSpeed, false) // 评测模式 runtime.evaluatingStatus = true } else { const speeds = store.get('speeds') || {} const search = useOriginSearch() const speed = speeds[search.id as any] // 还原速度 if (speed) { RuntimeUtils.changeSpeed(speeds[search.id as any]) } } nextTick(() => { modelType.value = type }) } export default defineComponent({ name: 'Colexiu-Buttons', props: { onSetMusicScoreType: { type: Function, default: (n: any) => {}, }, }, emits: ['setMusicScoreType'], setup(props, { emit }) { const search = useOriginSearch() const speedRef = ref() const [show] = useMenu() const camera = ref(false) //根据路由传参设置模式 const useRouteSetModelType = () => { const modelType: IModelType = search.modelType as IModelType if (modelType && modelType != 'evaluation') { onChangeModelType(modelType) } } onMounted(() => { useRouteSetModelType() }) // 固定调 const musicTypeShow = ref(false) const musicAction = ref('') const onSelect = (action: any) => { musicAction.value = action.text confirmShow.value = true } const hanldeSelect = () => { if (musicAction.value === '五线谱') { // if (SettingState.sett.type == 'staff') return SettingState.sett.type = 'staff' } else if (musicAction.value === '简谱') { // if (SettingState.sett.type === 'jianpu' && !SettingState.sett.keySignature) return SettingState.sett.type = 'jianpu' SettingState.sett.keySignature = false } else if (musicAction.value === '固定调') { // if (SettingState.sett.type === 'jianpu' && SettingState.sett.keySignature) return SettingState.sett.type = 'jianpu' SettingState.sett.keySignature = true } sessionStorage.setItem('notation', SettingState.sett.type) } const musicType = (type: string) => { if (type === 'staff') { return SettingState.sett.type === type } else if (type === 'shoudiao') { return SettingState.sett.type === 'jianpu' && !SettingState.sett.keySignature } else if (type === 'guding') { return SettingState.sett.type === 'jianpu' && SettingState.sett.keySignature } } return () => { const changeModeIsDisabled = (detailState.activeDetail?.isAppPlay ? detailState.activeDetail?.midiUrl === '' : runtime.isFirstPlay || runtime.audiosInstance?.length == 1) || runtime.evaluatingStatus || (detailState.activeDetail?.isAppPlay && detailState.midiPlayIniting) return (
e.stopPropagation()} class={[styles.container, show.value ? '' : styles.outUp]} style={search.headerHeight ? { height: '1rem', paddingTop: '0.25rem' } : ''} >
{search?.modelType && !search.unitId ? null : }
{detailState.activeDetail?.musicSheetName}
{search.albumName &&
{search.albumName}
}
{!startButtonShow.value && ( )} {followRef?.value?.data.start && ( )}
{!search?.modelType && modelType.value !== 'init' && !detailState.frozenMode && ( )} {modelType.value === 'evaluation' && ( <> (
{ if (!startButtonShow.value) e.stopPropagation() }}>
), }} > {
off
} {SettingState.sett.camera && (
{SettingState.sett.opacity}
, }} >
)}
)} {modelType.value === 'practice' && ( <> {/* 如果为单元测试和课后训练 */} {unitTestData.isSelectMeasureMode ? null : ( )} )} {['practice', 'evaluation'].includes(modelType.value) && !search.lessonTrainingId && ( (runtime.speedShow = show)} vSlots={{ reference: () => ( ), }} > (runtime.speed = speed)} changed={RuntimeUtils.changeSpeed} mode={runtime.mode} changeMode={RuntimeUtils.changeMode} lib={{ speed: runtime.speed }} class={styles.speed} /> )} {detailState.activeDetail?.notation ? ( { if ( runtime.playState === 'play' || (runtime.evaluatingStatus && !startButtonShow.value) || followRef.value?.data.start ) { } else { musicTypeShow.value = val } }} > {{ reference: () => ( ), default: () => ( <> ), }} ) : null} {detailState.initRendered && ( <> )}
, footer: () => (
(confirmShow.value = false)} /> { hanldeSelect() useReload() }} />
), }} v-model:show={confirmShow.value} message={'设置成功,是否立即重新加载?'} />
) } }, })