forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Format.ts
97 lines (75 loc) · 2.61 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import fs from 'node:fs/promises'
import path from 'node:path'
import { arg, Command, format, formatms, formatSchema, HelpError, validate } from '@prisma/internals'
import { getSchemaPathAndPrint } from '@prisma/migrate'
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,
'--check': Boolean,
})
if (args instanceof Error) {
return this.help(args.message)
}
if (args['--help']) {
return this.help()
}
const { schemaPath, schemas } = await getSchemaPathAndPrint(args['--schema'])
const formattedDatamodel = await formatSchema({ schemas })
// Validate whether the formatted output is a valid schema
validate({
schemas: formattedDatamodel,
})
if (args['--check']) {
for (const [filename, formattedSchema] of formattedDatamodel) {
const originalSchemaTuple = schemas.find((s) => s[0] === filename)
if (!originalSchemaTuple) {
return new HelpError(`${bold(red(`!`))} The schema ${underline(filename)} is not found in the schema list.`)
}
const [, originalSchema] = originalSchemaTuple
if (originalSchema !== formattedSchema) {
return new HelpError(
`${bold(red(`!`))} There are unformatted files. Run ${underline('prisma format')} to format them.`,
)
}
}
return 'All files are formatted correctly!'
}
for (const [filename, data] of formattedDatamodel) {
await fs.writeFile(filename, data)
}
const after = Math.round(performance.now())
const schemaRelativePath = path.relative(process.cwd(), schemaPath)
return `Formatted ${underline(schemaRelativePath)} 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
}
}