12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043 |
- import { Transition, computed, defineComponent, onMounted, onUnmounted, reactive, ref, watch, toRef, ComputedRef, nextTick, defineAsyncComponent } from "vue";
- import styles from "./index.module.less";
- import iconBack from "./image/icon-back.png";
- import listImg from "./image/list.png";
- import iconMode from "./image/mode.png";
- import { headImg } from "./image";
- import { Badge, Circle, Popover, Popup, showConfirmDialog, showToast, NoticeBar } from "vant";
- import Speed from "./speed";
- import { evaluatingData, handleStartEvaluat } from "/src/view/evaluating";
- import Settting from "./settting";
- import state, { IPlatform, handleChangeSection, handleResetPlay, handleRessetState, togglePlay, IPlayState, refreshMusicSvg, EnumMusicRenderType } from "/src/state";
- import { getAudioCurrentTime } from "/src/view/audio-list";
- import { followData, toggleFollow } from "/src/view/follow-practice";
- import { api_back } from "/src/helpers/communication";
- import MusicType from "./music-type";
- import ModeTypeMode from "../component/mode-type-mode";
- import { getQuery } from "/src/utils/queryString";
- import { storeData } from "/src/store";
- import TeacherTop from "../custom-plugins/guide-page/teacher-top";
- import StudentTop from "../custom-plugins/guide-page/student-top";
- import { HANDLE_WORK_ADD } from "../custom-plugins/work-index";
- import { browser } from "/src/utils";
- import store from "store";
- import "../component/the-modal-tip/index.module.less";
- import { metronomeData } from "../../helpers/metronome";
- import { toggleMusicSheet } from "/src/view/plugins/toggleMusicSheet";
- import useDrag from "/src/view/plugins/useDrag/index";
- import Dragbom from "/src/view/plugins/useDrag/dragbom";
- import { getGuidance, setGuidance } from "../custom-plugins/guide-page/api";
- // import ModeView from "./modeView";
- import { smoothAnimationState } from "../view-detail/smoothAnimation";
- import { isMusicList, musicListShow } from "../component/the-music-list";
- import { EvaluatingDriver, FollowDriver, PractiseDriver } from "../custom-plugins/guide-driver";
- import { fingerRef } from "/src/page-instrument/view-detail/index"
- const ModeView = defineAsyncComponent(() =>
- import('./modeView')
- )
- /** 头部数据和方法 */
- export const headTopData = reactive({
- /** 模式 */
- modeType: "" as "init" | "show",
- /** 显示返回按钮 */
- showBack: true,
- /** 设置弹窗 */
- settingMode: false,
- /** 切换模式 */
- handleChangeModeType(value: "practise" | "follow" | "evaluating") {
- // 后台设置为不能评测
- if (value === "evaluating" && !state.enableEvaluation) return;
- // 打击乐&节奏练习不支持跟练模式
- if (value === "follow" && state.isPercussion) return;
- // 跟练模式,光标只有音符模式,无节拍模式
- if (value === "follow" && metronomeData.cursorMode === 2) {
- metronomeData.cursorMode = 1;
- }
- if (value === "practise") {
- // state.playIngSpeed = state.speed
- }
- if (value === "evaluating") {
- // 如果延迟检测资源还在加载中,给出提示
- if (!evaluatingData.jsonLoadDone) {
- evaluatingData.jsonLoading = true;
- state.audioDone && showToast("资源加载中,请稍后"); //音频资源加载完之后才提示
- return;
- }
- // 如果是pc端, 评测模式暂不可用
- if (state.platform === IPlatform.PC) {
- showConfirmDialog({
- className: "modalTip",
- title: "温馨提示",
- message: "该功能暂未开放,敬请期待!",
- showCancelButton: false,
- });
- return;
- }
- // 评测模式,只有一行谱模式
- // if (!state.isSingleLine) {
- // state.isSingleLine = true;
- // refreshMusicSvg();
- // }
- smoothAnimationState.isShow.value = false; // 隐藏旋律线
- state.playIngSpeed = state.originSpeed;
- handleStartEvaluat();
- // 开发模式,把此处打开
- // state.modeType = "evaluating";
- // evaluatingData.rendered = true;
- // evaluatingData.soundEffectMode = true;
- } else if (value === "follow") {
- // 跟练模式,只有一行谱模式
- if (!state.isSingleLine) {
- state.isSingleLine = true;
- refreshMusicSvg();
- }
- smoothAnimationState.isShow.value = false;
- toggleFollow();
- }
- headTopData.modeType = "show";
- },
- // 改变模式之前的状态
- oldPlayType: "play",
- // 记录切换模式前的状态
- oldModeType: "practise" as "practise" | "follow" | "evaluating",
- });
- export const headData = reactive({
- speedShow: false,
- musicTypeShow: false,
- });
- let resetBtn: ComputedRef<{
- display: boolean;
- disabled: boolean;
- }>;
- // 点击切换的时候才触发提醒
- let isClickMode = false;
- /**
- * 处理模式切换
- * @param oldPlayType 没改变之前的播放模式
- * @param oldPlaySource 没改变之前的播放类型
- * @param isforceReset 是否强制刷新播放状态 模式times时值改变时候也刷新
- */
- export function handlerModeChange(oldPlayType: "play" | "sing", oldPlaySource: IPlayState, isforceReset?: boolean) {
- const isModeChange = modeChangeHandleTimes(oldPlayType, oldPlaySource);
- // 没有切换的时候 不处理下面的
- if (isModeChange) {
- try {
- metronomeData.metro.calculation(state.times);
- } catch (error) {}
- console.log("重新之后的times", state.times, state.fixtime);
- }
- if (isModeChange || isforceReset) {
- // 重置播放状态
- handleRessetState();
- // 隐藏重播按钮
- resetBtn && (resetBtn.value.display = false);
- }
- // 当模式改变的时候 放在这里是因为需要等谱面加载完成之后再提示(点击按钮模式切换才提示)
- if (isClickMode) {
- showToast({
- message: state.playType === "play" ? "已切换为演奏场景" : "已切换为演唱场景",
- position: "top",
- className: "selectionToast",
- });
- isClickMode = false;
- }
- }
- // 模式切换之后重新给times赋值
- function modeChangeHandleTimes(oldPlayType: "play" | "sing", oldPlaySource: IPlayState) {
- const playType = state.playType;
- const playSource = state.playSource;
- const { notBeatFixtime, xmlMp3BeatFixTime, difftime } = state.times[0];
- const { isOpenMetronome, isSingOpenMetronome } = state;
- // 演奏向演唱切
- if (oldPlayType === "play" && playType === "sing") {
- if (playSource === "mingSong") {
- // 唱名文件也要加上弱起时间 他们制作曲子加了弱起时间 注意这修改了之后给总控平台的时值也需要改
- state.fixtime = difftime;
- state.times.map((item) => {
- item.time = item.xmlNoteTime + difftime;
- item.endtime = item.xmlNoteEndTime + difftime;
- item.fixtime = difftime;
- });
- return true;
- } else {
- //演奏开了节拍器,演唱没开节拍器
- if (isOpenMetronome && !isSingOpenMetronome) {
- state.fixtime = notBeatFixtime;
- state.times.map((item) => {
- item.time = item.notBeatTime;
- item.endtime = item.notBeatEndTime;
- item.fixtime = notBeatFixtime;
- });
- return true;
- } else if (!isOpenMetronome && isSingOpenMetronome) {
- state.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- state.times.map((item) => {
- item.time = item.notBeatTime + xmlMp3BeatFixTime;
- item.endtime = item.notBeatEndTime + xmlMp3BeatFixTime;
- item.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- });
- return true;
- }
- }
- } else if (oldPlayType === "sing" && playType === "play") {
- // 演唱向演奏切
- if (oldPlaySource === "mingSong") {
- // 有节拍器
- if (isOpenMetronome) {
- state.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- state.times.map((item) => {
- item.time = item.notBeatTime + xmlMp3BeatFixTime;
- item.endtime = item.notBeatEndTime + xmlMp3BeatFixTime;
- item.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- });
- return true;
- } else {
- state.fixtime = notBeatFixtime;
- state.times.map((item) => {
- item.time = item.notBeatTime;
- item.endtime = item.notBeatEndTime;
- item.fixtime = notBeatFixtime;
- });
- return true;
- }
- }
- // 演奏开了节拍器,演唱没开节拍器
- if (isOpenMetronome && !isSingOpenMetronome) {
- state.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- state.times.map((item) => {
- item.time = item.notBeatTime + xmlMp3BeatFixTime;
- item.endtime = item.notBeatEndTime + xmlMp3BeatFixTime;
- item.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- });
- return true;
- } else if (!isOpenMetronome && isSingOpenMetronome) {
- state.fixtime = notBeatFixtime;
- state.times.map((item) => {
- item.time = item.notBeatTime;
- item.endtime = item.notBeatEndTime;
- item.fixtime = notBeatFixtime;
- });
- return true;
- }
- } else if (oldPlayType === "sing" && playType === "sing") {
- // 演唱之间切换
- // 切到唱名时候
- if (playSource === "mingSong") {
- // 唱名文件也要加上弱起时间 他们制作曲子加了弱起时间 注意这修改了之后给总控平台的时值也需要改
- state.fixtime = difftime;
- state.times.map((item) => {
- item.time = item.xmlNoteTime + difftime;
- item.endtime = item.xmlNoteEndTime + difftime;
- item.fixtime = difftime;
- });
- return true;
- } else if (oldPlaySource === "mingSong") {
- // 有节拍器
- if (isSingOpenMetronome) {
- state.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- state.times.map((item) => {
- item.time = item.notBeatTime + xmlMp3BeatFixTime;
- item.endtime = item.notBeatEndTime + xmlMp3BeatFixTime;
- item.fixtime = notBeatFixtime + xmlMp3BeatFixTime;
- });
- return true;
- } else {
- state.fixtime = notBeatFixtime;
- state.times.map((item) => {
- item.time = item.notBeatTime;
- item.endtime = item.notBeatEndTime;
- item.fixtime = notBeatFixtime;
- });
- return true;
- }
- }
- }
- return false;
- }
- export default defineComponent({
- name: "header-top",
- emits: ["close"],
- setup(props, { emit }) {
- const query = getQuery();
- // 是否显示引导
- const showGuide = ref(false);
- const showStudentGuide = ref(false);
- const showWebGuide = ref(true);
- let displayFingeringCache = false; // 指法缓存
- /** 设置按钮 */
- const settingBtn = computed(() => {
- // 音频播放中 禁用
- if (state.playState === "play") return { display: true, disabled: true };
- // 评测开始 禁用, 跟练开始 禁用
- if (evaluatingData.startBegin || followData.start) return { display: true, disabled: true };
- return {
- display: true,
- disabled: false,
- };
- });
- /** 转谱按钮 */
- const converBtn = computed(() => {
- // 音频播放中 禁用
- if (state.playState === "play") return { display: true, disabled: true };
- // 评测开始 禁用
- if (evaluatingData.startBegin || followData.start) return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 速度按钮 */
- const speedBtn = computed(() => {
- // 选择模式, 跟练模式 不显示
- //if (headTopData.modeType !== "show" || state.modeType === "follow") return { display: false, disabled: true };
- if (state.modeType === "follow") return { display: false, disabled: true };
- // 评测模式, 音频播放中 禁用
- if (state.modeType === "evaluating" || state.playState === "play") return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 节拍器按钮 */
- const metronomeBtn = computed(() => {
- // 选择模式 不显示
- //if (headTopData.modeType !== "show") return { display: false, disabled: true };
- // 音频播放中 禁用
- if (state.playState === "play") return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 指法按钮 */
- const fingeringBtn = computed(() => {
- // 后台设置不显示指法
- if (!state.isShowFingering) return { display: true, disabled: true };
- // 没有指法 选择模式 评测模式 跟练模式 不显示
- //if (headTopData.modeType !== "show" || !state.fingeringInfo.name || ["evaluating", "follow"].includes(state.modeType)) return { display: false, disabled: true };
- if (!state.fingeringInfo.name || ["evaluating", "follow"].includes(state.modeType)) return { display: false, disabled: true };
- // 音频播放中 禁用
- if (state.playState === "play") return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 摄像头按钮 */
- const cameraBtn = computed(() => {
- // 选择模式 不显示
- if (headTopData.modeType !== "show" || state.modeType !== "evaluating") return { display: false, disabled: true };
- // 音频播放中 禁用
- if (state.playState === "play") return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 选段按钮 */
- const selectBtn = computed(() => {
- // 选择模式 不显示
- //if (headTopData.modeType !== "show" || ["follow"].includes(state.modeType)) return { display: false, disabled: true };
- if (["follow"].includes(state.modeType)) return { display: false, disabled: true };
- // 音频播放中 禁用
- if (state.playState === "play" || query.workRecord) return { display: true, disabled: true };
- return {
- disabled: false,
- display: true,
- };
- });
- /** 原声按钮 */
- const originBtn = computed(() => {
- // 没有音源不显示
- if (state.noMusicSource) return { display: false, disabled: false };
- // 选择模式,跟练模式 不显示
- //if (headTopData.modeType !== "show" || state.modeType === "follow") return { display: false, disabled: false };
- if (state.modeType === "follow") return { display: false, disabled: false };
- // 评测开始 禁用
- if (state.modeType === "evaluating") return { display: false, disabled: true };
- if (!state.isAppPlay) {
- if (state.playType === "play") {
- // 原声, 伴奏 少一个,就不能切换
- if (state.music && state.accompany) return { display: true, disabled: false };
- } else {
- // 播放过程中不能切换
- if (state.playState === "play") {
- return { display: true, disabled: true };
- }
- // 范唱
- let index = 0;
- state.fanSong && index++;
- state.banSong && index++;
- state.mingSong && index++;
- if (index > 1) {
- return { display: true, disabled: false };
- }
- }
- }
- return {
- disabled: true,
- display: true,
- };
- });
- /** 播放类型按钮 */
- const playTypeBtn = computed(() => {
- // 选择模式,跟练模式,评测模式 不显示
- //if (headTopData.modeType !== "show" || state.modeType === "follow" || state.modeType === "evaluating" || query.workRecord) return { display: false, disabled: false };
- if (state.modeType === "follow" || state.modeType === "evaluating" || query.workRecord) return { display: false, disabled: false };
- if (!state.isAppPlay) {
- let index = 0;
- state.music && index++;
- state.accompany && index++;
- let songIndex = 0;
- state.fanSong && songIndex++;
- state.banSong && songIndex++;
- state.mingSong && songIndex++;
- // 演唱和演奏 都有数据的时间不禁用
- if (songIndex > 0 && index > 0) {
- // 音频播放中 禁用
- if (state.playState === "play") {
- return { display: true, disabled: true };
- }
- return { display: true, disabled: false };
- }
- }
- return {
- disabled: false,
- display: false,
- };
- });
- /** 模式切换按钮 */
- const toggleBtn = computed(() => {
- // 老师端,打击乐&节奏练习不显示
- if (state.isPercussion && state.platform === IPlatform.PC) return { display: false, disabled: false };
- if(state.isCombineRender) return { display: false, disabled: false };
- // 没有音源不显示
- if (state.noMusicSource) return { display: false, disabled: false };
- // 不是演奏模式 影藏
- if (state.playType !== "play") return { display: false, disabled: false };
- // 选择模式, url设置模式 不显示
- if (headTopData.modeType !== "show" || !headTopData.showBack) return { display: false, disabled: false };
- // 跟练开始, 评测开始 播放开始 隐藏
- if (state.playState == "play" || followData.start || evaluatingData.startBegin) return { display: false, disabled: false };
- return {
- display: true,
- disabled: false,
- };
- });
- /** 播放按钮 */
- const playBtn = computed(() => {
- // 没有音源不显示
- if (state.noMusicSource) return { display: false, disabled: false };
- // 选择模式 不显示
- if (headTopData.modeType !== "show") return { display: false, disabled: false };
- // 评测模式 不显示,跟练模式 不显示
- if (["evaluating", "follow"].includes(state.modeType)) return { display: false, disabled: true };
- // midi音频未初始化完成不可点击
- if (state.isAppPlay && state.midiPlayIniting) return { display: true, disabled: true };
- return {
- display: true,
- disabled: false,
- };
- });
- /** 重播按钮 */
- resetBtn = computed(() => {
- // 没有音源不显示
- if (state.noMusicSource) return { display: false, disabled: false };
- // 选择模式 不显示
- if (headTopData.modeType !== "show") return { display: false, disabled: false };
- // 评测模式 不显示,跟练模式 不显示
- if (["evaluating", "follow"].includes(state.modeType)) return { display: false, disabled: true };
- // 播放状态 不显示
- if (state.playState === "play") return { display: false, disabled: true };
- // 播放进度为0 不显示
- const currentTime = getAudioCurrentTime();
- // midi音频未初始化完成不可点击
- if (state.isAppPlay && state.midiPlayIniting) return { display: false, disabled: true };
- if (!currentTime) return { display: false, disabled: true };
- return {
- display: true,
- disabled: false,
- };
- });
- const isAllBtns = computed(() => {
- const flag = converBtn.value.display && speedBtn.value.display && selectBtn.value.display && originBtn.value.display && toggleBtn.value.display && showGuide.value;
- return flag;
- });
- const isAllBtnsStudent = computed(() => {
- const flag = converBtn.value.display && speedBtn.value.display && selectBtn.value.display && originBtn.value.display && toggleBtn.value.display && showStudentGuide.value;
- return flag;
- });
- const showGuideIndex = computed(() => {
- // 从课堂乐器学生端课件预览默认不显示会员
- if (storeData.user.vipMember || state.paymentType === "FREE" || query.showCourseMember === "true") {
- // 学生端
- return true;
- } else {
- // vip
- return false;
- }
- });
- const browInfo = browser();
- /** 返回 */
- const handleBack = () => {
- HANDLE_WORK_ADD();
- // 不在APP中,
- if (!storeData.isApp) {
- window.parent.postMessage(
- {
- api: "back",
- },
- "*"
- );
- window.close();
- return;
- }
- if ((browInfo.iPhone || browInfo.ios) && query.workRecord) {
- setTimeout(() => {
- api_back();
- }, 550);
- return;
- }
- api_back();
- };
- /** 根据参数设置模式 */
- const getQueryModelSetModelType = () => {
- /** 作业模式 start, 如果为作业模式不处理,让作业模块处理 */
- if (query.workRecord) {
- return;
- }
- /** 作业模式 end */
- if (state.defaultModeType == 1) {
- headTopData.handleChangeModeType("practise");
- // if (state.platform === IPlatform.PC || state.isPreView) {
- // headTopData.showBack = false;
- // }
- if (state.isPreView) {
- headTopData.showBack = false;
- }
- } else {
- if (query.modelType) {
- if (query.modelType === "practise") {
- headTopData.handleChangeModeType("practise");
- } else if (query.modelType === "evaluating") {
- headTopData.handleChangeModeType("evaluating");
- }
- headTopData.showBack = false;
- } else {
- setTimeout(() => {
- headTopData.modeType = "init";
- }, 500);
- }
- }
- };
- /** 课件播放 */
- const changePlay = (res: any) => {
- // console.log('监听上课页面message',res)
- if (res?.data?.api === "setPlayState") {
- togglePlay("paused", true);
- }
- if(res?.data?.api === 'togglePlayState') {
- // if(state.playState === "play") {
- // togglePlay("paused");
- // }
- // if(state.playState === 'paused') {
- // togglePlay("play");
- // }
- console.log('togglePlayState', state.playState)
- togglePlay(state.playState === "play" ? "paused" : "play");
- }
- // 上课页面,按钮方向
- if (res?.data?.api === "imagePos") {
- if (res?.data.data) {
- state.playBtnDirection = res.data.data === "right" ? "right" : "left";
- // if (state.fingeringInfo.direction === "vertical" && state.setting.displayFingering) {
- // state.musicScoreBtnDirection = state.playBtnDirection === 'right' ? 'left' : 'right';
- // } else {
- // state.musicScoreBtnDirection = state.playBtnDirection;
- // }
- state.musicScoreBtnDirection = state.playBtnDirection;
- }
- }
- };
- const parentClassName = "settingBoxClass_drag";
- const userId = storeData.user?.id ? String(storeData.user?.id) : "";
- const positionInfo =
- state.platform !== IPlatform.PC
- ? {
- styleDrag: { value: null },
- }
- : useDrag([`${parentClassName} .top_draging`, `${parentClassName} .bom_drag`], parentClassName, toRef(headTopData, "settingMode"), userId);
- const speedClassName = "speedBoxClass_drag";
- const speedInfo =
- state.platform !== IPlatform.PC
- ? {
- styleDrag: { value: null },
- }
- : useDrag([`${speedClassName} .top_draging`, `${speedClassName} .bom_drag`], speedClassName, toRef(headData, "speedShow"), userId);
- onMounted(() => {
- getQueryModelSetModelType();
- window.addEventListener("message", changePlay);
- if (state.platform === IPlatform.PC) {
- showGuide.value = true;
- } else {
- showStudentGuide.value = true;
- }
- if (query.showWebGuide === "false") {
- showWebGuide.value = false;
- }
- document.addEventListener("keydown", (e: KeyboardEvent) => {
- if (e.code === "Tab") {
- e.stopPropagation();
- e.preventDefault();
- // onStartPlayState();
- togglePlay(state.playState === "play" ? "paused" : "play");
- }
- });
- });
- onUnmounted(() => {
- window.removeEventListener("message", changePlay);
- });
- const noticeBarWidth = ref<number>();
- watch(
- () => smoothAnimationState.isShow.value,
- () => {
- // NoticeBar能不能滚动
- if ((smoothAnimationState.isShow.value || state.isCombineRender) && isMusicList.value) {
- nextTick(() => {
- const widthCon = (document.querySelector("#noticeBarRollDom .van-notice-bar__content") as any)?.offsetWidth || undefined;
- noticeBarWidth.value = widthCon;
- });
- }
- },
- { immediate: true }
- );
- // 设置改变触发
- watch(state.setting, () => {
- console.log(state.setting, "state.setting");
- store.set("musicscoresetting", state.setting);
- });
- // 获取引导页信息
- const getAllGuidance = async () => {
- let guideInfo: any = null;
- try {
- const res = await getGuidance({ guideTag: "guideInfo" });
- if (res.data) {
- guideInfo = JSON.parse(res.data?.guideValue) || null;
- } else {
- guideInfo = {};
- }
- state.guideInfo = guideInfo;
- } catch (e) {
- console.log(e);
- }
- };
- getAllGuidance();
- // 完成拖动弹窗引导页
- const handleGuide = async () => {
- state.guideInfo.teacherDrag = true;
- try {
- const res = await setGuidance({ guideTag: "guideInfo", guideValue: JSON.stringify(state.guideInfo) });
- } catch (e) {
- console.log(e);
- }
- };
- return () => (
- <>
- <div
- class={[styles.headerTop, state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.headerTopRight : ""]}
- onClick={(e: Event) => {
- e.stopPropagation();
- if (state.platform === IPlatform.PC) {
- // 显示隐藏菜单
- window.parent.postMessage(
- {
- api: "onAttendToggleMenu",
- },
- "*"
- );
- }
- }}
- >
- {/* 返回和标题 */}
- {!(state.playState == "play" || followData.start || evaluatingData.startBegin) && (
- <div id="noticeBarRollDom" class={styles.headTopLeftBox}>
- {
- !query.isMove && <img src={iconBack} class={["headTopBackBtn", styles.img, !headTopData.showBack && styles.hidenBack]} onClick={handleBack} />
- }
- {smoothAnimationState.isShow.value || state.isCombineRender ? (
- <div
- style={
- noticeBarWidth.value
- ? {
- "--noticeBarWidth": noticeBarWidth.value + "px",
- }
- : {}
- }
- class={[styles.title, state.isCbsView && styles.blackTitle, "headeTopTitleBtn"]}
- onClick={() => {
- isMusicList.value && (musicListShow.value = true);
- }}
- >
- {isMusicList.value && <div class={[styles.symbolNote, "driver-8"]}></div>}
- <NoticeBar text={state.examSongName} background="none" />
- </div>
- ) : (
- isMusicList.value && (
- <img
- src={listImg}
- class={[styles.img, styles.listImg, "driver-8"]}
- onClick={() => {
- musicListShow.value = true;
- }}
- />
- )
- )}
- </div>
- )}
- {/* 模式切换 */}
- {
- <div
- id={state.platform === IPlatform.PC ? "teacherTop-0" : "studnetT-0"}
- style={{ display: toggleBtn.value.display ? "" : "none" }}
- class={["driver-9", styles.modeChangeBox, toggleBtn.value.disabled && styles.disabled]}
- onClick={() => {
- headTopData.oldModeType = state.modeType;
- handleRessetState();
- headTopData.modeType = "init";
- }}
- >
- <img class={styles.img} src={iconMode} />
- <div class={styles.title}>{state.modeType === "practise" ? "练习模式" : state.modeType === "follow" ? "跟练模式" : state.modeType === "evaluating" ? "评测模式" : ""}</div>
- </div>
- }
- {/* 模式提醒 */}
- {state.modeType === "practise" && (
- <div class={[styles.modeWarn, "practiseModeWarn", state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.modeWarnRight : ""]}>
- <img src={state.playType === "play" ? headImg("perform1.png") : headImg("sing1.png")} />
- <div>{state.playType === "play" ? "演奏场景" : "演唱场景"}</div>
- </div>
- )}
- {/* 功能按钮 */}
- <div
- class={[styles.headRight]}
- onClick={(e: Event) => {
- e.stopPropagation();
- }}
- >
- {/* 一行谱模式,暂不支持节拍指针 */}
- {/* {!state.isSingleLine ? (
- <div
- class={[styles.btn, state.platform === IPlatform.PC ? styles.pcBtn : ""]}
- onClick={() => {
- // 切换光标模式
- let mode = metronomeData.cursorMode;
- if (["follow"].includes(state.modeType)) {
- mode = metronomeData.cursorMode === 1 ? 3 : 1;
- } else {
- mode = metronomeData.cursorMode === 3 ? 1 : metronomeData.cursorMode + 1;
- }
- metronomeData.cursorMode = mode;
- }}
- >
- <img class={styles.iconBtn} src={headImg(metronomeData.cursorMode === 1 ? "cursor-icon-1.svg" : metronomeData.cursorMode === 2 ? "cursor-icon-2.svg" : metronomeData.cursorMode === 3 ? "cursor-icon-3.svg" : "")} />
- <span class={styles.iconContent}>
- {metronomeData.cursorMode === 1 ? "音符指针" : metronomeData.cursorMode === 2 ? "节拍指针" : metronomeData.cursorMode === 3 ? "关闭指针" : ""}
- {metronomeData.cursorTips && (
- <>
- <i class={styles.arrowIcon}></i>
- <div class={[styles["botton-tips"], metronomeData.cursorMode === 3 ? styles.tipSpec : ""]}>{metronomeData.cursorTips}</div>
- </>
- )}
- </span>
- </div>
- ) : null} */}
- <div
- style={{ display: playTypeBtn.value.display ? "" : "none" }}
- class={["driver-2", styles.btn, playTypeBtn.value.disabled && styles.disabled, styles.playType]}
- onClick={() => {
- const oldPlayType = state.playType;
- headTopData.oldPlayType = oldPlayType;
- const oldPlaySource = state.playSource;
- if (state.playType === "play") {
- state.playType = "sing";
- state.playSource = state.fanSong ? "music" : state.banSong ? "background" : "mingSong";
- } else {
- state.playType = "play";
- state.playSource = state.music ? "music" : "background";
- }
- isClickMode = true;
- // 有指法并且显示指法的时候 切换到演唱模式 需要影藏指法
- let isRefresh = false;
- if (state.isShowFingering && state.fingeringInfo.name && (state.setting.displayFingering || displayFingeringCache)) {
- if (state.playType === "sing") {
- state.setting.displayFingering = false;
- displayFingeringCache = true;
- } else {
- state.setting.displayFingering = displayFingeringCache;
- displayFingeringCache = false;
- }
- // 如果是竖屏指法和一行谱的时候 改变指法值的时候state 会调用刷新 refreshMusicSvg 所以下面不调用
- if (state.fingeringInfo.direction === "vertical" && !state.isSingleLine) {
- isRefresh = true;
- }
- }
- // 有歌词的时候,切换播放模式,需要重新渲染谱面 指法不刷新谱面的时候
- if (state.xmlHasLyric && !isRefresh) {
- refreshMusicSvg();
- } else if (!isRefresh) {
- handlerModeChange(oldPlayType, oldPlaySource, true);
- }
- }}
- >
- <img style={{ display: state.playType === "play" ? "" : "none" }} class={styles.iconBtn} src={headImg(`perform.png`)} />
- <img style={{ display: state.playType === "play" ? "none" : "" }} class={styles.iconBtn} src={headImg(`sing.png`)} />
- <span>{state.playType === "play" ? "演奏" : "演唱"}</span>
- </div>
- <div
- id={state.platform === IPlatform.PC ? "teacherTop-1" : "studnetT-1"}
- style={{ display: originBtn.value.display ? "" : "none" }}
- class={["driver-3", styles.btn, originBtn.value.disabled && styles.disabled, state.playType === "play" ? styles.playSource : styles.songSource]}
- onClick={() => {
- const oldPlayType = state.playType;
- const oldPlaySource = state.playSource;
- if (state.playType === "play") {
- state.playSource = state.playSource === "music" ? "background" : "music";
- } else {
- if (state.playSource === "music") {
- state.playSource = state.banSong ? "background" : "mingSong";
- } else if (state.playSource === "background") {
- state.playSource = state.mingSong ? "mingSong" : "music";
- } else {
- state.playSource = state.fanSong ? "music" : "background";
- }
- }
- handlerModeChange(oldPlayType, oldPlaySource);
- showToast({
- message: state.playType === "play" ? (state.playSource === "music" ? "已切换为原声" : "已切换为伴奏") : state.playSource === "music" ? "已切换为范唱" : state.playSource === "background" ? "已切换为伴唱" : "已切换为唱名",
- position: "top",
- className: "selectionToast",
- });
- }}
- >
- <img style={{ display: state.playSource === "music" ? "" : "none" }} class={styles.iconBtn} src={state.playType === "play" ? headImg(`music.png`) : headImg(`music1.png`)} />
- <img style={{ display: state.playSource === "background" ? "" : "none" }} class={styles.iconBtn} src={state.playType === "play" ? headImg(`background.png`) : headImg(`background1.png`)} />
- <img style={{ display: state.playSource === "mingSong" ? "" : "none" }} class={styles.iconBtn} src={headImg(`mingsong.png`)} />
- <span>{state.playSource === "music" ? (state.playType === "play" ? "原声" : "范唱") : state.playSource === "background" ? (state.playType === "play" ? "伴奏" : "伴唱") : "唱名"}</span>
- </div>
- <div
- id={state.platform === IPlatform.PC ? "teacherTop-2" : "studnetT-2"}
- style={{ display: selectBtn.value.display ? "" : "none" }}
- class={["driver-4", styles.btn, selectBtn.value.disabled && styles.disabled, styles.section, state.sectionStatus && styles.isSection]}
- onClick={() => handleChangeSection()}
- >
- <img style={{ display: state.section.length === 0 ? "" : "none" }} class={styles.iconBtn} src={headImg(`section0.png`)} />
- <img style={{ display: state.section.length === 1 ? "" : "none" }} class={styles.iconBtn} src={headImg(`section1.png`)} />
- <img style={{ display: state.section.length === 2 ? "" : "none" }} class={styles.iconBtn} src={headImg(`section2.png`)} />
- <span>选段</span>
- </div>
- {
- <>
- <div
- style={{ display: metronomeBtn.value.display ? "" : "none" }}
- class={["driver-5", styles.btn, styles.metronomeBtn, metronomeBtn.value.disabled && styles.disabled, headData.speedShow && styles.isSpeed, styles.speed]}
- onClick={async () => {
- headData.speedShow = !headData.speedShow;
- }}
- >
- <img style={{ display: metronomeData.disable ? "block" : "none" }} class={styles.iconBtn} src={headImg("tickon.png")} />
- <img style={{ display: !metronomeData.disable ? "block" : "none" }} class={styles.iconBtn} src={headImg("tickoff.png")} />
- <span style={{ whiteSpace: "nowrap" }}>节拍</span>
- <div class={styles.speedCon}>
- <img src={headImg("speed.png")} />
- <div>{Math.floor(state.speed)}</div>
- </div>
- </div>
- {
- <Popup v-model:show={headData.speedShow} class="popup-custom van-scale center-closeBtn speedBoxClass_drag" transition="van-scale" teleport="body" style={speedInfo.styleDrag.value} overlay-style={{ background: "rgba(0, 0, 0, 0.3)" }}>
- <Speed />
- {state.platform === IPlatform.PC && <Dragbom showGuide={!state.guideInfo?.teacherDrag} onGuideDone={handleGuide} />}
- </Popup>
- }
- </>
- }
- {/* {state.enableNotation ? (
- <Popover trigger="manual" v-model:show={headData.musicTypeShow} class={state.platform === IPlatform.PC && styles.pcTransPop} placement={state.platform === IPlatform.PC ? "top-end" : "bottom-end"} overlay={false} offset={state.platform === IPlatform.PC ? [0, 40] : [0, 8]}>
- {{
- reference: () => (
- <div
- id={state.platform === IPlatform.PC ? "teacherTop-5" : "studnetT-5"}
- style={{ display: converBtn.value.display ? "" : "none" }}
- class={[styles.btn, converBtn.value.disabled && styles.disabled]}
- onClick={(e: Event) => {
- e.stopPropagation();
- headData.musicTypeShow = !headData.musicTypeShow;
- }}
- >
- <img class={styles.iconBtn} src={headImg("icon_zhuanpu.svg")} />
- <span>{state.musicRenderType === "staff" ? "转简谱" : "转五线谱"}</span>
- </div>
- ),
- default: () => <MusicType />,
- }}
- </Popover>
- ) : null} */}
- {state.musicRendered && !query.lessonTrainingId && !query.questionId && state.isConcert && (
- <div
- class={[styles.btn, state.playState === "play" && fingeringBtn.value.disabled && styles.disabled, toggleMusicSheet.show && styles.isMusicSheet, styles.musicSheet, "driver-10"]}
- onClick={() => {
- toggleMusicSheet.toggle(true);
- }}
- >
- <img class={styles.iconBtn} src={headImg(`shenggui.png`)} />
- <span>声部</span>
- </div>
- )}
- <div
- id={state.platform === IPlatform.PC ? "teacherTop-6" : "studnetT-6"}
- style={{ display: settingBtn.value.display ? "" : "none" }}
- class={["driver-6", styles.btn, settingBtn.value.disabled && styles.disabled, headTopData.settingMode && styles.isSettingMode, styles.settingMode]}
- onClick={() => (headTopData.settingMode = true)}
- >
- <img class={styles.iconBtn} src={headImg("icon_menu.png")} />
- <span>设置</span>
- </div>
- </div>
- </div>
- {/** 指法点击区域 */}
- {
- state.fingeringInfo.direction === "transverse" && state.setting.displayFingering ?
- <div class={styles.headerMid} onClick={() => {
- fingerRef.value?.doubeClick()
- }}></div> : null
- }
- {/* 播放按钮 */}
- <div
- id="studnetT-7"
- style={{ display: playBtn.value.display ? "" : "none" }}
- class={[
- // 引导使用的类
- "driver-1",
- styles.playBtn,
- playBtn.value.disabled && styles.disabled,
- state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.playLeftButton : state.platform === IPlatform.PC && state.musicScoreBtnDirection === "right" ? styles.playRightButton : "",
- ]}
- onClick={() => {
- // C调能播放唱名,非C调时,只有谱面类型是首调时,才能播放唱名
- if (!state.isCTone && state.playSource === 'mingSong') {
- const notPlayDesc = state.musicRenderType === EnumMusicRenderType.staff ? '该曲目的五线谱目前还不支持播放唱名' : state.musicRenderType === EnumMusicRenderType.fixedTone ? '该曲目的固定调目前还不支持播放唱名' : '';
- if (notPlayDesc) {
- showToast({
- message: notPlayDesc,
- position: "top",
- className: "selectionToast",
- });
- return
- }
- }
- togglePlay(state.playState === "play" ? "paused" : "play")
- }}
- >
- <div class={styles.btnWrap}>
- <img style={{ display: state.playState === "play" ? "none" : "" }} class={styles.iconBtn} src={headImg("icon_play.png")} />
- <img style={{ display: state.playState === "play" ? "" : "none" }} class={styles.iconBtn} src={headImg("icon_pause.png")} />
- <Circle style={{ opacity: state.playState === "play" ? 1 : 0 }} class={styles.progress} stroke-width={60} stroke-linecap={"square"} currentRate={state.playProgress} rate={100} color="#FFED78" layer-color="rgba(0,0,0,0)" />
- </div>
- </div>
- {/* 重播按钮 */}
- <div
- id="tips-step-9"
- style={{ display: resetBtn.value.display ? "" : "none" }}
- class={[styles.resetBtn, resetBtn.value.disabled && styles.disabled, state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.pauseLeftButton : state.platform === IPlatform.PC && state.musicScoreBtnDirection === "right" ? styles.pauseRightButton : ""]}
- onClick={() => handleResetPlay()}
- >
- <img class={styles.iconBtn} src={headImg("icon_reset.png")} />
- </div>
- <Popup v-model:show={headTopData.settingMode} class="popup-custom van-scale center-closeBtn settingBoxClass_drag" transition="van-scale" teleport="body" style={positionInfo.styleDrag.value} overlay-style={{ background: "rgba(0, 0, 0, 0.3)" }}>
- <Settting />
- {state.platform === IPlatform.PC && <Dragbom showGuide={!state.guideInfo?.teacherDrag} onGuideDone={handleGuide} />}
- </Popup>
- {/* 模式切换 */}
- {/* <ModeTypeMode /> */}
- <ModeView></ModeView>
- {/* isAllBtns */}
- {/* {isAllBtns.value && !query.isCbs && showGuideIndex.value && <TeacherTop></TeacherTop>}
- {isAllBtnsStudent.value && !query.isCbs && showGuideIndex.value && <StudentTop></StudentTop>} */}
- {/* 练习模式功能引导 加载音频完成 不是会员 */}
- {state.modeType === "practise" && headTopData.modeType !== "init" && !query.isCbs && state.audioDone && !state.isLoading && !state.isVip && showWebGuide.value && (
- <PractiseDriver
- statusAll={{
- playBtnStatus: playBtn.value.display,
- subjectStatus: state.musicRendered && !query.lessonTrainingId && !query.questionId && state.isConcert,
- modelTypeStatus: toggleBtn.value.display,
- playType: playTypeBtn.value.display,
- originPlayType: state.playType === "play" ? true : false,
- originBtnStatus: originBtn.value.display,
- backTitle: !(state.playState == "play" || followData.start || evaluatingData.startBegin) && isMusicList.value,
- titleType: smoothAnimationState.isShow.value ? "TEXT" : isMusicList.value ? "IMG" : "NONE",
- }}
- />
- )}
- {/* 跟练模式功能引导 加载音频完成 不是会员 */}
- {state.modeType === "follow" && headTopData.modeType !== "init" && !query.isCbs && state.audioDone && !state.isLoading && !state.isVip && showWebGuide.value && (
- <FollowDriver
- statusAll={{
- subjectStatus: state.musicRendered && !query.lessonTrainingId && !query.questionId && state.isConcert,
- }}
- />
- )}
- {/* 评测模式功能引导 加载音频完成 不是会员 */}
- {state.modeType === "evaluating" && headTopData.modeType !== "init" && !evaluatingData.earphoneMode && !query.isCbs && state.audioDone && !state.isLoading && !state.isVip && evaluatingData.websocketState && !evaluatingData.startBegin && evaluatingData.checkEnd && showWebGuide.value && (
- <EvaluatingDriver
- statusAll={{
- subjectStatus: state.musicRendered && !query.lessonTrainingId && !query.questionId && state.isConcert,
- }}
- />
- )}
- </>
- );
- },
- });
|