forked from graphql-hive/graphql-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatch-document-filename.ts
233 lines (216 loc) · 6.61 KB
/
match-document-filename.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
import { basename, extname } from 'path';
import { existsSync } from 'fs';
import { FragmentDefinitionNode, Kind, OperationDefinitionNode } from 'graphql';
import { CaseStyle, convertCase } from '../utils';
import { GraphQLESLintRule } from '../types';
import { GraphQLESTreeNode } from '../estree-parser';
const MATCH_EXTENSION = 'MATCH_EXTENSION';
const MATCH_STYLE = 'MATCH_STYLE';
const ACCEPTED_EXTENSIONS: ['.gql', '.graphql'] = ['.gql', '.graphql'];
const CASE_STYLES: CaseStyle[] = ['camelCase', 'PascalCase', 'snake_case', 'UPPER_CASE', 'kebab-case'];
type PropertySchema = {
style?: CaseStyle;
suffix?: string;
};
export type MatchDocumentFilenameRuleConfig = {
fileExtension?: typeof ACCEPTED_EXTENSIONS[number];
query?: CaseStyle | PropertySchema;
mutation?: CaseStyle | PropertySchema;
subscription?: CaseStyle | PropertySchema;
fragment?: CaseStyle | PropertySchema;
};
const schemaOption = {
oneOf: [{ $ref: '#/definitions/asString' }, { $ref: '#/definitions/asObject' }],
};
const rule: GraphQLESLintRule<[MatchDocumentFilenameRuleConfig]> = {
meta: {
type: 'suggestion',
docs: {
category: 'Operations',
description: 'This rule allows you to enforce that the file name should match the operation name.',
url: `https://github.com/dotansimha/graphql-eslint/blob/master/docs/rules/match-document-filename.md`,
examples: [
{
title: 'Correct',
usage: [{ fileExtension: '.gql' }],
code: /* GraphQL */ `
# user.gql
type User {
id: ID!
}
`,
},
{
title: 'Correct',
usage: [{ query: 'snake_case' }],
code: /* GraphQL */ `
# user_by_id.gql
query UserById {
userById(id: 5) {
id
name
fullName
}
}
`,
},
{
title: 'Correct',
usage: [{ fragment: { style: 'kebab-case', suffix: '.fragment' } }],
code: /* GraphQL */ `
# user-fields.fragment.gql
fragment user_fields on User {
id
email
}
`,
},
{
title: 'Correct',
usage: [{ mutation: { style: 'PascalCase', suffix: 'Mutation' } }],
code: /* GraphQL */ `
# DeleteUserMutation.gql
mutation DELETE_USER {
deleteUser(id: 5)
}
`,
},
{
title: 'Incorrect',
usage: [{ fileExtension: '.graphql' }],
code: /* GraphQL */ `
# post.gql
type Post {
id: ID!
}
`,
},
{
title: 'Incorrect',
usage: [{ query: 'PascalCase' }],
code: /* GraphQL */ `
# user-by-id.gql
query UserById {
userById(id: 5) {
id
name
fullName
}
}
`,
},
],
configOptions: [
{
query: 'kebab-case',
mutation: 'kebab-case',
subscription: 'kebab-case',
fragment: 'kebab-case',
},
],
},
messages: {
[MATCH_EXTENSION]: `File extension "{{ fileExtension }}" don't match extension "{{ expectedFileExtension }}"`,
[MATCH_STYLE]: `Unexpected filename "{{ filename }}". Rename it to "{{ expectedFilename }}"`,
},
schema: {
definitions: {
asString: {
enum: CASE_STYLES,
description: `One of: ${CASE_STYLES.map(t => `\`${t}\``).join(', ')}`,
},
asObject: {
type: 'object',
additionalProperties: false,
minProperties: 1,
properties: {
style: { enum: CASE_STYLES },
suffix: { type: 'string' },
},
},
},
type: 'array',
minItems: 1,
maxItems: 1,
items: {
type: 'object',
additionalProperties: false,
minProperties: 1,
properties: {
fileExtension: { enum: ACCEPTED_EXTENSIONS },
query: schemaOption,
mutation: schemaOption,
subscription: schemaOption,
fragment: schemaOption,
},
},
},
},
create(context) {
const options: MatchDocumentFilenameRuleConfig = context.options[0] || {
fileExtension: null,
};
const filePath = context.getFilename();
const isVirtualFile = !existsSync(filePath);
if (process.env.NODE_ENV !== 'test' && isVirtualFile) {
// Skip validation for code files
return {};
}
const fileExtension = extname(filePath);
const filename = basename(filePath, fileExtension);
return {
Document(documentNode) {
if (options.fileExtension && options.fileExtension !== fileExtension) {
context.report({
// Report on first character
loc: { column: 0, line: 1 },
messageId: MATCH_EXTENSION,
data: {
fileExtension,
expectedFileExtension: options.fileExtension,
},
});
}
const firstOperation = documentNode.definitions.find(
n => n.kind === Kind.OPERATION_DEFINITION
) as GraphQLESTreeNode<OperationDefinitionNode>;
const firstFragment = documentNode.definitions.find(
n => n.kind === Kind.FRAGMENT_DEFINITION
) as GraphQLESTreeNode<FragmentDefinitionNode>;
const node = firstOperation || firstFragment;
if (!node) {
return;
}
const docName = node.name?.value;
if (!docName) {
return;
}
const docType = 'operation' in node ? node.operation : 'fragment';
let option = options[docType];
if (!option) {
// Config not provided
return;
}
if (typeof option === 'string') {
option = { style: option } as PropertySchema;
}
const expectedExtension = options.fileExtension || fileExtension;
const expectedFilename =
(option.style ? convertCase(option.style, docName) : filename) + (option.suffix || '') + expectedExtension;
const filenameWithExtension = filename + expectedExtension;
if (expectedFilename !== filenameWithExtension) {
context.report({
// Report on first character
loc: { column: 0, line: 1 },
messageId: MATCH_STYLE,
data: {
expectedFilename,
filename: filenameWithExtension,
},
});
}
},
};
},
};
export default rule;