musescore-downloader/src/main.ts

109 lines
3.0 KiB
TypeScript
Raw Normal View History

2020-05-17 22:57:28 +00:00
import './meta'
2019-11-03 19:13:06 +00:00
2020-05-18 22:44:45 +00:00
import { waitForDocumentLoaded, saveAs } from './utils'
import { downloadPDF } from './pdf'
import { downloadMscz } from './mscz'
import { getFileUrl } from './file'
2020-05-19 04:15:22 +00:00
import { getDownloadBtn, BtnList, BtnAction } from './btn'
2020-05-17 22:57:28 +00:00
import * as recaptcha from './recaptcha'
2020-05-18 22:44:45 +00:00
import scoreinfo from './scoreinfo'
2019-12-01 09:11:40 +00:00
2020-05-17 22:57:28 +00:00
const main = (): void => {
// @ts-ignore
2020-10-01 15:55:38 +00:00
if (!window?.UGAPP?.store?.page?.data?.score) { return }
2019-11-03 19:13:06 +00:00
2020-05-17 22:57:28 +00:00
// init recaptcha
// eslint-disable-next-line @typescript-eslint/no-floating-promises
recaptcha.init()
2019-12-01 05:13:14 +00:00
2020-05-19 04:15:22 +00:00
const btnList = new BtnList(getDownloadBtn())
const filename = scoreinfo.fileName
2020-05-19 04:15:22 +00:00
btnList.add({
name: 'Download MSCZ',
action: BtnAction.process(downloadMscz),
})
btnList.add({
name: 'Download PDF',
action: BtnAction.process(downloadPDF),
})
btnList.add({
name: 'Download MusicXML',
action: BtnAction.mscoreWindow(async (w, score) => {
const mxl = await score.saveMxl()
const data = new Blob([mxl])
saveAs(data, `${filename}.mxl`)
w.close()
}),
2020-05-19 04:15:22 +00:00
})
btnList.add({
name: 'Download MIDI',
action: BtnAction.download(() => getFileUrl('midi'), `${filename}.mid`),
2020-05-19 04:15:22 +00:00
})
btnList.add({
name: 'Download MP3',
action: BtnAction.download(() => getFileUrl('mp3'), `${filename}.mp3`),
2020-05-19 04:15:22 +00:00
})
btnList.add({
name: 'Individual Parts',
2020-09-28 21:41:51 +00:00
tooltip: 'Download individual parts (BETA)',
action: BtnAction.mscoreWindow(async (w, score, txt) => {
2020-05-19 04:15:22 +00:00
const metadata = await score.metadata()
console.log('score metadata loaded by webmscore', metadata)
// add the "full score" option as a "part"
metadata.excerpts.unshift({ id: -1, title: 'Full score', parts: [] })
2020-05-19 04:15:22 +00:00
// render the part selection page
txt.remove()
const fieldset = w.document.createElement('fieldset')
2020-10-20 04:54:53 +00:00
w.document.body.append(fieldset)
// part selection
2020-05-19 04:15:22 +00:00
for (const excerpt of metadata.excerpts) {
const id = excerpt.id
const partName = excerpt.title
2020-05-19 04:15:22 +00:00
const e = w.document.createElement('input')
e.name = 'score-part'
e.type = 'radio'
e.alt = partName
e.checked = id === 0 // initially select the first part
2020-10-20 04:54:53 +00:00
e.onclick = () => {
return score.setExcerptId(id)
}
2020-05-19 04:15:22 +00:00
const label = w.document.createElement('label')
label.innerText = partName
2020-05-19 04:15:22 +00:00
const br = w.document.createElement('br')
fieldset.append(e, label, br)
2020-05-17 22:57:28 +00:00
}
// submit button
2020-05-19 04:15:22 +00:00
const submitBtn = w.document.createElement('input')
submitBtn.type = 'submit'
submitBtn.value = 'Download PDF'
fieldset.append(submitBtn)
2019-11-03 20:01:29 +00:00
2020-05-19 04:15:22 +00:00
submitBtn.onclick = async (): Promise<void> => {
const checked = fieldset.querySelector('input:checked') as HTMLInputElement
const partName = checked.alt
2020-05-19 04:15:22 +00:00
const data = new Blob([await score.savePdf()])
saveAs(data, `${filename} - ${partName}.pdf`)
2020-05-19 04:15:22 +00:00
}
}),
2020-09-28 21:41:51 +00:00
})
2019-11-29 23:07:43 +00:00
2020-05-19 04:15:22 +00:00
btnList.commit()
2019-11-29 23:07:43 +00:00
}
2019-11-03 19:13:06 +00:00
2020-05-17 22:57:28 +00:00
// eslint-disable-next-line @typescript-eslint/no-floating-promises
2019-11-29 23:07:43 +00:00
waitForDocumentLoaded().then(main)