2020-05-17 22:57:28 +00:00
|
|
|
import './meta'
|
2019-11-03 19:13:06 +00:00
|
|
|
|
2020-11-24 17:35:14 +00:00
|
|
|
import FileSaver from 'file-saver'
|
2020-12-28 05:51:36 +00:00
|
|
|
import { waitForSheetLoaded, console } from './utils'
|
2020-05-18 22:44:45 +00:00
|
|
|
import { downloadPDF } from './pdf'
|
2020-09-27 16:20:33 +00:00
|
|
|
import { downloadMscz } from './mscz'
|
2020-10-18 11:21:25 +00:00
|
|
|
import { getFileUrl } from './file'
|
2020-11-24 11:03:46 +00:00
|
|
|
import { INDV_DOWNLOADS } from './mscore'
|
2020-12-28 04:51:37 +00:00
|
|
|
import { getLibreScoreLink } from './librescore-link'
|
|
|
|
import { BtnList, BtnAction, BtnListMode, ICON } from './btn'
|
2020-11-29 22:47:39 +00:00
|
|
|
import { ScoreInfoInPage, SheetInfoInPage, getActualId } from './scoreinfo'
|
2020-11-05 05:22:15 +00:00
|
|
|
import i18n from './i18n'
|
2019-12-01 09:11:40 +00:00
|
|
|
|
2020-11-24 17:35:14 +00:00
|
|
|
const { saveAs } = FileSaver
|
|
|
|
|
2020-05-17 22:57:28 +00:00
|
|
|
const main = (): void => {
|
2020-11-12 18:02:50 +00:00
|
|
|
const btnList = new BtnList()
|
2020-11-24 07:51:43 +00:00
|
|
|
const scoreinfo = new ScoreInfoInPage(document)
|
2020-11-29 22:47:39 +00:00
|
|
|
const { fileName } = scoreinfo
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-void
|
|
|
|
void getActualId(scoreinfo)
|
2020-05-19 04:15:22 +00:00
|
|
|
|
2020-11-13 05:54:20 +00:00
|
|
|
let indvPartBtn: HTMLButtonElement | null = null
|
2020-11-13 06:00:45 +00:00
|
|
|
const fallback = () => {
|
|
|
|
// btns fallback to load from MSCZ file (`Individual Parts`)
|
|
|
|
return indvPartBtn?.click()
|
|
|
|
}
|
2020-11-13 05:54:20 +00:00
|
|
|
|
2020-05-19 04:15:22 +00:00
|
|
|
btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('DOWNLOAD')('MSCZ'),
|
2020-11-24 17:35:14 +00:00
|
|
|
action: BtnAction.process(() => downloadMscz(scoreinfo, saveAs)),
|
2020-05-19 04:15:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('DOWNLOAD')('PDF'),
|
2020-11-24 08:17:50 +00:00
|
|
|
action: BtnAction.process(() => downloadPDF(scoreinfo, new SheetInfoInPage(document)), fallback, 3 * 60 * 1000 /* 3min */),
|
2020-05-19 04:15:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('DOWNLOAD')('MusicXML'),
|
2020-11-24 09:38:47 +00:00
|
|
|
action: BtnAction.mscoreWindow(scoreinfo, async (w, score) => {
|
2020-09-27 16:20:33 +00:00
|
|
|
const mxl = await score.saveMxl()
|
|
|
|
const data = new Blob([mxl])
|
2020-11-24 07:51:43 +00:00
|
|
|
saveAs(data, `${fileName}.mxl`)
|
2020-09-27 16:20:33 +00:00
|
|
|
w.close()
|
|
|
|
}),
|
2020-05-19 04:15:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('DOWNLOAD')('MIDI'),
|
2020-11-29 22:47:39 +00:00
|
|
|
action: BtnAction.download(() => getFileUrl(scoreinfo.id, 'midi'), fallback, 30 * 1000 /* 30s */),
|
2020-05-19 04:15:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('DOWNLOAD')('MP3'),
|
2020-11-29 22:47:39 +00:00
|
|
|
action: BtnAction.download(() => getFileUrl(scoreinfo.id, 'mp3'), fallback, 30 * 1000 /* 30s */),
|
2020-05-19 04:15:22 +00:00
|
|
|
})
|
|
|
|
|
2020-11-13 05:54:20 +00:00
|
|
|
indvPartBtn = btnList.add({
|
2020-11-05 05:22:15 +00:00
|
|
|
name: i18n('IND_PARTS')(),
|
|
|
|
tooltip: i18n('IND_PARTS_TOOLTIP')(),
|
2020-11-24 09:38:47 +00:00
|
|
|
action: BtnAction.mscoreWindow(scoreinfo, 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)
|
|
|
|
|
2020-09-28 21:08:52 +00:00
|
|
|
// add the "full score" option as a "part"
|
2020-11-05 05:22:15 +00:00
|
|
|
metadata.excerpts.unshift({ id: -1, title: i18n('FULL_SCORE')(), parts: [] })
|
2020-09-28 21:08:52 +00:00
|
|
|
|
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)
|
2020-09-28 21:08:52 +00:00
|
|
|
|
2020-11-24 11:03:46 +00:00
|
|
|
const downloads = INDV_DOWNLOADS
|
2020-10-20 05:38:12 +00:00
|
|
|
|
2020-09-28 21:08:52 +00:00
|
|
|
// part selection
|
2020-11-09 19:04:18 +00:00
|
|
|
const DEFAULT_PART = -1 // initially select "full score"
|
2020-05-19 04:15:22 +00:00
|
|
|
for (const excerpt of metadata.excerpts) {
|
2020-05-19 04:40:16 +00:00
|
|
|
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'
|
2020-05-19 04:40:16 +00:00
|
|
|
e.alt = partName
|
2020-11-09 19:04:18 +00:00
|
|
|
e.checked = id === DEFAULT_PART
|
2020-10-20 04:54:53 +00:00
|
|
|
e.onclick = () => {
|
2020-10-20 05:38:12 +00:00
|
|
|
return score.setExcerptId(id) // set selected part
|
2020-10-20 04:54:53 +00:00
|
|
|
}
|
2020-05-19 04:40:16 +00:00
|
|
|
|
2020-05-19 04:15:22 +00:00
|
|
|
const label = w.document.createElement('label')
|
2020-05-19 04:40:16 +00:00
|
|
|
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
|
|
|
}
|
2020-09-28 21:08:52 +00:00
|
|
|
|
2020-11-09 19:04:18 +00:00
|
|
|
await score.setExcerptId(DEFAULT_PART)
|
2020-10-20 05:10:41 +00:00
|
|
|
|
2020-10-20 05:09:28 +00:00
|
|
|
// submit buttons
|
2020-10-20 05:38:12 +00:00
|
|
|
for (const d of downloads) {
|
2020-10-20 05:09:28 +00:00
|
|
|
const submitBtn = w.document.createElement('input')
|
|
|
|
submitBtn.type = 'submit'
|
2020-10-20 05:38:12 +00:00
|
|
|
submitBtn.style.margin = '0.5em'
|
2020-10-20 05:09:28 +00:00
|
|
|
fieldset.append(submitBtn)
|
2019-11-03 20:01:29 +00:00
|
|
|
|
2020-10-20 05:38:12 +00:00
|
|
|
const initBtn = () => {
|
|
|
|
submitBtn.onclick = onSubmit
|
|
|
|
submitBtn.disabled = false
|
|
|
|
submitBtn.value = d.name
|
|
|
|
}
|
|
|
|
|
2020-10-20 05:09:28 +00:00
|
|
|
const onSubmit = async (): Promise<void> => {
|
|
|
|
// lock the button when processing
|
|
|
|
submitBtn.onclick = null
|
2020-10-20 05:38:12 +00:00
|
|
|
submitBtn.disabled = true
|
2020-11-05 05:22:15 +00:00
|
|
|
submitBtn.value = i18n('PROCESSING')()
|
2020-10-20 04:55:40 +00:00
|
|
|
|
2020-10-20 05:09:28 +00:00
|
|
|
const checked = fieldset.querySelector('input:checked') as HTMLInputElement
|
|
|
|
const partName = checked.alt
|
2020-05-19 04:15:22 +00:00
|
|
|
|
2020-10-20 05:38:12 +00:00
|
|
|
const data = new Blob([await d.action(score)])
|
2020-11-24 07:51:43 +00:00
|
|
|
saveAs(data, `${fileName} - ${partName}.${d.fileExt}`)
|
2020-10-20 04:55:40 +00:00
|
|
|
|
2020-10-20 05:38:12 +00:00
|
|
|
// unlock button
|
|
|
|
initBtn()
|
2020-10-20 05:09:28 +00:00
|
|
|
}
|
2020-10-20 05:38:12 +00:00
|
|
|
|
|
|
|
initBtn()
|
2020-05-19 04:15:22 +00:00
|
|
|
}
|
2020-09-27 16:20:33 +00:00
|
|
|
}),
|
2020-09-28 21:41:51 +00:00
|
|
|
})
|
2019-11-29 23:07:43 +00:00
|
|
|
|
2020-12-28 04:51:37 +00:00
|
|
|
btnList.add({
|
2021-01-02 07:44:43 +00:00
|
|
|
name: i18n('VIEW_IN_LIBRESCORE')(),
|
2020-12-28 04:51:37 +00:00
|
|
|
action: BtnAction.openUrl(() => getLibreScoreLink(scoreinfo)),
|
|
|
|
tooltip: 'BETA',
|
|
|
|
icon: ICON.LIBRESCORE,
|
|
|
|
})
|
|
|
|
|
2020-11-10 19:32:59 +00:00
|
|
|
btnList.commit(BtnListMode.InPage)
|
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
|
2020-12-28 05:51:36 +00:00
|
|
|
waitForSheetLoaded().then(main)
|