| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398 |
- import type {SelectOption} from 'naive-ui'
- import {
- NAlert,
- NButton,
- NCascader,
- NCheckbox,
- NCheckboxGroup,
- NForm,
- NFormItemGi,
- NGi,
- NGrid,
- NInput,
- NInputNumber,
- NModal,
- NRadio,
- NRadioGroup,
- NSelect,
- NSpace,
- useDialog,
- useMessage
- } from 'naive-ui'
- import {defineComponent, onMounted, PropType, reactive, ref} from 'vue'
- import {musicSheetCategoriesQueryTree, musicSheetDetail, musicSheetSave} from '../../api'
- import UploadFile from '@/components/upload-file'
- import styles from './index.module.less'
- import deepClone from '@/utils/deep.clone'
- import axios from 'axios'
- import {appKey, clientType, musicSheetSourceType, musicSheetType} from "@/utils/constant";
- import {getMapValueByKey, getSelectDataFromObj} from "@/utils/objectUtil";
- import {musicalInstrumentPage} from "@views/system-manage/subject-manage/api";
- import {subjectPage} from "@views/system-manage/api";
- import MusicSheetOwnerDialog from "@views/music-library/music-sheet/modal/musicSheetOwnerDialog";
- import {sysApplicationPage} from "@views/menu-manage/api";
- import {filterPointCategory} from "@views/teaching-manage/unit-test";
- /**
- * 获取指定元素下一个Note元素
- * @param ele 指定元素
- * @param selectors 选择器
- */
- const getNextNote = (ele: any, selectors: any) => {
- let index = 0
- const parentEle = ele.closest(selectors)
- let pointer = parentEle
- const measure = parentEle?.closest('measure')
- let siblingNote = null
- // 查找到相邻的第一个note元素
- while (!siblingNote && index < (measure?.childNodes.length || 50)) {
- index++
- if (pointer?.nextElementSibling?.tagName === 'note') {
- siblingNote = pointer?.nextElementSibling
- }
- pointer = pointer?.nextElementSibling
- }
- return siblingNote
- }
- export const onlyVisible = (xml: any, partIndex: any) => {
- if (!xml) return ''
- const xmlParse = new DOMParser().parseFromString(xml, 'text/xml')
- const partList =
- xmlParse.getElementsByTagName('part-list')?.[0]?.getElementsByTagName('score-part') || []
- const parts = xmlParse.getElementsByTagName('part')
- const visiblePartInfo = partList[partIndex]
- if (visiblePartInfo) {
- const id = visiblePartInfo.getAttribute('id')
- Array.from(parts).forEach((part) => {
- if (part && part.getAttribute('id') !== id) {
- part.parentNode?.removeChild(part)
- // 不等于第一行才添加避免重复添加
- }
- // 最后一个小节的结束线元素不在最后 调整
- if (part && part.getAttribute('id') === id) {
- const barlines = part.getElementsByTagName('barline')
- const lastParent = barlines[barlines.length - 1]?.parentElement
- if (lastParent?.lastElementChild?.tagName !== 'barline') {
- const children: any[] = (lastParent?.children as any) || []
- for (let el of children) {
- if (el.tagName === 'barline') {
- // 将结束线元素放到最后
- lastParent?.appendChild(el)
- break
- }
- }
- }
- }
- })
- Array.from(partList).forEach((part) => {
- if (part && part.getAttribute('id') !== id) {
- part.parentNode?.removeChild(part)
- }
- })
- // 处理装饰音问题
- const notes = xmlParse.getElementsByTagName('note')
- const getNextvNoteDuration = (i: any) => {
- let nextNote = notes[i + 1]
- // 可能存在多个装饰音问题,取下一个非装饰音时值
- for (let index = i; index < notes.length; index++) {
- const note = notes[index]
- if (!note.getElementsByTagName('grace')?.length) {
- nextNote = note
- break
- }
- }
- return nextNote?.getElementsByTagName('duration')[0]
- }
- Array.from(notes).forEach((note, i) => {
- const graces = note.getElementsByTagName('grace')
- if (graces && graces.length) {
- note.appendChild(getNextvNoteDuration(i)?.cloneNode(true))
- }
- })
- }
- return new XMLSerializer().serializeToString(xmlParse)
- }
- const speedInfo = {
- 'rall.': 1.333333333,
- 'poco rit.': 1.333333333,
- 'rit.': 1.333333333,
- 'molto rit.': 1.333333333,
- 'molto rall': 1.333333333,
- molto: 1.333333333,
- lentando: 1.333333333,
- allargando: 1.333333333,
- morendo: 1.333333333,
- 'accel.': 0.8,
- calando: 2,
- 'poco accel.': 0.8,
- 'gradually slowing': 1.333333333,
- slowing: 1.333333333,
- slow: 1.333333333,
- slowly: 1.333333333,
- faster: 1.333333333
- }
- /**
- * 按照xml进行减慢速度的计算
- * @param xml 始终按照第一分谱进行减慢速度的计算
- */
- export function getGradualLengthByXml(xml: string) {
- const firstPartXml = onlyVisible(xml, 0)
- const xmlParse = new DOMParser().parseFromString(firstPartXml, 'text/xml')
- const measures = Array.from(xmlParse.querySelectorAll('measure'))
- const notes = Array.from(xmlParse.querySelectorAll('note'))
- const words = Array.from(xmlParse.querySelectorAll('words'))
- const metronomes = Array.from(xmlParse.querySelectorAll('metronome'))
- const eles = []
- for (const ele of [...words, ...metronomes]) {
- const note = getNextNote(ele, 'direction')
- // console.log(ele, note)
- if (note) {
- const measure = note?.closest('measure')
- const measureNotes = Array.from(measure.querySelectorAll('note'))
- const noteInMeasureIndex = Array.from(measure.childNodes)
- .filter((item: any) => item.nodeName === 'note')
- .findIndex((item) => item === note)
- let allDuration = 0
- let leftDuration = 0
- for (let i = 0; i < measureNotes.length; i++) {
- const n: any = measureNotes[i]
- const duration = +(n.querySelector('duration')?.textContent || '0')
- allDuration += duration
- if (i < noteInMeasureIndex) {
- leftDuration = allDuration
- }
- }
- eles.push({
- ele,
- index: notes.indexOf(note),
- noteInMeasureIndex,
- textContent: ele.textContent,
- measureIndex: measures.indexOf(measure), //,measure?.getAttribute('number')
- type: ele.tagName,
- allDuration,
- leftDuration
- })
- }
- }
- // 结尾处手动插入一个音符节点
- eles.push({
- ele: notes[notes.length - 1],
- index: notes.length,
- noteInMeasureIndex: 0,
- textContent: '',
- type: 'metronome',
- allDuration: 1,
- leftDuration: 1,
- measureIndex: measures.length
- })
- const gradualNotes: any[] = []
- eles.sort((a, b) => a.index - b.index)
- const keys = Object.keys(speedInfo).map((w) => w.toLocaleLowerCase())
- let isLastNoteAndNotClosed = false
- for (const ele of eles) {
- const textContent: any = ele.textContent?.toLocaleLowerCase().trim()
- if (ele === eles[eles.length - 1]) {
- if (gradualNotes[gradualNotes.length - 1]?.length === 1) {
- isLastNoteAndNotClosed = true
- }
- }
- const isKeyWork = keys.find((k) => {
- const ks = k.split(' ')
- return textContent && ks.includes(textContent)
- })
- if (
- ele.type === 'metronome' ||
- (ele.type === 'words' && (textContent.startsWith('a tempo') || isKeyWork)) ||
- isLastNoteAndNotClosed
- ) {
- const indexOf = gradualNotes.findIndex((item) => item.length === 1)
- if (indexOf > -1 && ele.index > gradualNotes[indexOf]?.[0].start) {
- gradualNotes[indexOf][1] = {
- start: ele.index,
- measureIndex: ele.measureIndex,
- noteInMeasureIndex: ele.noteInMeasureIndex,
- allDuration: ele.allDuration,
- leftDuration: ele.leftDuration,
- type: textContent
- }
- }
- }
- if (ele.type === 'words' && isKeyWork) {
- gradualNotes.push([
- {
- start: ele.index,
- measureIndex: ele.measureIndex,
- noteInMeasureIndex: ele.noteInMeasureIndex,
- allDuration: ele.allDuration,
- leftDuration: ele.leftDuration,
- type: textContent
- }
- ])
- }
- }
- return gradualNotes
- }
- export default defineComponent({
- name: 'music-operation',
- props: {
- type: {
- type: String,
- default: 'add'
- },
- data: {
- type: Object as PropType<any>,
- default: () => {
- }
- },
- tagList: {
- type: Array as PropType<Array<SelectOption>>,
- default: () => []
- },
- subjectList: {
- type: Array as PropType<Array<SelectOption>>,
- default: () => []
- },
- // musicSheetCategories: {
- // type: Array as PropType<Array<SelectOption>>,
- // default: () => []
- // }
- },
- emits: ['close', 'getList'],
- setup(props, {slots, attrs, emit}) {
- const forms = reactive({
- graduals: {} as any, // 渐变速度
- playMode: 'MP3', // 播放类型
- xmlFileUrl: null, // XML
- midiUrl: null, // mid
- name: null, // 曲目名称
- // musicTag: [] as any, // 曲目标签
- composer: null, // 音乐人
- playSpeed: null as any, // 曲谱速度
- // showFingering: null as any, // 是否显示指法
- // canEvaluate: null as any, // 是否评测
- // notation: null as any, // 能否转和简谱
- // auditVersion: null as any, // 审核版本
- // sortNumber: null, // 排序
- musicCover: null, // 曲谱封面
- remark: null, // 曲谱描述
- musicSheetSoundList: [] as any, // 原音
- // musicSheetCategoriesId: null,
- status: false,
- musicSheetType: 'SINGLE', // 曲目类型
- sourceType: null as any, //来源类型/作者属性(PLATFORM: 平台; ORG: 机构; PERSON: 个人)
- // userId: null, // 所属人
- appAuditFlag: 0, // 是否审核版本
- midiFileUrl: null, // 伴奏文件 MIDI文件(保留字段)
- subjectIds: [] as any, // 可用声部
- musicalInstrumentIdList: [] as any, //可用乐器
- musicCategoryId: null, //曲目分类
- musicSheetAccompanimentList: [] as any, //曲目伴奏
- audioType: 'HOMEMODE', // 伴奏类型
- isPlayBeat: true, // 是否播放节拍器
- isUseSystemBeat: true, // 是否使用系统节拍器(0:否;1:是)
- repeatedBeats: false, // 是否重复节拍时长
- evaluationStandard: 'FREQUENCY', // 评分标准 节奏 AMPLITUDE 音准 FREQUENCY 分贝 DECIBELS
- multiTracksSelection: [] as any, // 声轨
- musicSheetExtend: {} as any,//所属人信息
- })
- const state = reactive({
- loading: false,
- previewMode: false,//是否是预览模式
- tagList: [...props.tagList] as any, // 标签列表
- xmlFirstSpeed: null as any, // 第一个音轨速度
- partListNames: [] as any, // 所有音轨声部列表
- musicSheetCategories: [] as any,
- musicSheetAccompanimentUrls: '' as any,
- musicSheetAccompanimentUrlList: [] as any,
- instrumentData: [],
- instrumentList: [],
- subjectList: [] as any,
- showMusicSheetOwnerDialog: false, //所属人弹框
- // musicSheetOwnerData: {}, //所属人信息
- multiTracks: null,
- appData: [],// 应用列表
- ownerName: null as any,// 所属人名称描述
- })
- const gradualData = reactive({
- list: [] as any[],
- gradualRefs: [] as any[]
- })
- const btnLoading = ref(false)
- const formsRef = ref()
- const message = useMessage()
- const dialog = useDialog()
- // 提交记录
- const onSubmit = async () => {
- formsRef.value.validate(async (error: any) => {
- if (error) {
- return
- }
- try {
- //extConfigJson: {"repeatedBeats":0,"gradualTimes":{"75":"02:38:60","77":"02:43:39"}}
- const obj = {
- ...forms,
- musicTag: '-1',
- multiTracksSelection: forms.multiTracksSelection.join(','),
- musicSheetSoundList: forms.musicSheetSoundList.filter((next: any) => {
- return !!next.audioFileUrl && forms.multiTracksSelection.includes(next.track);
- }),
- musicalInstrumentIds: forms.musicalInstrumentIdList.join(','),
- extConfigJson: JSON.stringify({repeatedBeats: forms.repeatedBeats ? 1 : 0, gradualTimes: forms.graduals}),
- subjectIds: forms.subjectIds.join(',')
- }
- if (forms.audioType == 'MIDI') {
- obj.musicSheetSoundList = []
- }
- btnLoading.value = true
- if (props.type === 'add') {
- await musicSheetSave(obj)
- message.success('添加成功')
- } else if (props.type === 'edit') {
- await musicSheetSave({...obj, id: props.data.id})
- message.success('修改成功')
- }
- emit('getList')
- emit('close')
- } catch (e) {
- console.log(e)
- }
- setTimeout(() => {
- btnLoading.value = false
- }, 100)
- })
- }
- // 上传XML,初始化音轨 音轨速度 乐器、声部
- const readFileInputEventAsArrayBuffer = (file: any) => {
- const xmlRead = new FileReader()
- xmlRead.onload = (res) => {
- try {
- gradualData.list = getGradualLengthByXml(res?.target?.result as any).filter(
- (item: any) => item.length === 2
- )
- } catch (error) {
- }
- state.partListNames = getPartListNames(res?.target?.result as any) as any
- parseInstrumentAndSubject(res?.target?.result as any)
- // 这里是如果没有当前音轨就重新写
- for (let j = 0; j < state.partListNames.length; j++) {
- if (!forms.musicSheetSoundList[j]) {
- forms.musicSheetSoundList.push({audioFileUrl: null, track: null})
- }
- forms.musicSheetSoundList[j].track = state.partListNames[j].value
- }
- // 循环添加所在音轨的原音
- for (let index = forms.musicSheetSoundList.length; index < state.partListNames.length; index++) {
- const part = state.partListNames[index].value
- const sysData = {
- ...forms.musicSheetSoundList[0],
- track: part
- }
- if (!sysData.speed) {
- sysData.speed = state.xmlFirstSpeed
- }
- createSys(sysData)
- }
- if (forms.musicSheetSoundList.length == 0) {
- forms.musicSheetSoundList.push({audioFileUrl: '', track: ''})
- }
- }
- xmlRead.readAsText(file)
- }
- const parseInstrumentAndSubject = (xml: any) => {
- if (!xml) return
- const xmlParse = new DOMParser().parseFromString(xml, 'text/xml')
- // 乐器
- const instrumentCodeList: any = [];
- const instrumentEle = xmlParse.getElementsByTagName('virtual-instrument');
- for (let index = 0; index < instrumentEle.length; index++) {
- const note = instrumentEle[index]
- const instrumentCode = note.getElementsByTagName('virtual-name')?.[0]?.textContent || '';
- if (instrumentCode && !instrumentCodeList.includes(instrumentCode)) {
- instrumentCodeList.push(instrumentCode);
- }
- }
- const codeIdMap = new Map<string, string>();
- state.instrumentData.forEach((data: any) => {
- codeIdMap.set(data.code, data.id + '');
- })
- forms.musicalInstrumentIdList = [];
- instrumentCodeList.forEach((code: string) => {
- if (codeIdMap.has(code)) {
- forms.musicalInstrumentIdList.push(codeIdMap.get(code));
- }
- })
- // 声部
- if (forms.musicalInstrumentIdList.length > 0) {
- showBackSubject(forms.musicalInstrumentIdList);
- }
- }
- // 获取xml中所有轨道 乐器
- const getPartListNames = (xml: any) => {
- if (!xml) return []
- const xmlParse = new DOMParser().parseFromString(xml, 'text/xml')
- const partList =
- xmlParse.getElementsByTagName('part-list')?.[0]?.getElementsByTagName('score-part') || []
- const partListNames = Array.from(partList).map((item) => {
- const part = item.getElementsByTagName('part-name')?.[0].textContent || ''
- return {
- value: part,
- label: part
- }
- })
- if (partListNames.length > 0) {
- forms.musicSheetSoundList = forms.musicSheetSoundList.slice(0, partListNames.length)
- }
- state.xmlFirstSpeed = xmlParse.getElementsByTagName('per-minute')?.[0]?.textContent || ''
- if (!forms.playSpeed) {
- if (state.xmlFirstSpeed) {
- forms.playSpeed = Number.parseInt(state.xmlFirstSpeed)
- } else {
- // 速度默认给100
- forms.playSpeed = 100
- }
- }
- // 乐器
- // const instrumentCodeList: any = [];
- // const instrumentEle = xmlParse.getElementsByTagName('virtual-instrument');
- // for (let index = 0; index < instrumentEle.length; index++) {
- // const note = instrumentEle[index]
- // const instrumentCode = note.getElementsByTagName('virtual-name')?.[0]?.textContent || '';
- // if (instrumentCode && !instrumentCodeList.includes(instrumentCode)) {
- // instrumentCodeList.push(instrumentCode);
- // }
- // }
- // const codeIdMap = new Map<string, string>();
- // state.instrumentData.forEach((data: any) => {
- // codeIdMap.set(data.code, data.id + '');
- // })
- // forms.musicalInstrumentIdList = [];
- // instrumentCodeList.forEach((code: string) => {
- // if (codeIdMap.has(code)) {
- // forms.musicalInstrumentIdList.push(codeIdMap.get(code));
- // }
- // })
- //
- // // 声部
- // if (forms.musicalInstrumentIdList.length > 0) {
- // showBackSubject(forms.musicalInstrumentIdList);
- // }
- return partListNames
- }
- // 判断选择的音轨是否在选中
- const initPartsListStatus = (track: string): any => {
- const _names = state.partListNames.filter((n: any) => n.value?.toLocaleUpperCase?.() != 'COMMON')
- const partListNames = deepClone(_names) || []
- partListNames.forEach((item: any) => {
- const index = forms.musicSheetSoundList.findIndex((ground: any) => item.value == ground.track)
- if (index > -1 && track == item.value) {
- item.disabled = false
- } else {
- item.disabled = true
- }
- // if (index > -1 && track != item.value) {
- // item.disabled = true
- // } else {
- // item.disabled = false
- // }
- })
- return partListNames || []
- }
- // 反显声部
- const showBackSubject = async (musicalInstrumentIdList: []) => {
- try {
- const {data} = await subjectPage({page: 1, rows: 999, musicalInstrumentIdList: musicalInstrumentIdList})
- const tempList = data.rows || []
- tempList.forEach((item: any) => {
- forms.subjectIds.push(item.id + '')
- })
- } catch {
- }
- }
- // 添加原音
- const createSys = (initData?: any) => {
- forms.musicSheetSoundList.push({
- audioFileUrl: null, // 原音
- track: null, // 轨道
- ...initData
- })
- }
- // 删除原音
- const removeSys = (index: number) => {
- dialog.warning({
- title: '警告',
- content: `是否确认删除此原音?`,
- positiveText: '确定',
- negativeText: '取消',
- onPositiveClick: async () => {
- forms.musicSheetSoundList.splice(index, 1)
- }
- })
- }
- const checkMultiTracks = (value: string) => {
- if (!value) {
- return;
- }
- if (value === 'all') {
- forms.multiTracksSelection = []
- state.partListNames.forEach((next: any) => {
- forms.multiTracksSelection.push(next.value)
- })
- } else if (value === 'invert') {
- state.partListNames.forEach((next: any) => {
- const indexOf = forms.multiTracksSelection.indexOf(next.value);
- if (indexOf > -1) {
- forms.multiTracksSelection.splice(indexOf, 1)
- } else {
- forms.multiTracksSelection.push(next.value)
- }
- })
- } else if (value === 'allUncheck') {
- forms.multiTracksSelection = []
- }
- }
- const setOwnerName = (() => {
- if (forms.sourceType == 'PLATFORM') {
- state.ownerName = ''
- return;
- }
- if (!forms.musicSheetExtend || !forms.sourceType || !forms.musicSheetExtend?.userId) {
- return;
- }
- const appId = forms.musicSheetExtend.applicationId;
- const app = state.appData.filter((next: any) => {
- return next.id == appId
- }) as any;
- if (app.length > 0) {
- state.ownerName = app[0].appName
- }
- if (forms.sourceType == 'ORG') {
- state.ownerName += '-' + forms.musicSheetExtend.organizationRole
- } else if (forms.sourceType == 'PERSON') {
- state.ownerName += '-' + getMapValueByKey(forms.musicSheetExtend.clientType, new Map(Object.entries(clientType)))
- if (forms.musicSheetExtend.userName) {
- state.ownerName += '-' + forms.musicSheetExtend.userName
- }
- if (forms.musicSheetExtend.phone) {
- state.ownerName += '(' + forms.musicSheetExtend.phone + ')'
- }
- }
- })
- onMounted(async () => {
- state.loading = true
- if (props.type === 'preview') {
- state.previewMode = true
- }
- // 获取乐器信息
- {
- if (state.instrumentList && state.instrumentList.length > 0) {
- return
- }
- try {
- const {data} = await musicalInstrumentPage({page: 1, rows: 999})
- const tempList = data.rows || []
- state.instrumentData = tempList
- tempList.forEach((item: any) => {
- item.label = item.name
- item.value = item.id + ''
- item.disabled = !item.enableFlag
- })
- state.instrumentList = tempList
- } catch {
- }
- }
- state.subjectList = deepClone(props.subjectList)
- state.subjectList.forEach((subject: any) => {
- subject.disabled = !subject.enableFlag
- })
- // 初始化应用
- {
- const appKeys = Object.keys(appKey);
- const {data} = await sysApplicationPage({page: 1, rows: 999, parentId: 0})
- const tempList = data.rows || []
- const filter = tempList.filter((next: any) => {
- return appKeys.includes(next.appKey)
- });
- filter.forEach((item: any) => {
- item.label = item.appName
- item.value = item.id
- })
- state.appData = filter
- }
- // 获取分类信息
- {
- try {
- const {data} = await musicSheetCategoriesQueryTree({enable: true})
- state.musicSheetCategories = filterPointCategory(data, 'musicSheetCategoriesList')
- } catch (e) {
- }
- }
- if (props.type === 'edit' || props.type === 'preview') {
- const detail = props.data
- try {
- const {data} = await musicSheetDetail({id: detail.id})
- forms.audioType = data.audioType
- forms.musicSheetAccompanimentList = data.musicSheetAccompanimentList
- data.musicSheetAccompanimentList?.forEach((next: any) => {
- state.musicSheetAccompanimentUrlList.push(next.audioFileUrl);
- })
- forms.playMode = data.playMode
- forms.xmlFileUrl = data.xmlFileUrl
- forms.midiUrl = data.midiUrl
- forms.name = data.name
- // forms.musicTag = data.musicTag?.split(',')
- forms.composer = data.composer
- forms.playSpeed = data.playSpeed
- // forms.showFingering = Number(data.showFingering)
- // forms.canEvaluate = Number(data.canEvaluate)
- // forms.notation = Number(data.notation)
- // forms.auditVersion = Number(data.auditVersion)
- // forms.sortNumber = data.sortNumber
- forms.musicCover = data.musicCover
- forms.remark = data.remark
- forms.status = data.status
- forms.musicCategoryId = data.musicCategoryId
- forms.musicSheetType = data.musicSheetType || "SINGLE"
- forms.evaluationStandard = data.evaluationStandard
- forms.musicalInstrumentIdList = data.musicalInstrumentIds.split(',') || []
- forms.subjectIds = data.subjectIds?.split(',') || []
- forms.sourceType = data.sourceType
- forms.musicSheetExtend = data.musicSheetExtend
- // 获取渐变 和 是否多声部
- try {
- const extConfigJson = data.extConfigJson ? JSON.parse(data.extConfigJson) : {}
- forms.graduals = extConfigJson.gradualTimes || {}
- } catch (error) {
- }
- setOwnerName()
- axios.get(data.xmlFileUrl).then((res: any) => {
- if (res?.data) {
- gradualData.list = getGradualLengthByXml(res?.data as any).filter(
- (item: any) => item.length === 2
- )
- state.partListNames = getPartListNames(res?.data as any) as any
- // 初始化音轨和原音
- forms.musicSheetSoundList = data.musicSheetSoundList || []
- forms.musicSheetSoundList.forEach((next: any) => {
- forms.multiTracksSelection.push(next.track)
- })
- }
- })
- } catch (error) {
- }
- } else {
- // 新增只能使用启用状态的数据
- state.subjectList = state.subjectList.filter((next: any) => {
- return next.enableFlag == true
- })
- state.instrumentList = state.instrumentList.filter((next: any) => {
- return next.enableFlag == true
- })
- }
- state.loading = false
- })
- return () => (
- <div style="background: #fff; padding-top: 12px">
- <NForm
- class={styles.formContainer}
- model={forms}
- ref={formsRef}
- label-placement="left"
- label-width="130"
- disabled={state.previewMode}
- >
- <NAlert showIcon={false} style={{marginBottom: "12px"}}>曲目信息</NAlert>
- <NGrid cols={2}>
- <NFormItemGi
- label="曲目名称"
- path="name"
- rule={[
- {
- required: true,
- message: '请输入曲目名称',
- trigger: ['input', 'blur']
- }
- ]}
- >
- <NInput
- v-model:value={forms.name}
- placeholder="请输入曲目名称"
- maxlength={25}
- showCount
- />
- </NFormItemGi>
- <NFormItemGi
- label="音乐人"
- path="composer"
- rule={[
- {
- required: true,
- message: '请输入音乐人',
- trigger: ['input', 'blur']
- }
- ]}
- >
- <NInput v-model:value={forms.composer}
- placeholder="请输入音乐人名称"
- showCount
- maxlength={14}
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- <NFormItemGi label="曲目描述" path="remark">
- <NInput
- placeholder="请输入曲目描述"
- type="textarea"
- rows={4}
- showCount
- maxlength={200}
- v-model:value={forms.remark}
- />
- </NFormItemGi>
- <NFormItemGi label="曲目封面" path="musicCover"
- rule={[
- {
- required: true,
- message: "请上传曲目封面"
- }
- ]}>
- <UploadFile
- desc={'封面图'}
- disabled={state.previewMode}
- accept=".jpg,.jpeg,.png"
- tips="请上传大小1M以内的JPG、PNG图片"
- size={1}
- v-model:fileList={forms.musicCover}
- cropper
- bucketName="cbs"
- options={{
- autoCrop: true, //是否默认生成截图框
- enlarge: 2, // 图片放大倍数
- autoCropWidth: 200, //默框高度
- fixedBox: true, //是否固定截图框大认生成截图框宽度
- autoCropHeight: 200, //默认生成截图小 不允许改变
- previewsCircle: false, //预览图是否是原圆形
- title: '曲目封面'
- }}
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- <NFormItemGi
- label="曲目类型"
- path="musicSheetType"
- rule={[
- {
- required: true,
- message: '请选择曲目类型'
- }
- ]}
- >
- <NSelect
- placeholder="请选择曲目类型"
- v-model:value={forms.musicSheetType}
- options={getSelectDataFromObj(musicSheetType)}
- />
- </NFormItemGi>
- <NFormItemGi
- label="作者属性"
- path="sourceType"
- rule={[
- {
- required: true,
- message: '请选择作者属性'
- }
- ]}
- >
- <NSelect
- v-model:value={forms.sourceType}
- options={getSelectDataFromObj(musicSheetSourceType)}
- placeholder="请选择作者属性"
- onUpdateValue={() => {
- // 发送变化,清理选择的所属人信息
- forms.musicSheetExtend = {}
- state.ownerName = null
- // forms.musicSheetExtend.userId = null
- // forms.musicSheetExtend.userName = null
- // forms.musicSheetExtend.applicationId = null
- // forms.musicSheetExtend.organizationRoleId = null
- }}
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- {forms.sourceType === 'PERSON' && (
- <NFormItemGi
- label="所属人"
- path="musicSheetExtend.userId"
- rule={[
- {
- required: true,
- message: '请选择曲目所属人'
- }
- ]}
- >
- <NButton
- disabled={state.previewMode || !forms.sourceType}
- type="primary"
- size="small"
- text
- //v-auth="orchestraSubsidyStandard/update1597887579789053953"
- onClick={() => {
- state.showMusicSheetOwnerDialog = true
- }}
- >
- {state.ownerName ? state.ownerName : '请选择所属人'}
- </NButton>
- </NFormItemGi>)}
- {forms.sourceType === 'ORG' && (
- <NFormItemGi
- label="所属人"
- path="musicSheetExtend.organizationRoleId"
- rule={[
- {
- required: true,
- message: '请选择曲目所属机构'
- }
- ]}
- >
- <NButton
- disabled={state.previewMode || !forms.sourceType}
- type="primary"
- size="small"
- text
- //v-auth="orchestraSubsidyStandard/update1597887579789053953"
- onClick={() => {
- state.showMusicSheetOwnerDialog = true
- }}
- >
- {state.ownerName ? state.ownerName : '请选择所属机构'}
- </NButton>
- </NFormItemGi>)}
- <NFormItemGi label="速度" path="playSpeed"
- rule={[
- {
- required: false,
- message: '请输入速度'
- }
- ]}
- >
- <NInputNumber
- placeholder="请输入速度"
- v-model:value={forms.playSpeed}
- style="width:100%"
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- <NFormItemGi label="审核版本" path="appAuditFlag"
- rule={[
- {
- required: true,
- message: '请选择曲目所属人'
- }
- ]}
- >
- <NSelect
- options={
- [
- {
- label: '是',
- value: 1
- },
- {
- label: '否',
- value: 0
- }
- ] as any
- }
- v-model:value={forms.appAuditFlag}
- />
- </NFormItemGi>
- <NFormItemGi label="曲目分类" path="musicCategoryId"
- rule={[
- {
- required: true,
- message: '请选择曲目分类',
- trigger: ['input', 'blur']
- }
- ]}
- >
- <NCascader
- valueField="id"
- labelField="name"
- children-field="musicSheetCategoriesList"
- placeholder="请选择分类"
- v-model:value={forms.musicCategoryId}
- options={state.musicSheetCategories}
- clearable
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- <NFormItemGi label="重复节拍时长" path="repeatedBeats"
- rule={[
- {
- required: true,
- message: '请选择是否重复节拍时长'
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.repeatedBeats}
- >
- <NRadio value={true}>是</NRadio>
- <NRadio value={false}>否</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- <NFormItemGi
- label="评分标准"
- path="evaluationStandard"
- rule={[
- {
- required: true
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.evaluationStandard}
- >
- <NRadio value={'FREQUENCY'}>标准评测</NRadio>
- <NRadio value={'AMPLITUDE'}>打击乐(振幅)</NRadio>
- <NRadio value={'DECIBELS'}>节奏(分贝)</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- </NGrid>
- <NAlert showIcon={false} style={{marginBottom: "12px"}}>曲目上传</NAlert>
- <NGrid cols={2}>
- <NFormItemGi label="播放模式" path="playMode"
- rule={[
- {
- required: true,
- message: '请选择播放模式'
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.playMode}
- onUpdateValue={(value: string | number | boolean) => {
- if (value === 'MP3') {
- forms.playMode = 'MP3'
- } else {
- forms.playMode = 'MIDI'
- }
- }}
- >
- <NRadio value="MP3">MP3</NRadio>
- <NRadio value="MIDI">MID</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- {forms.playMode === 'MP3' && (
- <NFormItemGi
- label="伴奏类型"
- path="audioType"
- rule={[
- {
- required: true,
- message: '请选择伴奏类型'
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.audioType}
- >
- <NRadio value={'HOMEMODE'}>自制伴奏</NRadio>
- <NRadio value={'COMMON'}>普通伴奏</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- )}
- </NGrid>
- <NGrid cols={2}>
- {forms.playMode === 'MP3' && (
- <NFormItemGi
- label="上传伴奏"
- path="musicSheetAccompanimentList"
- rule={[
- {
- required: false,
- message: '请选择上传.mp3'
- }
- ]}
- >
- <UploadFile
- disabled={state.previewMode}
- size={10}
- v-model:imageList={state.musicSheetAccompanimentUrlList}
- tips="仅支持上传.mp3格式文件"
- listType="image"
- accept=".mp3"
- bucketName="cloud-coach"
- text="点击上传伴奏文件"
- max={10}
- desc={'上传伴奏文件'}
- onUpload:success={(file) => {
- state.musicSheetAccompanimentUrls = [state.musicSheetAccompanimentUrls, file.url].filter(Boolean).join(',')
- state.musicSheetAccompanimentUrlList = state.musicSheetAccompanimentUrls?.split(',').filter(Boolean)
- forms.musicSheetAccompanimentList = []
- for (let i = 0; i < state.musicSheetAccompanimentUrlList.length; i++) {
- forms.musicSheetAccompanimentList.push({
- audioFileUrl: state.musicSheetAccompanimentUrlList[i],
- sortNumber: i + 1
- })
- }
- }}
- onRemove={() => {
- state.musicSheetAccompanimentUrlList = []
- state.musicSheetAccompanimentUrls = ''
- }}
- // onReadFileInputEventAsArrayBuffer={readFileInputEventAsArrayBuffer}
- multiple={true}
- />
- </NFormItemGi>
- )}
- {forms.playMode === 'MIDI' && (
- <NFormItemGi
- label="上传MID"
- path="midiFileUrl"
- rule={[
- {
- required: true,
- message: '请选择上传.MID格式文件'
- }
- ]}
- >
- <UploadFile
- desc={'MIDI文件'}
- disabled={state.previewMode}
- size={10}
- v-model:fileList={forms.midiFileUrl}
- tips="仅支持上传.MID格式文件"
- listType="image"
- accept=".mid"
- bucketName="cloud-coach"
- text="点击上传MID文件"
- // onReadFileInputEventAsArrayBuffer={readFileInputEventAsArrayBuffer}
- />
- </NFormItemGi>
- )}
- <NFormItemGi
- label="上传XML"
- path="xmlFileUrl"
- rule={[
- {
- required: true,
- message: '请选择上传XML'
- }
- ]}
- >
- <UploadFile
- desc={'XML文件'}
- disabled={state.previewMode}
- size={10}
- v-model:fileList={forms.xmlFileUrl}
- tips="仅支持上传.xml/.mxml格式文件"
- listType="image"
- accept=".xml,.mxml"
- bucketName="cloud-coach"
- text="点击上传XML文件"
- onReadFileInputEventAsArrayBuffer={readFileInputEventAsArrayBuffer}
- onRemove={() => {
- forms.multiTracksSelection = []
- state.partListNames = []
- forms.musicSheetSoundList = []
- forms.musicalInstrumentIdList = []
- forms.subjectIds = []
- }}
- />
- </NFormItemGi>
- </NGrid>
- <NGrid cols={2}>
- <NFormItemGi label="可用声部" path="subjectIds"
- rule={[
- {
- required: true,
- message: '请选择可用声部'
- }
- ]}
- >
- <NSelect
- v-model:value={forms.subjectIds}
- options={state.subjectList}
- multiple
- filterable
- clearable
- placeholder="请选择可用声部"
- maxTagCount={2}
- />
- </NFormItemGi>
- <NFormItemGi label="可用乐器" path="musicalInstrumentIdList"
- rule={[
- {
- required: true,
- message: '请选择可用乐器'
- }
- ]}
- >
- <NSelect
- placeholder="请选择可用乐器"
- options={state.instrumentList}
- v-model:value={forms.musicalInstrumentIdList}
- clearable
- multiple
- maxTagCount={2}
- />
- </NFormItemGi>
- </NGrid>
- {(forms.musicSheetType) && (
- <NGrid cols={1}>
- <NFormItemGi
- label={`${forms.musicSheetType === 'SINGLE' ? '页面渲染声轨' : '用户可切换声轨'}`}
- path="multiTracksSelection"
- rule={[
- {
- required: true,
- message: `请选择${forms.musicSheetType === 'SINGLE' ? '页面渲染声轨' : '用户可切换声轨'}`
- }
- ]}
- >
- <NGrid style="padding-top: 4px;">
- <NGi span={24}>
- <NRadioGroup
- v-model:value={state.multiTracks}
- onUpdateValue={(value) => {
- checkMultiTracks(value)
- }}
- >
- <NRadio value={'all'}>全选</NRadio>
- <NRadio value={'allUncheck'}>重置</NRadio>
- <NRadio value={'invert'}>反选</NRadio>
- </NRadioGroup>
- </NGi>
- <NGi span={24} style={"margin-top:5px"}><NFormItemGi
- label=''
- path="multiTracksSelection"
- rule={[
- {
- required: false,
- }
- ]}
- >
- <NCheckboxGroup
- v-model:value={forms.multiTracksSelection}
- >
- <NGrid yGap={2} cols={4}
- >
- {state.partListNames.map((item: any) => (
- <NGi>
- <NCheckbox value={item.value} label={item.label}/>
- </NGi>
- ))}
- </NGrid>
- </NCheckboxGroup>
- </NFormItemGi></NGi>
- </NGrid>
- </NFormItemGi>
- </NGrid>
- )
- }
- <NGrid cols={2}>
- <NFormItemGi label="是否播放节拍器" path="isPlayBeat"
- rule={[
- {
- required: true,
- message: '请选择是否播放节拍器'
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.isPlayBeat}
- >
- <NRadio value={true}>是</NRadio>
- <NRadio value={false}>否</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- {forms.isPlayBeat && (
- <NFormItemGi label="播放方式" path="audioType"
- rule={[
- {
- required: true,
- message: '请选择播放方式'
- }
- ]}
- >
- <NRadioGroup
- v-model:value={forms.isUseSystemBeat}
- >
- <NRadio value={true}>系统节拍器</NRadio>
- <NRadio value={false}>MP3节拍器</NRadio>
- </NRadioGroup>
- </NFormItemGi>
- )}
- </NGrid>
- {/* 只有播放类型为mp3时才会有原音 */}
- {forms.playMode === 'MP3' && forms.musicSheetSoundList.length > 0 && (
- <>
- {forms.musicSheetSoundList.map((item: any, index: number) => (
- <>
- {item.track?.toLocaleUpperCase?.() != 'COMMON' && forms.multiTracksSelection.indexOf(item.track) > -1 &&
- <NGrid class={styles.audioSection}
- // v-show={forms.multiTracksSelection.indexOf(item.track) > -1}
- >
- <NFormItemGi
- span={12}
- label="原音"
- path={`musicSheetSoundList[${index}].audioFileUrl`}
- rule={[
- {
- // required: forms.multiTracksSelection.indexOf(forms.musicSheetSoundList[index].audioFileUrl) > -1,
- required: true,
- message: `请上传${
- item.track ? item.track + '的' : '第' + (index + 1) + '个'
- }原音`
- }
- ]}
- >
- <UploadFile
- desc={'原音文件'}
- disabled={state.previewMode}
- size={10}
- v-model:fileList={item.audioFileUrl}
- tips="仅支持上传.mp3格式文件"
- listType="image"
- accept=".mp3"
- bucketName="cloud-coach"
- />
- </NFormItemGi>
- {state.partListNames.length > 1 && (
- <NFormItemGi
- span={12}
- label="所属轨道"
- path={`musicSheetSoundList[${index}].track`}
- rule={[
- {
- required: true,
- message: '请选择所属轨道'
- }
- ]}
- >
- <NSelect
- placeholder="请选择所属轨道"
- v-model:value={item.track}
- options={initPartsListStatus(item.track)}
- />
- </NFormItemGi>
- )}
- </NGrid>}
- </>
- ))}
- <NButton
- type="primary"
- dashed
- block
- disabled={state.partListNames.length <= forms.musicSheetSoundList.length}
- style={{
- marginBottom: '24px'
- }}
- onClick={createSys}
- >
- 添加原音
- </NButton>
- </>
- )}
- </NForm>
- {props.type !== 'preview' &&
- (
- <NSpace justify="end" style="padding-top:12px">
- <NButton type="default" onClick={() => emit('close')}>
- 取消
- </NButton>
- <NButton
- type="primary"
- onClick={() => onSubmit()}
- loading={btnLoading.value}
- disabled={btnLoading.value}
- >
- 确认
- </NButton>
- </NSpace>
- )}
- <NModal
- v-model:show={state.showMusicSheetOwnerDialog}
- preset="dialog"
- showIcon={false}
- maskClosable={false}
- title="所属人"
- style={{width: '800px'}}
- >
- <MusicSheetOwnerDialog
- musicSheetExtend={forms.musicSheetExtend}
- sourceType={forms.sourceType}
- appData={state.appData}
- onClose={() => {
- state.showMusicSheetOwnerDialog = false
- }}
- onChoseMusicSheetOwnerData={(musicSheetOwnerData) => {
- forms.musicSheetExtend = {
- ...musicSheetOwnerData
- }
- setOwnerName()
- }}
- />
- </NModal>
- </div>
- )
- }
- })
|