-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.js
More file actions
425 lines (375 loc) · 10.8 KB
/
index.js
File metadata and controls
425 lines (375 loc) · 10.8 KB
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
const writePkg = require("write-pkg");
const readPkg = require("read-pkg");
const deepExtend = require("deep-extend");
var Generator = require("yeoman-generator");
module.exports = class extends Generator {
constructor(args, opts) {
super(args, opts);
// name of the app based on the directory name generated by React Native
this.name = this.appname;
}
prompting() {
return this.prompt([
{
type: "list",
name: "httpLayer",
message: "Which HTTP layer do you want to use?",
choices: ["react-query", "redux-saga"],
default: "react-query",
},
{
type: "confirm",
name: "i18nSupport",
message: "Do you want i18n support?",
default: true,
},
{
type: "confirm",
name: "fastlane",
message: "Do you want add Fastlane to this project?",
default: true,
},
]).then((answers) => {
this.i18nSupport = answers.i18nSupport;
this.fastlane = answers.fastlane;
this.usingReactQuery = answers.httpLayer === "react-query";
this.usingReduxSaga = answers.httpLayer === "redux-saga";
});
}
writing() {
// create entry points for Android and iOS
this.fs.copyTpl(
this.templatePath("index.js"),
this.destinationPath("index.js"),
{ name: this.name, usingReactQuery: this.usingReactQuery }
);
// copy Prettier config
this.fs.copyTpl(
this.templatePath(".prettierrc.js"),
this.destinationPath(".prettierrc.js")
);
// copy ESLint config
this.fs.copyTpl(
this.templatePath(".eslintrc.js"),
this.destinationPath(".eslintrc.js")
);
this.fs.copyTpl(
this.templatePath("jest.config.js"),
this.destinationPath("jest.config.js")
);
// copy TypeSCript config
this.fs.copyTpl(
this.templatePath("tsconfig.json"),
this.destinationPath("tsconfig.json"),
{ name: this.name }
);
// remove default App generated by RN
this.fs.delete("App.tsx");
// remove default test
this.fs.delete("__tests__/App-test.tsx");
// copy root app file that the entry points use
this.fs.copyTpl(
this.templatePath("App/index.tsx"),
this.destinationPath("App/index.tsx"),
{
name: this.name,
usingReduxSaga: this.usingReduxSaga,
usingReactQuery: this.usingReactQuery,
}
);
// copy router
this.fs.copyTpl(
this.templatePath("App/Router.tsx"),
this.destinationPath("App/Router.tsx"),
{ name: this.name }
);
// copy screens
this.fs.copyTpl(
this.templatePath("App/Screens"),
this.destinationPath("App/Screens"),
{
name: this.name,
i18nSupport: this.i18nSupport,
usingReactQuery: this.usingReactQuery,
}
);
// copy components
this.fs.copyTpl(
this.templatePath("App/Components"),
this.destinationPath("App/Components"),
{ name: this.name }
);
if (this.usingReduxSaga) {
this.fs.copyTpl(
this.templatePath("@types/react-redux.d.ts"),
this.destinationPath("@types/react-redux.d.ts"),
{ name: this.name }
);
this.fs.copyTpl(
this.templatePath("@types/redux-action-buffer.d.ts"),
this.destinationPath("@types/redux-action-buffer.d.ts"),
{ name: this.name }
);
// copy store
this.fs.copyTpl(
this.templatePath("App/Store/index.ts"),
this.destinationPath("App/Store/index.ts"),
{ name: this.name }
);
// copy store middleware
this.fs.copyTpl(
this.templatePath("App/Store/Middleware"),
this.destinationPath("App/Store/Middleware"),
{ name: this.name }
);
// copy reducers
this.fs.copyTpl(
this.templatePath("App/Reducers"),
this.destinationPath("App/Reducers"),
{ name: this.name, reducers: ["App"] }
);
// copy actions
this.fs.copyTpl(
this.templatePath("App/Actions"),
this.destinationPath("App/Actions"),
{ name: this.name }
);
// copy sagas
this.fs.copyTpl(
this.templatePath("App/Sagas"),
this.destinationPath("App/Sagas"),
{ name: this.name }
);
}
// copy services
this.fs.copyTpl(
this.templatePath("App/Services"),
this.destinationPath("App/Services"),
{ name: this.name }
);
// copy helpers
this.fs.copyTpl(
this.templatePath("App/Helpers/Log.ts"),
this.destinationPath("App/Helpers/Log.ts"),
{ name: this.name }
);
// copy theme
this.fs.copyTpl(
this.templatePath("App/Theme.ts"),
this.destinationPath("App/Theme.ts")
);
// copy config
this.fs.copyTpl(
this.templatePath("App/Config/index.ts"),
this.destinationPath("App/Config/index.ts"),
{ name: this.name }
);
if (this.i18nSupport) {
this.fs.copyTpl(
this.templatePath("App/Helpers/Translations.ts"),
this.destinationPath("App/Helpers/Translations.ts"),
{ name: this.name }
);
this.fs.copyTpl(
this.templatePath("App/Config/Locales"),
this.destinationPath("App/Config/Locales"),
{ name: this.name }
);
}
// copy default .env
this.fs.copyTpl(this.templatePath(".env"), this.destinationPath(".env"), {
env: "development",
api_url: "http://localhost:3000",
storage_prefix: "development",
});
this.fs.copyTpl(
this.templatePath(".env"),
this.destinationPath(".env.example"),
{
env: "development",
api_url: "http://localhost:3000",
storage_prefix: "development",
}
);
this.fs.copyTpl(
this.templatePath(".env"),
this.destinationPath(".env.staging"),
{
env: "staging",
api_url: "http://localhost:3000",
storage_prefix: "staging",
}
);
this.fs.copyTpl(
this.templatePath(".env"),
this.destinationPath(".env.production"),
{
env: "production",
api_url: "http://localhost:3000",
storage_prefix: "production",
}
);
this.fs.copy(
this.templatePath("App/Assets"),
this.destinationPath("App/Assets")
);
this.fs.copy(
this.templatePath("utilities"),
this.destinationPath("utilities")
);
this.fs.copy(
this.templatePath("__mocks__"),
this.destinationPath("__mocks__")
);
// Add fastlane folder
if (this.fastlane) {
this.fs.copy(
this.templatePath("fastlane"),
this.destinationPath("fastlane")
);
this.fs.copy(
this.templatePath("fastlane/.env.example"),
this.destinationPath("fastlane/.env.example")
);
}
this.fs.copyTpl(
this.templatePath("README.md"),
this.destinationPath("README.md"),
{ name: this.name, nameLower: this.name.toLowerCase() }
);
// copy shell scripts
this.fs.copyTpl(
this.templatePath("bin/bump-ios.sh"),
this.destinationPath("bin/bump-ios.sh"),
{ name: this.name }
);
// merge the two package json files
const currentPackage = readPkg.sync();
writePkg.sync(
deepExtend(currentPackage, {
private: true,
scripts: {
pretty:
"prettier --config .prettierrc.js --write 'App/**/*.{ts,tsx,js}'",
lint: "eslint --fix './App/**/*.{ts,tsx,js}'",
bump: "./bin/bump-ios.sh",
"version:bump":
"npm version patch && cd fastlane && bundle exec fastlane version_bump",
"github:release":
"cd fastlane && bundle exec fastlane github_release",
"firebase:release":
"cd fastlane && bundle exec fastlane firebase_release",
test: "jest --verbose",
coverage: "jest --coverage",
"test:watch": "npm test -- --watch",
},
"lint-staged": {
"App/**/*.{ts,tsx,js}": [
"prettier --config .prettierrc.js --write",
"eslint --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'",
],
},
husky: {
hooks: {
"pre-commit": "lint-staged",
},
},
})
);
}
install() {
const reactNavigation = [
"@react-navigation/native",
"@react-navigation/stack",
"react-native-reanimated",
"react-native-gesture-handler",
"react-native-screens",
"react-native-safe-area-context",
"@react-native-community/masked-view",
];
const reduxSagaModules = [
"react-redux",
"redux",
"redux-action-buffer",
"redux-logger",
"redux-persist",
"redux-saga",
];
const reactQueryModules = ["react-query"];
const types = ["@types/styled-components"];
this.yarnInstall([
"@react-native-community/async-storage",
"axios",
"react-native-config",
"styled-components",
...reactNavigation,
...(this.i18nSupport ? ["react-native-i18n"] : []),
...(this.usingReduxSaga ? reduxSagaModules : []),
...(this.usingReactQuery ? reactQueryModules : []),
]);
this.yarnInstall(
[
...types,
"@bam.tech/react-native-make",
"@testing-library/react-native",
"eslint",
"babel-eslint",
"prettier@1.19.1",
"husky",
"lint-staged",
"eslint-config-prettier",
"eslint-plugin-prettier",
"eslint-config-xo",
"eslint-plugin-react",
"eslint-plugin-react-native",
"eslint-plugin-tsc",
"jest",
"jest-styled-components",
],
{
dev: true,
}
);
}
end() {
this.log("Installing Pods...");
this.spawnCommandSync("npx", ["pod-install"]);
this.log("Running Prettier...");
this.spawnCommandSync("yarn", ["run", "pretty"]);
this.log("Update ignore");
this.spawnCommandSync(
"python",
[`${this.templatePath("bin")}/git-ignore.py`],
{
cwd: this.destinationPath(),
}
);
this.log("Creating Android environments");
this.spawnCommandSync(
"python",
[`${this.templatePath("bin")}/react-native-config.py`],
{
cwd: this.destinationPath(),
}
);
this.log("Creating iOS Schemes");
this.spawnCommandSync(
"python",
[`${this.templatePath("bin")}/create-schemes.py`, this.name],
{
cwd: this.destinationPath(),
}
);
if (this.fastlane) {
this.log("Checking if Fastlane is installed on your machine...");
this.spawnCommandSync("sh", [`${this.templatePath("bin")}/fastlane.sh`], {
cwd: this.destinationPath(),
});
}
this.log("Setup complete!");
this.log("Please refer to the post-install notes");
this.log(
"https://github.com/simpleweb/generator-react-native#after-react-nativebase"
);
}
};