forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormat.ts
74 lines (55 loc) · 1.72 KB
/
Format.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
import { arg, Command, format, formatms, formatSchema, HelpError, validate } from '@prisma/internals'
import { getSchemaPathAndPrint } from '@prisma/migrate'
import fs from 'fs'
import { bold, dim, red, underline } from 'kleur/colors'
/**
* $ prisma format
*/
export class Format implements Command {
public static new(): Format {
return new Format()
}
private static help = format(`
Format a Prisma schema.
${bold('Usage')}
${dim('$')} prisma format [options]
${bold('Options')}
-h, --help Display this help message
--schema Custom path to your Prisma schema
${bold('Examples')}
With an existing Prisma schema
${dim('$')} prisma format
Or specify a Prisma schema path
${dim('$')} prisma format --schema=./schema.prisma
`)
public async parse(argv: string[]): Promise<string | Error> {
const before = Math.round(performance.now())
const args = arg(argv, {
'--help': Boolean,
'-h': '--help',
'--schema': String,
'--telemetry-information': String,
})
if (args instanceof Error) {
return this.help(args.message)
}
if (args['--help']) {
return this.help()
}
const schemaPath = await getSchemaPathAndPrint(args['--schema'])
const output = await formatSchema({ schemaPath })
// Validate whether the formatted output is a valid schema
validate({
datamodel: output,
})
fs.writeFileSync(schemaPath, output)
const after = Math.round(performance.now())
return `Formatted ${underline(schemaPath)} in ${formatms(after - before)} 🚀`
}
public help(error?: string): string | HelpError {
if (error) {
return new HelpError(`\n${bold(red(`!`))} ${error}\n${Format.help}`)
}
return Format.help
}
}