mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 15:32:40 -05:00
edd6aafed0
Co-Authored-By: Karishma Chadha <kchadha@media.mit.edu>
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
const html = require('htmlparser2');
|
|
const decodeHtml = require('decode-html');
|
|
|
|
/**
|
|
* Convert a part of a mutation DOM to a mutation VM object, recursively.
|
|
* @param {object} dom DOM object for mutation tag.
|
|
* @return {object} Object representing useful parts of this mutation.
|
|
*/
|
|
const mutatorTagToObject = function (dom) {
|
|
const obj = Object.create(null);
|
|
obj.tagName = dom.name;
|
|
obj.children = [];
|
|
for (const prop in dom.attribs) {
|
|
if (prop === 'xmlns') continue;
|
|
obj[prop] = decodeHtml(dom.attribs[prop]);
|
|
// Note: the capitalization of block info in the following lines is important.
|
|
// The lowercase is read in from xml which normalizes case. The VM uses camel case everywhere else.
|
|
if (prop === 'blockinfo') {
|
|
obj.blockInfo = JSON.parse(obj.blockinfo);
|
|
delete obj.blockinfo;
|
|
}
|
|
}
|
|
for (let i = 0; i < dom.children.length; i++) {
|
|
obj.children.push(
|
|
mutatorTagToObject(dom.children[i])
|
|
);
|
|
}
|
|
return obj;
|
|
};
|
|
|
|
/**
|
|
* Adapter between mutator XML or DOM and block representation which can be
|
|
* used by the Scratch runtime.
|
|
* @param {(object|string)} mutation Mutation XML string or DOM.
|
|
* @return {object} Object representing the mutation.
|
|
*/
|
|
const mutationAdpater = function (mutation) {
|
|
let mutationParsed;
|
|
// Check if the mutation is already parsed; if not, parse it.
|
|
if (typeof mutation === 'object') {
|
|
mutationParsed = mutation;
|
|
} else {
|
|
mutationParsed = html.parseDOM(mutation)[0];
|
|
}
|
|
return mutatorTagToObject(mutationParsed);
|
|
};
|
|
|
|
module.exports = mutationAdpater;
|