Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
loader.lazyGetter(this, "MODE", function () {
.MODE;
});
loader.lazyGetter(this, "ElementNode", function () {
});
loader.lazyGetter(this, "TextNode", function () {
});
loader.lazyRequireGetter(
this,
"translateNodeFrontToGrip",
true
);
/**
* Creates either an ElementNode or a TextNode rep given a nodeFront. By default the
* rep is created in TINY mode.
*
* @param {NodeFront} nodeFront
* The node front to create the element for.
* @param {Object} props
* Props to pass to the rep.
*/
function getNodeRep(nodeFront, props = {}) {
const object = translateNodeFrontToGrip(nodeFront);
const { rep } = ElementNode.supportsObject(object) ? ElementNode : TextNode;
return rep({
object,
mode: MODE.TINY,
...props,
});
}
module.exports = getNodeRep;