mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 15:32:40 -05:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 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]);
|
|
}
|
|
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;
|