typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
89 lines (87 loc) • 4.08 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RelationIdAttribute = void 0;
const QueryBuilderUtils_1 = require("../QueryBuilderUtils");
const ObjectUtils_1 = require("../../util/ObjectUtils");
const TypeORMError_1 = require("../../error/TypeORMError");
/**
* Stores all join relation id attributes which will be used to build a JOIN query.
*/
class RelationIdAttribute {
// -------------------------------------------------------------------------
// Constructor
// -------------------------------------------------------------------------
constructor(queryExpressionMap, relationIdAttribute) {
this.queryExpressionMap = queryExpressionMap;
/**
* Indicates if relation id should NOT be loaded as id map.
*/
this.disableMixedMap = false;
ObjectUtils_1.ObjectUtils.assign(this, relationIdAttribute || {});
}
// -------------------------------------------------------------------------
// Public Methods
// -------------------------------------------------------------------------
get joinInverseSideMetadata() {
return this.relation.inverseEntityMetadata;
}
/**
* Alias of the parent of this join.
* For example, if we join ("post.category", "categoryAlias") then "post" is a parent alias.
* This value is extracted from entityOrProperty value.
* This is available when join was made using "post.category" syntax.
*/
get parentAlias() {
if (!QueryBuilderUtils_1.QueryBuilderUtils.isAliasProperty(this.relationName))
throw new TypeORMError_1.TypeORMError(`Given value must be a string representation of alias property`);
return this.relationName.substr(0, this.relationName.indexOf("."));
}
/**
* Relation property name of the parent.
* This is used to understand what is joined.
* For example, if we join ("post.category", "categoryAlias") then "category" is a relation property.
* This value is extracted from entityOrProperty value.
* This is available when join was made using "post.category" syntax.
*/
get relationPropertyPath() {
if (!QueryBuilderUtils_1.QueryBuilderUtils.isAliasProperty(this.relationName))
throw new TypeORMError_1.TypeORMError(`Given value must be a string representation of alias property`);
return this.relationName.substr(this.relationName.indexOf(".") + 1);
}
/**
* Relation of the parent.
* This is used to understand what is joined.
* This is available when join was made using "post.category" syntax.
*/
get relation() {
if (!QueryBuilderUtils_1.QueryBuilderUtils.isAliasProperty(this.relationName))
throw new TypeORMError_1.TypeORMError(`Given value must be a string representation of alias property`);
const relationOwnerSelection = this.queryExpressionMap.findAliasByName(this.parentAlias);
const relation = relationOwnerSelection.metadata.findRelationWithPropertyPath(this.relationPropertyPath);
if (!relation)
throw new TypeORMError_1.TypeORMError(`Relation with property path ${this.relationPropertyPath} in entity was not found.`);
return relation;
}
/**
* Generates alias of junction table, whose ids we get.
*/
get junctionAlias() {
const [parentAlias, relationProperty] = this.relationName.split(".");
return parentAlias + "_" + relationProperty + "_rid";
}
/**
* Metadata of the joined entity.
* If extra condition without entity was joined, then it will return undefined.
*/
get junctionMetadata() {
return this.relation.junctionEntityMetadata;
}
get mapToPropertyParentAlias() {
return this.mapToProperty.substr(0, this.mapToProperty.indexOf("."));
}
get mapToPropertyPropertyPath() {
return this.mapToProperty.substr(this.mapToProperty.indexOf(".") + 1);
}
}
exports.RelationIdAttribute = RelationIdAttribute;
//# sourceMappingURL=RelationIdAttribute.js.map