-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathproject-data.ts
369 lines (322 loc) · 10.1 KB
/
project-data.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import * as constants from "./constants";
import * as path from "path";
import * as _ from "lodash";
import { parseJson } from "./common/helpers";
import { EOL } from "os";
import { cache } from "./common/decorators";
import {
INsConfig,
IProjectConfigService,
IProjectData,
} from "./definitions/project";
import {
IAndroidResourcesMigrationService,
IOptions,
IStaticConfig,
} from "./declarations";
import {
IErrors,
IFileSystem,
IProjectHelper,
IStringDictionary,
} from "./common/declarations";
import { injector } from "./common/yok";
import { IInjector } from "./common/definitions/yok";
interface IProjectType {
type: string;
requiredDependencies?: string[];
isDefaultProjectType?: boolean;
}
export class ProjectData implements IProjectData {
/**
* NOTE: Order of the elements is important as the TypeScript dependencies are commonly included in Angular project as well.
*/
private static PROJECT_TYPES: IProjectType[] = [
{
type: constants.ProjectTypes.JsFlavorName,
isDefaultProjectType: true,
},
{
type: constants.ProjectTypes.NgFlavorName,
requiredDependencies: [
"@angular/core",
"nativescript-angular",
"@nativescript/angular",
],
},
{
type: constants.ProjectTypes.VueFlavorName,
requiredDependencies: ["nativescript-vue"],
},
{
type: constants.ProjectTypes.ReactFlavorName,
requiredDependencies: ["react-nativescript"],
},
{
type: constants.ProjectTypes.SvelteFlavorName,
requiredDependencies: ["svelte-native"],
},
{
type: constants.ProjectTypes.TsFlavorName,
requiredDependencies: ["typescript", "nativescript-dev-typescript"],
},
];
public projectDir: string;
public platformsDir: string;
public projectFilePath: string;
public projectIdentifiers: Mobile.IProjectIdentifier;
get projectId(): string {
this.warnProjectId();
return this.projectIdentifiers.ios;
}
//just in case hook/extension modifies it.
set projectId(identifier: string) {
this.warnProjectId();
this.projectIdentifiers.ios = identifier;
this.projectIdentifiers.android = identifier;
}
public projectName: string;
public packageJsonData: any;
public nsConfig: INsConfig;
public appDirectoryPath: string;
public appResourcesDirectoryPath: string;
public dependencies: any;
public devDependencies: IStringDictionary;
public ignoredDependencies: string[];
public projectType: string;
public androidManifestPath: string;
public infoPlistPath: string;
public appGradlePath: string;
public gradleFilesDirectoryPath: string;
public buildXcconfigPath: string;
public podfilePath: string;
public isShared: boolean;
public previewAppSchema: string;
public webpackConfigPath: string;
public initialized: boolean;
constructor(
private $fs: IFileSystem,
private $errors: IErrors,
private $projectHelper: IProjectHelper,
private $staticConfig: IStaticConfig,
private $options: IOptions,
private $logger: ILogger,
private $injector: IInjector,
private $androidResourcesMigrationService: IAndroidResourcesMigrationService,
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants
) {}
get projectConfig(): IProjectConfigService {
return this.$injector.resolve("projectConfigService");
}
public initializeProjectData(projectDir?: string): void {
if (this.initialized) {
return;
}
projectDir = projectDir || this.$projectHelper.projectDir;
// If no project found, projectDir should be null
if (projectDir) {
const projectFilePath = this.getProjectFilePath(projectDir);
if (this.$fs.exists(projectFilePath)) {
const packageJsonContent = this.$fs.readText(projectFilePath);
this.initializeProjectDataFromContent(packageJsonContent, projectDir);
this.initialized = true;
}
return;
}
this.errorInvalidProject(projectDir);
}
public initializeProjectDataFromContent(
packageJsonContent: string,
projectDir?: string
): void {
projectDir = projectDir || this.$projectHelper.projectDir || "";
this.projectDir = projectDir;
const projectFilePath = this.getProjectFilePath(projectDir);
const nsConfig: INsConfig = this.projectConfig.readConfig(projectDir);
let packageJsonData = null;
try {
packageJsonData = parseJson(packageJsonContent);
} catch (err) {
this.$errors.fail(
`The project file ${this.projectFilePath} is corrupted. ${EOL}` +
`Consider restoring an earlier version from your source control or backup.${EOL}` +
`Additional technical info: ${err.toString()}`
);
}
if (packageJsonData) {
this.projectName = this.$projectHelper.sanitizeName(
path.basename(projectDir)
);
this.platformsDir = path.join(projectDir, constants.PLATFORMS_DIR_NAME);
this.projectFilePath = projectFilePath;
this.projectIdentifiers = this.initializeProjectIdentifiers(nsConfig);
this.packageJsonData = packageJsonData;
this.dependencies = packageJsonData.dependencies;
this.devDependencies = packageJsonData.devDependencies;
this.projectType = this.getProjectType();
this.nsConfig = nsConfig;
this.ignoredDependencies = nsConfig?.ignoredNativeDependencies;
this.appDirectoryPath = this.getAppDirectoryPath();
this.appResourcesDirectoryPath = this.getAppResourcesDirectoryPath();
this.androidManifestPath = this.getPathToAndroidManifest(
this.appResourcesDirectoryPath
);
this.gradleFilesDirectoryPath = path.join(
this.appResourcesDirectoryPath,
this.$devicePlatformsConstants.Android
);
this.appGradlePath = path.join(
this.gradleFilesDirectoryPath,
constants.APP_GRADLE_FILE_NAME
);
this.infoPlistPath = path.join(
this.appResourcesDirectoryPath,
this.$devicePlatformsConstants.iOS,
constants.INFO_PLIST_FILE_NAME
);
this.buildXcconfigPath = path.join(
this.appResourcesDirectoryPath,
this.$devicePlatformsConstants.iOS,
constants.BUILD_XCCONFIG_FILE_NAME
);
this.podfilePath = path.join(
this.appResourcesDirectoryPath,
this.$devicePlatformsConstants.iOS,
constants.PODFILE_NAME
);
this.isShared = !!(this.nsConfig && this.nsConfig.shared);
this.previewAppSchema = this.nsConfig && this.nsConfig.previewAppSchema;
this.webpackConfigPath =
this.nsConfig && this.nsConfig.webpackConfigPath
? path.resolve(this.projectDir, this.nsConfig.webpackConfigPath)
: path.join(this.projectDir, "webpack.config.js");
return;
}
this.errorInvalidProject(projectDir);
}
private getPathToAndroidManifest(appResourcesDir: string): string {
const androidDirPath = path.join(
appResourcesDir,
this.$devicePlatformsConstants.Android
);
const androidManifestDir = this.$androidResourcesMigrationService.hasMigrated(
appResourcesDir
)
? path.join(androidDirPath, constants.SRC_DIR, constants.MAIN_DIR)
: androidDirPath;
return path.join(androidManifestDir, constants.MANIFEST_FILE_NAME);
}
private errorInvalidProject(projectDir: string): void {
const currentDir = path.resolve(".");
this.$logger.trace(
`Unable to find project. projectDir: ${projectDir}, options.path: ${this.$options.path}, ${currentDir}`
);
// This is the case when no project file found
this.$errors.fail(
"No project found at or above '%s' and neither was a --path specified.",
projectDir || this.$options.path || currentDir
);
}
private getProjectFilePath(projectDir: string): string {
return path.join(projectDir, this.$staticConfig.PROJECT_FILE_NAME);
}
public getAppResourcesDirectoryPath(projectDir?: string): string {
const appResourcesRelativePath = this.getAppResourcesRelativeDirectoryPath();
return this.resolveToProjectDir(appResourcesRelativePath, projectDir);
}
public getAppResourcesRelativeDirectoryPath(): string {
if (
this.nsConfig &&
this.nsConfig[constants.CONFIG_NS_APP_RESOURCES_ENTRY]
) {
return this.nsConfig[constants.CONFIG_NS_APP_RESOURCES_ENTRY];
}
return constants.APP_RESOURCES_FOLDER_NAME;
// return path.join(
// this.getAppDirectoryRelativePath(),
// constants.APP_RESOURCES_FOLDER_NAME
// );
}
public getAppDirectoryPath(projectDir?: string): string {
const appRelativePath = this.getAppDirectoryRelativePath();
return this.resolveToProjectDir(appRelativePath, projectDir);
}
public getAppDirectoryRelativePath(): string {
if (this.nsConfig && this.nsConfig[constants.CONFIG_NS_APP_ENTRY]) {
return this.nsConfig[constants.CONFIG_NS_APP_ENTRY];
}
if (this.$fs.exists(path.resolve(this.projectDir, constants.SRC_DIR))) {
return constants.SRC_DIR;
} else {
// legacy project setup often uses app folder
return constants.APP_FOLDER_NAME;
}
}
public getNsConfigRelativePath(): string {
return constants.CONFIG_FILE_NAME_JS;
}
private resolveToProjectDir(
pathToResolve: string,
projectDir?: string
): string {
if (!projectDir) {
projectDir = this.projectDir;
}
if (!projectDir) {
return null;
}
return path.resolve(projectDir, pathToResolve);
}
@cache()
private initializeProjectIdentifiers(
config: INsConfig
): Mobile.IProjectIdentifier {
this.$logger.trace(`Initializing project identifiers. Config: `, config);
if (!config) {
this.$logger.error("Unable to determine app id.");
return {
ios: "",
android: "",
};
}
const identifier: Mobile.IProjectIdentifier = {
ios: config.id,
android: config.id,
};
if (config.ios && config.ios.id) {
identifier.ios = config.ios.id;
}
if (config.android && config.android.id) {
identifier.android = config.android.id;
}
return identifier;
}
private getProjectType(): string {
let detectedProjectType = _.find(
ProjectData.PROJECT_TYPES,
(projectType) => projectType.isDefaultProjectType
).type;
const deps: string[] = _.keys(this.dependencies).concat(
_.keys(this.devDependencies)
);
_.each(ProjectData.PROJECT_TYPES, (projectType) => {
if (
_.some(
projectType.requiredDependencies,
(requiredDependency) => deps.indexOf(requiredDependency) !== -1
)
) {
detectedProjectType = projectType.type;
return false;
}
});
return detectedProjectType;
}
@cache()
private warnProjectId(): void {
this.$logger.warn(
"[WARNING]: IProjectData.projectId is deprecated. Please use IProjectData.projectIdentifiers[platform]."
);
}
}
injector.register("projectData", ProjectData, true);