-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutils.ts
26 lines (23 loc) · 873 Bytes
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { WARNING } from './strings';
export function mapperCacheRelationByField (mapper:any):void {
if (!mapper.relationByField || !mapper.relationByFieldId) {
mapper.relationByField = {};
mapper.relationByFieldId = {};
for (let i = 0, l = (mapper.relationList || []).length; i < l; i++ ) {
let field:string = mapper.relationList[i].localField;
if (mapper.relationList[i].type === 'belongsTo') {
let key:string = mapper.relationList[i].foreignKey;
if (!mapper.relationList[i].foreignKey) {
this.warn(WARNING.NO_FOREIGN_KEY, mapper.relationList[i]);
} else {
mapper.relationByFieldId[key] = mapper.relationList[i];
}
}
if (field) {
mapper.relationByField[field] = mapper.relationList[i];
} else {
this.warn('localField missing'); continue;
}
}
}
}