musescore-downloader/src/btn.ts

217 lines
5.8 KiB
TypeScript
Raw Normal View History

2020-05-19 04:15:22 +00:00
import { loadMscore, WebMscore } from './mscore'
2020-11-10 14:46:35 +00:00
import { webpackGlobalOverride } from './webpack-hook'
2020-11-05 05:22:15 +00:00
import i18n from './i18n'
2020-09-28 21:23:16 +00:00
type BtnElement = HTMLButtonElement
2020-05-19 04:15:22 +00:00
/**
* Select the original Download Button
*/
export const getDownloadBtn = (): BtnElement => {
2020-08-26 09:01:55 +00:00
const btnsDiv = document.querySelector('.score-right .buttons-wrapper') || document.querySelectorAll('aside > section > section > div')[3]
2020-05-19 04:15:22 +00:00
const btn = btnsDiv.querySelector('button, .button') as BtnElement
btn.onclick = null
// fix the icon of the download btn
// if the `btn` seleted was a `Print` btn, replace the `print` icon with the `download` icon
const svgPath: SVGPathElement | null = btn.querySelector('svg > path')
if (svgPath) {
svgPath.setAttribute('d', 'M9.6 2.4h4.8V12h2.784l-5.18 5.18L6.823 12H9.6V2.4zM19.2 19.2H4.8v2.4h14.4v-2.4z')
}
if (btn.nodeName.toLowerCase() === 'button') {
btn.setAttribute('style', 'width: 205px !important')
} else {
btn.dataset.target = ''
}
return btn
}
interface BtnOptions {
readonly name: string;
readonly action: BtnAction;
2020-09-28 21:41:51 +00:00
readonly disabled?: boolean;
readonly tooltip?: string;
2020-05-19 04:15:22 +00:00
}
2020-11-10 14:46:35 +00:00
const SCORE_BTN_MODULE_ID = 'WYqd'
webpackGlobalOverride(SCORE_BTN_MODULE_ID, (_, r, t) => { // override
const fn = r.a
let firstTime = true
// the root container of btns refreshes every 1s
t.d(r, 'a', () => {
return function () {
if (!firstTime) {
// force state update
this.__H.__[0].__[0] = 0
} else {
firstTime = false
}
return fn() as void
}
})
})
2020-05-19 04:15:22 +00:00
export class BtnList {
private readonly list: BtnElement[] = [];
constructor (private templateBtn: BtnElement) { }
2020-11-05 16:31:38 +00:00
private antiDetectionText = 'Download'
2020-11-05 22:18:43 +00:00
2020-05-19 04:15:22 +00:00
add (options: BtnOptions): BtnElement {
2020-08-26 08:49:57 +00:00
const btn = this.templateBtn.cloneNode(true) as HTMLButtonElement
2020-05-19 04:15:22 +00:00
const textNode = [...btn.childNodes].find((x) => {
const txt = x.textContent as string
return txt.includes('Download') || txt.includes('Print')
2020-10-26 22:22:31 +00:00
}) as HTMLSpanElement
// Anti-detection:
// musescore will send a track event "MSCZDOWNLOADER_INSTALLED" to its backend
// if detected "Download MSCZ"
2020-11-05 22:32:27 +00:00
['textContent', 'innerHTML'].forEach((_property) => {
const _set = textNode['__lookupSetter__'](_property)
Object.defineProperty(textNode, _property, {
set (v) { _set.call(textNode, v) },
get: () => {
// first time only
const t = this.antiDetectionText
this.antiDetectionText = ' '
return t
},
})
2020-10-26 22:22:31 +00:00
})
2020-05-19 04:15:22 +00:00
const setText = (str: string): void => {
textNode.textContent = str
}
setText(options.name)
btn.onclick = (): void => {
options.action(options.name, btn, setText)
}
this.list.push(btn)
2020-09-28 21:41:51 +00:00
if (options.disabled) {
btn.disabled = options.disabled
}
if (options.tooltip) {
btn.title = options.tooltip
}
2020-05-19 04:15:22 +00:00
return btn
}
/**
* replace the template button with the list of new buttons
*/
commit (): void {
const parent = this.templateBtn.parentElement as HTMLDivElement
const shadow = parent.attachShadow({ mode: 'closed' })
// style the shadow DOM from outside css
document.head.querySelectorAll('style').forEach(s => {
shadow.append(s.cloneNode(true))
})
// hide buttons using the shadow DOM
const newParent = parent.cloneNode(false) as HTMLDivElement
newParent.append(...this.list)
shadow.append(newParent)
2020-05-19 04:15:22 +00:00
}
}
type BtnAction = (btnName: string, btnEl: BtnElement, setText: (str: string) => void) => any
// eslint-disable-next-line @typescript-eslint/no-namespace
export namespace BtnAction {
type Promisable<T> = T | Promise<T>
type UrlInput = Promisable<string> | (() => Promisable<string>)
const normalizeUrlInput = (url: UrlInput) => {
if (typeof url === 'function') return url()
else return url
}
export const openUrl = (url: UrlInput): BtnAction => {
return process(async (): Promise<any> => {
window.open(await normalizeUrlInput(url))
})
}
export const download = (url: UrlInput): BtnAction => {
return process(async (): Promise<any> => {
const _url = await normalizeUrlInput(url)
const a = document.createElement('a')
a.href = _url
a.dispatchEvent(new MouseEvent('click'))
})
2020-05-19 04:15:22 +00:00
}
export const mscoreWindow = (fn: (w: Window, score: WebMscore, processingTextEl: ChildNode) => any): BtnAction => {
return async (btnName, btn, setText) => {
const _onclick = btn.onclick
btn.onclick = null
2020-11-05 05:22:15 +00:00
setText(i18n('PROCESSING')())
const w = window.open('') as Window
2020-11-05 05:22:15 +00:00
const txt = document.createTextNode(i18n('PROCESSING')())
w.document.body.append(txt)
// set page hooks
// eslint-disable-next-line prefer-const
let score: WebMscore
const destroy = (): void => {
score && score.destroy()
w.close()
}
window.addEventListener('unload', destroy)
w.addEventListener('beforeunload', () => {
score && score.destroy()
window.removeEventListener('unload', destroy)
setText(btnName)
btn.onclick = _onclick
})
score = await loadMscore(w)
fn(w, score, txt)
}
}
2020-05-19 04:15:22 +00:00
export const process = (fn: () => any): BtnAction => {
return async (name, btn, setText): Promise<void> => {
const _onclick = btn.onclick
btn.onclick = null
2020-11-05 05:22:15 +00:00
setText(i18n('PROCESSING')())
2020-05-19 04:15:22 +00:00
try {
await fn()
setText(name)
} catch (err) {
2020-11-05 05:22:15 +00:00
setText(i18n('BTN_ERROR')())
2020-05-19 04:15:22 +00:00
console.error(err)
}
btn.onclick = _onclick
}
}
export const deprecate = (action: BtnAction): BtnAction => {
return (name, btn, setText) => {
2020-11-05 05:22:15 +00:00
alert(i18n('DEPRECATION_NOTICE')(name))
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return action(name, btn, setText)
}
}
2020-05-19 04:15:22 +00:00
}