@teambit/renaming
Version:
33 lines (31 loc) • 1.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RenamingFragment = void 0;
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
class RenamingFragment {
constructor(renaming) {
this.renaming = renaming;
_defineProperty(this, "title", 'renaming');
_defineProperty(this, "weight", 3);
}
async renderRow(component) {
const renamingInfo = this.renaming.getRenamingInfo(component);
const content = renamingInfo ? `origin: ${renamingInfo.renamedFrom.toString()}` : '';
return {
title: this.title,
content
};
}
async json(component) {
return {
title: this.title,
json: this.renaming.getRenamingInfo(component)
};
}
}
exports.RenamingFragment = RenamingFragment;
//# sourceMappingURL=renaming.fragment.js.map