@crnk/angular-ngrx
Version:
Angular helper library for ngrx-json-api and crnk:
99 lines • 3.96 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { BeanPath, BooleanPath, StringPath } from '../expression/';
import { QTypedManyResourceRelationship, QTypedOneResourceRelationship } from '../stub/';
import { MetaAttribute, QMetaAttribute } from './meta.attribute';
import { MetaElement, QMetaElement } from './meta.element';
import { ManyQueryResult, OneQueryResult, ResourceRelationship, TypedManyResourceRelationship } from 'ngrx-json-api';
var QMetaKey = /** @class */ (function (_super) {
__extends(QMetaKey, _super);
function QMetaKey() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.metaId = 'resources.meta.key';
_this.id = _this.createString('id');
_this.type = _this.createString('type');
_this.relationships = new QMetaKey.QRelationships(_this, 'relationships');
_this.attributes = new QMetaKey.QAttributes(_this, 'attributes');
return _this;
}
return QMetaKey;
}(BeanPath));
export { QMetaKey };
(function (QMetaKey) {
var QRelationships = /** @class */ (function (_super) {
__extends(QRelationships, _super);
function QRelationships() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(QRelationships.prototype, "elements", {
get: function () {
if (!this._elements) {
this._elements =
new QTypedManyResourceRelationship(this, 'elements', QMetaAttribute);
}
return this._elements;
},
enumerable: true,
configurable: true
});
;
Object.defineProperty(QRelationships.prototype, "parent", {
get: function () {
if (!this._parent) {
this._parent =
new QTypedOneResourceRelationship(this, 'parent', QMetaElement);
}
return this._parent;
},
enumerable: true,
configurable: true
});
;
Object.defineProperty(QRelationships.prototype, "children", {
get: function () {
if (!this._children) {
this._children =
new QTypedManyResourceRelationship(this, 'children', QMetaElement);
}
return this._children;
},
enumerable: true,
configurable: true
});
;
return QRelationships;
}(BeanPath));
QMetaKey.QRelationships = QRelationships;
var QAttributes = /** @class */ (function (_super) {
__extends(QAttributes, _super);
function QAttributes() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.unique = _this.createBoolean('unique');
_this.name = _this.createString('name');
return _this;
}
return QAttributes;
}(BeanPath));
QMetaKey.QAttributes = QAttributes;
})(QMetaKey || (QMetaKey = {}));
export var createEmptyMetaKey = function (id) {
return {
id: id,
type: 'meta/key',
attributes: {},
relationships: {
elements: { data: [] },
parent: { data: null },
children: { data: [] },
},
};
};
//# sourceMappingURL=meta.key.js.map