-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathimports.ts
63 lines (55 loc) · 1.56 KB
/
imports.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. */
import { ImportDeclarationStructure, StructureKind } from 'ts-morph';
import { caps, ODataVersion } from '@sap-cloud-sdk/util';
import {
coreImportDeclaration,
corePropertyTypeImportNames,
externalImportDeclarations
} from '../imports';
import { VdmEntity } from '../vdm-types';
export function importDeclarations(
entity: VdmEntity,
oDataVersion: ODataVersion
): ImportDeclarationStructure[] {
return [
...externalImportDeclarations(entity.keys),
coreImportDeclaration(
[
...corePropertyTypeImportNames(entity.keys),
...requestBuilderCoreImportDeclarations(entity, oDataVersion)
],
oDataVersion
),
entityImportDeclaration(entity)
];
}
function requestBuilderCoreImportDeclarations(
entity: VdmEntity,
oDataVersion: ODataVersion
) {
const versionInCap = caps(oDataVersion);
const coreImports = [
'RequestBuilder',
`GetAllRequestBuilder${versionInCap}`,
`GetByKeyRequestBuilder${versionInCap}`
];
if (entity.creatable) {
coreImports.push(`CreateRequestBuilder${versionInCap}`);
}
if (entity.updatable) {
coreImports.push(`UpdateRequestBuilder${versionInCap}`);
}
if (entity.deletable) {
coreImports.push(`DeleteRequestBuilder${versionInCap}`);
}
return coreImports;
}
function entityImportDeclaration(
entity: VdmEntity
): ImportDeclarationStructure {
return {
kind: StructureKind.ImportDeclaration,
namedImports: [entity.className],
moduleSpecifier: `./${entity.className}`
};
}