-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: remove external and use
wasm
verovio
- remove customized external verovio module (setup-verovio, verovio-util/) - update webpack config, yarn.lock, package.json - use `wasm` verovio toolkit - introduce verovio worker for development Resolves: #1221
- Loading branch information
1 parent
847dec2
commit ba92337
Showing
18 changed files
with
513 additions
and
974 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
importScripts('../assets/js/verovio-toolkit-wasm.js'); | ||
|
||
let toolkit; | ||
const backlog = []; | ||
|
||
/** | ||
* Parse and respond to messages sent by NeonCore. | ||
* @param {MessageEvent} evt | ||
*/ | ||
function handleNeonEvent (evt) { | ||
const data = evt.data; | ||
const result = { | ||
id: data.id | ||
}; | ||
|
||
switch (data.action) { | ||
case 'renderData': | ||
result.svg = toolkit.renderData(data.mei, {}); | ||
break; | ||
case 'getElementAttr': | ||
result.attributes = toolkit.getElementAttr(data.elementId); | ||
break; | ||
case 'edit': | ||
result.result = toolkit.edit(data.editorAction); | ||
break; | ||
case 'getMEI': | ||
result.mei = toolkit.getMEI({ | ||
pageNo: 0, | ||
scoreBased: true | ||
}); | ||
break; | ||
case 'editInfo': | ||
result.info = toolkit.editInfo(); | ||
break; | ||
case 'renderToSVG': | ||
result.svg = toolkit.renderToSVG(1); | ||
break; | ||
default: | ||
break; | ||
} | ||
postMessage(result); | ||
} | ||
|
||
|
||
verovio.module.onRuntimeInitialized = function () { | ||
|
||
toolkit = new verovio.toolkit(); | ||
toolkit.setOptions({ | ||
inputFrom: 'mei', | ||
footer: 'none', | ||
header: 'none', | ||
pageMarginLeft: 0, | ||
pageMarginTop: 0, | ||
font: 'Bravura', | ||
useFacsimile: false, | ||
}); | ||
console.debug('READY'); | ||
onmessage = handleNeonEvent; | ||
for (const message of backlog) { | ||
handleNeonEvent(message); | ||
} | ||
} | ||
|
||
|
||
function tempHandler (evt) { | ||
backlog.push(evt); | ||
} | ||
|
||
onmessage = tempHandler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.