Skip to content

Commit 155cb96

Browse files
author
hirsch
committed
🚚 Move the seeding library to a seperate repo called typeorm-seeding
1 parent 8b2420a commit 155cb96

15 files changed

+258
-482
lines changed

commands/seed.ts

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
import chalk from 'chalk';
2+
import commander from 'commander';
3+
import * as path from 'path';
4+
import {
5+
loadConnection, loadEntityFactories, loadSeeds, runSeed, setConnection
6+
} from 'typeorm-seeding';
7+
8+
// Cli helper
9+
commander
10+
.version('1.0.0')
11+
.description('Run database seeds of your project')
12+
.option('-L, --logging', 'enable sql query logging')
13+
.option('--factories <path>', 'add filepath for your factories')
14+
.option('--seeds <path>', 'add filepath for your seeds')
15+
.option('--run <seeds>', 'run specific seeds (file names without extension)', (val) => val.split(','))
16+
.option('--config <file>', 'path to your ormconfig.json file (must be a json)')
17+
.parse(process.argv);
18+
19+
// Get cli parameter for a different factory path
20+
const factoryPath = (commander.factories)
21+
? commander.factories
22+
: 'src/database/factories';
23+
24+
// Get cli parameter for a different seeds path
25+
const seedsPath = (commander.seeds)
26+
? commander.seeds
27+
: 'src/database/seeds/';
28+
29+
// Get a list of seeds
30+
const listOfSeeds = (commander.run)
31+
? commander.run.map(l => l.trim()).filter(l => l.length > 0)
32+
: [];
33+
34+
// Search for seeds and factories
35+
const run = async () => {
36+
const log = console.log;
37+
38+
let factoryFiles;
39+
let seedFiles;
40+
try {
41+
factoryFiles = await loadEntityFactories(factoryPath);
42+
seedFiles = await loadSeeds(seedsPath);
43+
} catch (error) {
44+
return handleError(error);
45+
}
46+
47+
// Filter seeds
48+
if (listOfSeeds.length > 0) {
49+
seedFiles = seedFiles.filter(sf => listOfSeeds.indexOf(path.basename(sf).replace('.ts', '')) >= 0);
50+
}
51+
52+
// Status logging to print out the amount of factories and seeds.
53+
log(chalk.bold('seeds'));
54+
log('🔎 ', chalk.gray.underline(`found:`),
55+
chalk.blue.bold(`${factoryFiles.length} factories`, chalk.gray('&'), chalk.blue.bold(`${seedFiles.length} seeds`)));
56+
57+
// Get database connection and pass it to the seeder
58+
try {
59+
const connection = await loadConnection();
60+
setConnection(connection);
61+
} catch (error) {
62+
return handleError(error);
63+
}
64+
65+
// Show seeds in the console
66+
for (const seedFile of seedFiles) {
67+
try {
68+
let className = seedFile.split('/')[seedFile.split('/').length - 1];
69+
className = className.replace('.ts', '').replace('.js', '');
70+
className = className.split('-')[className.split('-').length - 1];
71+
log('\n' + chalk.gray.underline(`executing seed: `), chalk.green.bold(`${className}`));
72+
const seedFileObject: any = require(seedFile);
73+
await runSeed(seedFileObject[className]);
74+
} catch (error) {
75+
console.error('Could not run seed ', error);
76+
process.exit(1);
77+
}
78+
}
79+
80+
log('\n👍 ', chalk.gray.underline(`finished seeding`));
81+
process.exit(0);
82+
};
83+
84+
const handleError = (error) => {
85+
console.error(error);
86+
process.exit(1);
87+
};
88+
89+
run();

package-scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ module.exports = {
137137
script: series(
138138
'nps banner.seed',
139139
'nps config',
140-
runFast('./src/lib/seed/cli.ts')
140+
runFast('./commands/seed.ts')
141141
),
142142
description: 'Seeds generated records into the database'
143143
},

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
"@types/uuid": "^3.4.3",
5656
"@types/winston": "^2.3.7",
5757
"bcrypt": "3.0.1",
58-
"chalk": "^2.3.0",
58+
"chalk": "^2.4.1",
5959
"class-validator": "0.9.1",
60-
"commander": "^2.11.0",
60+
"commander": "^2.19.0",
6161
"compression": "^1.7.1",
6262
"copyfiles": "^2.1.0",
6363
"cors": "^2.8.4",
@@ -90,6 +90,7 @@
9090
"tslint": "^5.8.0",
9191
"typedi": "0.8.0",
9292
"typeorm": "^0.2.5",
93+
"typeorm-seeding": "^1.0.0-beta.6",
9394
"typeorm-typedi-extensions": "^0.2.1",
9495
"typescript": "3.0.3",
9596
"uuid": "^3.3.2",

src/database/factories/PetFactory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as Faker from 'faker';
2+
import { define } from 'typeorm-seeding';
23
import * as uuid from 'uuid';
34

45
import { Pet } from '../../../src/api/models/Pet';
5-
import { define } from '../../lib/seed';
66

77
define(Pet, (faker: typeof Faker) => {
88
const gender = faker.random.number(1);

src/database/factories/UserFactory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as Faker from 'faker';
2+
import { define } from 'typeorm-seeding';
23
import * as uuid from 'uuid';
34

45
import { User } from '../../../src/api/models/User';
5-
import { define } from '../../lib/seed';
66

77
define(User, (faker: typeof Faker, settings: { role: string }) => {
88
const gender = faker.random.number(1);

src/database/seeds/CreateBruce.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Connection } from 'typeorm';
2+
import { Factory, Seed } from 'typeorm-seeding';
23
import * as uuid from 'uuid';
34

45
import { User } from '../../../src/api/models/User';
5-
import { Factory, Seed } from '../../lib/seed/types';
66

77
export class CreateBruce implements Seed {
88

src/database/seeds/CreatePets.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Connection } from 'typeorm';
2+
import { Factory, Seed, times } from 'typeorm-seeding';
23

34
import { Pet } from '../../../src/api/models/Pet';
45
import { User } from '../../../src/api/models/User';
5-
import { Factory, Seed, times } from '../../lib/seed';
66

77
export class CreatePets implements Seed {
88

src/database/seeds/CreateUsers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { Factory, Seed } from 'typeorm-seeding';
12
import { Connection } from 'typeorm/connection/Connection';
23

34
import { User } from '../../../src/api/models/User';
4-
import { Factory, Seed } from '../../lib/seed/types';
55

66
export class CreateUsers implements Seed {
77

src/lib/seed/EntityFactory.ts

-103
This file was deleted.

src/lib/seed/cli.ts

-94
This file was deleted.

0 commit comments

Comments
 (0)