-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules.ts
448 lines (407 loc) · 14 KB
/
modules.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
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
import * as ts from 'typescript'
import { factory } from 'typescript'
export class GodClass {
constructor (
private prevText = '',
private imports: string[] = [],
private hasReadme = false,
private hasAction = false,
private parameters: ts.ObjectLiteralExpression | null = null,
private template = '',
private dataMethodReturnValue: ts.ObjectLiteralElementLike | null = null,
private methods: ts.ObjectLiteralElementLike | null = null,
private knobVariables: KnobVariables = []
) {}
getAll = () => {
return {
imports: this.imports,
hasReadme: this.hasReadme,
hasAction: this.hasAction,
parameters: this.parameters,
template: this.template,
dataMethodReturnValue: this.dataMethodReturnValue,
methods: this.methods,
knobVariables: this.knobVariables
}
}
addImport = (importText: string) => { this.imports = this.imports.concat(importText) }
setHasReadme = (hasReadme: boolean) => { this.hasReadme = hasReadme }
setHasAction = (hasAction: boolean) => { this.hasAction = hasAction }
setParameters = (parameters: ts.ObjectLiteralExpression) => { this.parameters = parameters }
setTemplate = (template: string) => { this.template = template }
setDataMethodReturnValue = (dataMethodReturnValue: ts.ObjectLiteralElementLike) => { this.dataMethodReturnValue = dataMethodReturnValue }
setMethods = (methods: ts.ObjectLiteralElementLike) => { this.methods = methods }
// SB コンポーネント名
isPrevStoriesOf = (text: string) => text === 'Identifier: storiesOf'
includesStorybook = (text: string) => text.includes('storybook')
// parameters
includesInfoOrNotes = (text: string) => text.includes('info') || text.includes('notes')
// template
// html タグで始まるか否か
isVueTemplate = (text: string) => text.substring(1).trim().startsWith('<')
// data()
isDataMethod = (text: string) => text.trim().startsWith('data')
// methods
isMethods = (text: string) => text.trim().startsWith('methods')
// knobVariables
// 関数であることを確かめる
isSomeCallExpression = (identifier: string, text: string) => text.trim().startsWith(`${identifier}(`)
// html
// HTML か否か。add() の第一引数の StoryName で判断する
isPrevIdentifierAdd = (text: string) => text === 'Identifier: add'
// knob
addKnobVariable = (args: any, text: string) => {
// 初期値に text を入れておく
let type: keyof typeof KnobFunc | null = null
if (this.isSomeCallExpression(KnobFunc.text, text)) {
type = KnobFunc.text
} else if (this.isSomeCallExpression(KnobFunc.select, text)) {
type = KnobFunc.select
} else if (this.isSomeCallExpression(KnobFunc.number, text)) {
type = KnobFunc.number
} else if (this.isSomeCallExpression(KnobFunc.boolean, text)) {
type = KnobFunc.boolean
} else if (this.isSomeCallExpression(KnobFunc.object, text)) {
type = KnobFunc.object
}
if (type === null) {
return
}
this.knobVariables = this.knobVariables.concat({ type, args })
}
}
export const KnobFunc = {
text: 'text',
select: 'select',
number: 'number',
boolean: 'boolean',
object: 'object'
} as const
export type KnobVariable = {type: keyof typeof KnobFunc, args: any}
export type KnobVariables = KnobVariable[]
export const syntaxKindToName = (kind: ts.SyntaxKind): string => {
return ts.SyntaxKind[kind]
}
// ------------------------------
// import
// ------------------------------
export const getFilteredImport = (imports: string[], { hasReadme }: { hasReadme: boolean }): string => {
// filter で不要な import を削除し、
// concat で必要な import を追加する
let filtered: string[] = imports
.filter(item => !item.includes('storiesOf'))
.filter(item => !item.includes('storybook-addon-vue-info'))
if (hasReadme) {
filtered = filtered
.filter(item => !item.includes('README'))
.concat('import README from \'./README.md\'')
}
return filtered.join('\n')
.replace('withKnobs,', '')
.replace("import { withKnobs } from '@storybook/addon-knobs'\n", '') // knob は `preview.js`で読み込むので不要
.replace('text,', '') // knob の text を削除
.replace("'../../../CHANGELOG.md'", "'../../CHANGELOG.md'") // knob の text を削除
.replace("'../../../CONTRIBUTE.md'", "'../../CONTRIBUTE.md'") // knob の text を削除
// .replace('../../values', '../values') // values の import の階層を浅くする
}
// ------------------------------
// export default
// ------------------------------
export const getExportAssignmentProperties = ({
title,
component,
knobVariables
}: { title: string, component: string, knobVariables: KnobVariables },
{
hasReadme,
isHTML
}: { hasReadme: boolean; isHTML: boolean }
) => {
const properties: ts.ObjectLiteralElementLike[] = [
ts.factory.createPropertyAssignment(
ts.factory.createIdentifier('title'),
ts.factory.createStringLiteral(title)
)
]
// Vue の場合だけコンポーネント名を指定する
if (!isHTML) {
properties.push(
ts.factory.createPropertyAssignment(
ts.factory.createIdentifier('component'),
ts.factory.createIdentifier(component)
)
)
}
if (hasReadme) {
const parameters = factory.createPropertyAssignment(
factory.createIdentifier('parameters'),
factory.createObjectLiteralExpression(
[
factory.createPropertyAssignment(
factory.createIdentifier('notes'),
factory.createObjectLiteralExpression(
[factory.createShorthandPropertyAssignment(
factory.createIdentifier('README'),
undefined
)],
false
)
),
factory.createPropertyAssignment(
factory.createIdentifier('docs'),
factory.createObjectLiteralExpression(
[factory.createPropertyAssignment(
factory.createIdentifier('extractComponentDescription'),
factory.createParenthesizedExpression(factory.createArrowFunction(
undefined,
undefined,
[
factory.createParameterDeclaration(
undefined,
undefined,
undefined,
factory.createIdentifier('_'),
undefined,
undefined,
undefined
),
factory.createParameterDeclaration(
undefined,
undefined,
undefined,
factory.createObjectBindingPattern([factory.createBindingElement(
undefined,
undefined,
factory.createIdentifier('notes'),
undefined
)]),
undefined,
undefined,
undefined
)
],
undefined,
factory.createToken(ts.SyntaxKind.EqualsGreaterThanToken),
factory.createPropertyAccessChain(
factory.createIdentifier('notes'),
factory.createToken(ts.SyntaxKind.QuestionDotToken),
factory.createIdentifier('README')
)
))
)],
true
)
)
],
true
)
)
properties.push(parameters)
}
// knob select
const selects = knobVariables.filter(item => item.type === KnobFunc.select)
if (selects.length > 0) {
const props = selects.map(({ args }) => {
const isOptionString = !!args[1].text // args[1] が 配列なら false になる
const options = isOptionString
? factory.createIdentifier(args[1].text)
: args[1]
return (
factory.createPropertyAssignment(
factory.createIdentifier(args[0].text),
factory.createObjectLiteralExpression(
[
factory.createPropertyAssignment(
factory.createIdentifier('options'),
options
),
factory.createPropertyAssignment(
factory.createIdentifier('control'),
factory.createObjectLiteralExpression(
[factory.createPropertyAssignment(
factory.createIdentifier('type'),
factory.createStringLiteral('select')
)],
false
)
)
],
true
)
))
}
)
const argTypes = factory.createPropertyAssignment(
factory.createIdentifier('argTypes'),
factory.createObjectLiteralExpression(
props,
true
)
)
properties.push(argTypes)
}
return properties
}
export const createExportAssignmentAst = (node: ts.ObjectLiteralElementLike[]) => factory.createExportAssignment(
undefined,
undefined,
undefined,
factory.createObjectLiteralExpression(
node,
true
)
)
// const Template = () => {...}
export const createTemplateVariableStatementAst = ({ methods, component, template, isHTML }: { methods: ts.ObjectLiteralElementLike | null; component: string; template: string; isHTML: boolean }) => {
const getAdditionalPropertiesOfTemplate = ({ methods }: { methods: ts.ObjectLiteralElementLike | null }) => {
const props = []
if (methods) {
props.push(methods)
}
return props
}
const additionalPropertiesOfTemplate = getAdditionalPropertiesOfTemplate({ methods })
const properties = [
factory.createPropertyAssignment(
factory.createIdentifier('props'),
factory.createCallExpression(
factory.createPropertyAccessExpression(
factory.createIdentifier('Object'),
factory.createIdentifier('keys')
),
undefined,
[factory.createIdentifier('argTypes')]
)
),
factory.createPropertyAssignment(
factory.createIdentifier('template'),
factory.createNoSubstitutionTemplateLiteral(template)
),
...additionalPropertiesOfTemplate
]
if (!isHTML) {
properties.unshift(
factory.createPropertyAssignment(
factory.createIdentifier('components'),
factory.createObjectLiteralExpression(
[factory.createShorthandPropertyAssignment(
factory.createIdentifier(component),
undefined
)],
false
)
)
)
}
return factory.createVariableStatement(
undefined,
factory.createVariableDeclarationList(
[factory.createVariableDeclaration(
factory.createIdentifier('Template'),
undefined,
undefined,
factory.createArrowFunction(
undefined,
undefined,
[
factory.createParameterDeclaration(
undefined,
undefined,
undefined,
factory.createIdentifier('args'),
undefined,
undefined,
undefined
),
factory.createParameterDeclaration(
undefined,
undefined,
undefined,
factory.createObjectBindingPattern([factory.createBindingElement(
undefined,
undefined,
factory.createIdentifier('argTypes'),
undefined
)]),
undefined,
undefined,
undefined
)
],
undefined,
factory.createToken(ts.SyntaxKind.EqualsGreaterThanToken),
factory.createParenthesizedExpression(factory.createObjectLiteralExpression(
properties,
true
))
)
)],
ts.NodeFlags.Const
)
)
}
const customCreatePropertyAssignment = (key: string, value: string, propType: 'string' | 'number' | 'boolean' = 'string') => {
let propValue = null
switch (propType) {
case 'string' :
propValue = factory.createStringLiteral(value)
break
case 'number' :
propValue = factory.createNumericLiteral(value)
break
case 'boolean' :
propValue = value === 'true' ? factory.createTrue() : factory.createFalse()
break
default:
break
}
if (propValue === null) {
throw new Error('propValue is null')
}
return factory.createPropertyAssignment(
factory.createIdentifier(key),
propValue
)
}
// Default.args = {} のオブジェクトのプロパティを作成する
export const getArgsAst = ({
dataMethodReturnValue,
knobVariables
}: { dataMethodReturnValue: ts.ObjectLiteralElementLike | null, knobVariables: KnobVariables }) => {
let args: any = []
if (dataMethodReturnValue) {
args = args.concat((dataMethodReturnValue as any).properties)
}
// Knob の text, number ,boolean, object で定義された値を args に移動する
if (knobVariables.length > 0) {
args = args.concat(
knobVariables.map(
({ type, args }) => {
const key = args[0].text
if (type === KnobFunc.text) {
return customCreatePropertyAssignment(key, args[1].text)
} else if (type === KnobFunc.number) {
return customCreatePropertyAssignment(key, args[1].text, 'number')
} else if (type === KnobFunc.boolean) {
const value = syntaxKindToName(args[1].kind) === 'TrueKeyword' ? 'true' : 'false'
return customCreatePropertyAssignment(key, value, 'boolean')
} else if (type === KnobFunc.object) {
return factory.createPropertyAssignment(
factory.createIdentifier(key),
args[1]
)
}
return false
}
).filter(Boolean)
)
}
args = args.filter((item: any) => !!item)
const hasArgs = Object.entries(args).length > 0
const props = hasArgs ? args : []
const isMultiLine = hasArgs
return factory.createObjectLiteralExpression(
props,
isMultiLine
)
}