r2-shared-js
Version:
Readium 2 'shared' for NodeJS (TypeScript)
47 lines • 1.41 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Content = void 0;
const tslib_1 = require("tslib");
const xml_js_mapper_1 = require("r2-utils-js/dist/es8-es2017/src/_utils/xml-js-mapper");
const decodeURI_1 = require("../../_utils/decodeURI");
let Content = class Content {
get Src() {
return this.Src1;
}
set Src(href) {
this.Src1 = href;
this._urlDecoded = undefined;
}
get SrcDecoded() {
if (this._urlDecoded) {
return this._urlDecoded;
}
if (this._urlDecoded === null) {
return undefined;
}
if (!this.Src) {
this._urlDecoded = null;
return undefined;
}
this._urlDecoded = (0, decodeURI_1.tryDecodeURI)(this.Src);
return !this._urlDecoded ? undefined : this._urlDecoded;
}
set SrcDecoded(href) {
this._urlDecoded = href;
}
setSrcDecoded(href) {
this.Src = href;
this.SrcDecoded = href;
}
};
exports.Content = Content;
tslib_1.__decorate([
(0, xml_js_mapper_1.XmlXPathSelector)("@src"),
tslib_1.__metadata("design:type", String)
], Content.prototype, "Src1", void 0);
exports.Content = Content = tslib_1.__decorate([
(0, xml_js_mapper_1.XmlObject)({
ncx: "http://www.daisy.org/z3986/2005/ncx/",
})
], Content);
//# sourceMappingURL=ncx-content.js.map