r2-shared-js
Version:
Readium 2 'shared' for NodeJS (TypeScript)
66 lines • 2.41 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Subject = void 0;
var tslib_1 = require("tslib");
var ta_json_x_1 = require("ta-json-x");
var publication_link_1 = require("./publication-link");
var LINKS_JSON_PROP = "links";
var Subject = (function () {
function Subject() {
}
Object.defineProperty(Subject.prototype, "SortAs", {
get: function () {
return this.SortAs2 ? this.SortAs2 : this.SortAs1;
},
set: function (sortas) {
if (sortas) {
this.SortAs1 = undefined;
this.SortAs2 = sortas;
}
},
enumerable: false,
configurable: true
});
Subject.prototype._OnDeserialized = function () {
if (!this.Name) {
console.log("Subject.Name is not set!");
}
};
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("name"),
tslib_1.__metadata("design:type", Object)
], Subject.prototype, "Name", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("sortAs"),
tslib_1.__metadata("design:type", String)
], Subject.prototype, "SortAs2", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("sort_as"),
tslib_1.__metadata("design:type", Object)
], Subject.prototype, "SortAs1", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("scheme"),
tslib_1.__metadata("design:type", String)
], Subject.prototype, "Scheme", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)("code"),
tslib_1.__metadata("design:type", String)
], Subject.prototype, "Code", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.JsonProperty)(LINKS_JSON_PROP),
(0, ta_json_x_1.JsonElementType)(publication_link_1.Link),
tslib_1.__metadata("design:type", Array)
], Subject.prototype, "Links", void 0);
tslib_1.__decorate([
(0, ta_json_x_1.OnDeserialized)(),
tslib_1.__metadata("design:type", Function),
tslib_1.__metadata("design:paramtypes", []),
tslib_1.__metadata("design:returntype", void 0)
], Subject.prototype, "_OnDeserialized", null);
Subject = tslib_1.__decorate([
(0, ta_json_x_1.JsonObject)()
], Subject);
return Subject;
}());
exports.Subject = Subject;
//# sourceMappingURL=metadata-subject.js.map
;