-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtypescript.go
326 lines (311 loc) · 9.54 KB
/
typescript.go
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
package gotsrpc
import (
"errors"
"go/ast"
"sort"
"strings"
"github.com/iancoleman/strcase"
"github.com/foomo/gotsrpc/v2/config"
)
func (f *Field) tsName() string {
n := f.Name
if f.JSONInfo != nil && len(f.JSONInfo.Name) > 0 {
n = f.JSONInfo.Name
}
return n
}
var tsTypeAliases = map[string]string{
"time.Time": "number",
}
func (v *Value) tsType(mappings config.TypeScriptMappings, scalars map[string]*Scalar, structs map[string]*Struct, ts *code, jsonInfo *JSONInfo) {
switch {
case jsonInfo != nil && len(jsonInfo.Type) > 0:
ts.app(jsonInfo.Type)
case v.Map != nil:
ts.app("Record<")
if v.Map.Key != nil {
v.Map.Key.tsType(mappings, scalars, structs, ts, nil)
} else {
ts.app(v.Map.KeyType)
}
ts.app(",")
v.Map.Value.tsType(mappings, scalars, structs, ts, nil)
ts.app(">")
if jsonInfo == nil || !jsonInfo.OmitEmpty {
ts.app("|null")
}
case v.Array != nil:
if v.Array.Value.ScalarType != ScalarTypeByte {
ts.app("Array<")
}
v.Array.Value.tsType(mappings, scalars, structs, ts, nil)
if v.Array.Value.ScalarType != ScalarTypeByte {
ts.app(">")
}
if jsonInfo == nil || !jsonInfo.OmitEmpty {
ts.app("|null")
}
case v.Scalar != nil:
if v.Scalar.Package != "" {
mapping, ok := mappings[v.Scalar.Package]
var tsModule string
if ok {
tsModule = mapping.TypeScriptModule
}
tsType := tsModule + "." + tsTypeFromScalarType(v.ScalarType)
if value, ok := tsTypeAliases[tsType]; ok {
tsType = value
}
ts.app(tsType)
if v.IsPtr && (jsonInfo == nil || !jsonInfo.OmitEmpty) {
ts.app("|null")
}
return
}
ts.app(tsTypeFromScalarType(v.Scalar.Type))
case v.StructType != nil:
if v.StructType.Package != "" {
mapping, ok := mappings[v.StructType.Package]
var tsModule string
if ok {
tsModule = mapping.TypeScriptModule
}
ts.app(tsModule + "." + v.StructType.Name)
hiddenStruct, isHiddenStruct := structs[v.StructType.FullName()]
if isHiddenStruct && (hiddenStruct.Array != nil || hiddenStruct.Map != nil) && (jsonInfo == nil || !jsonInfo.OmitEmpty) {
ts.app("|null")
} else if v.IsPtr && (jsonInfo == nil || !jsonInfo.OmitEmpty) {
ts.app("|null")
}
return
}
ts.app(v.StructType.Name)
case v.Struct != nil:
// v.Struct.Value.tsType(mappings, ts)
ts.l("{").ind(1)
renderStructFields(v.Struct.Fields, mappings, scalars, structs, ts)
ts.ind(-1).app("}")
if v.IsPtr && (jsonInfo == nil || !jsonInfo.OmitEmpty) {
ts.app("|null")
}
case len(v.ScalarType) > 0:
ts.app(tsTypeFromScalarType(v.ScalarType))
if v.IsPtr && (jsonInfo == nil || !jsonInfo.OmitEmpty) {
ts.app("|null")
}
default:
ts.app("any")
}
}
func tsTypeFromScalarType(scalarType ScalarType) string {
switch scalarType { //nolint:exhaustive
case ScalarTypeByte:
return "string"
case ScalarTypeBool:
return "boolean"
}
return string(scalarType)
}
func renderStructFields(fields []*Field, mappings config.TypeScriptMappings, scalars map[string]*Scalar, structs map[string]*Struct, ts *code) {
for _, f := range fields {
if len(f.Name) == 0 {
continue
} else if f.JSONInfo != nil && f.JSONInfo.Ignore {
continue
}
ts.app(f.tsName())
if f.JSONInfo != nil && f.JSONInfo.OmitEmpty {
ts.app("?")
}
ts.app(":")
f.Value.tsType(mappings, scalars, structs, ts, f.JSONInfo)
ts.app(";")
ts.nl()
}
}
func renderTypescriptStruct(str *Struct, mappings config.TypeScriptMappings, scalars map[string]*Scalar, structs map[string]*Struct, ts *code) error {
ts.l("// " + str.FullName())
switch {
case str.Array != nil:
ts.app("export type " + str.Name + " = Array<")
str.Array.Value.tsType(mappings, scalars, structs, ts, nil)
ts.app(">")
ts.nl()
case str.Map != nil:
ts.app("export type " + str.Name + " = Record<")
if str.Map.Key != nil {
str.Map.Key.tsType(mappings, scalars, structs, ts, nil)
} else {
ts.app(str.Map.KeyType)
}
ts.app(",")
str.Map.Value.tsType(mappings, scalars, structs, ts, nil)
ts.app(">")
ts.nl()
// special handling of inline only structs
case len(str.UnionFields) > 0:
if len(str.Fields) > 0 || len(str.InlineFields) > 0 {
return errors.New("no fields or inline fields are supported when using union")
}
switch {
case str.UnionFields[0].Value.StructType != nil:
ts.app("export type " + str.Name + " = ")
var isUndefined bool
for i, unionField := range str.UnionFields {
if i > 0 {
ts.app(" | ")
}
unionField.Value.tsType(mappings, scalars, structs, ts, &JSONInfo{OmitEmpty: true})
if unionField.Value.IsPtr {
isUndefined = true
}
}
if isUndefined {
ts.app(" | undefined")
}
ts.nl()
case str.UnionFields[0].Value.Scalar != nil:
ts.app("export const " + str.Name + " = ")
ts.app("{ ")
for i, field := range str.UnionFields {
if i > 0 {
ts.app(", ")
}
ts.app("...")
field.Value.tsType(mappings, scalars, structs, ts, &JSONInfo{OmitEmpty: true})
}
ts.app(" }")
ts.nl()
ts.app("export type " + str.Name + " = typeof " + str.Name)
ts.nl()
default:
return errors.New("could not resolve this union type")
}
case len(str.InlineFields) > 0:
ts.app("export interface " + str.Name + " extends ")
for i, inlineField := range str.InlineFields {
if i > 0 {
ts.app(", ")
}
if inlineField.Value.IsPtr {
ts.app("Partial<")
}
inlineField.Value.tsType(mappings, scalars, structs, ts, &JSONInfo{OmitEmpty: true})
if inlineField.Value.IsPtr {
ts.app(">")
}
ts.app(" ")
}
ts.app("{")
ts.nl()
ts.ind(1)
renderStructFields(str.Fields, mappings, scalars, structs, ts)
ts.ind(-1).l("}")
default:
ts.l("export interface " + str.Name + " {").ind(1)
renderStructFields(str.Fields, mappings, scalars, structs, ts)
ts.ind(-1).l("}")
}
return nil
}
func renderTypescriptStructsToPackages(
structs map[string]*Struct,
mappings config.TypeScriptMappings,
constantTypes map[string]map[string]interface{},
scalarTypes map[string]*Scalar,
mappedTypeScript map[string]map[string]*code,
) (err error) {
codeMap := map[string]map[string]*code{}
for _, mapping := range mappings {
codeMap[mapping.GoPackage] = map[string]*code{} // newCode().l("module " + mapping.TypeScriptModule + " {").ind(1)
}
for name, str := range structs {
if str == nil {
err = errors.New("could not resolve: " + name)
return
}
packageCodeMap, ok := codeMap[str.Package]
if !ok {
err = errors.New("missing code mapping for go package : " + str.Package + " => you have to add a mapping from this go package to a TypeScript module in your build-config.yml in the mappings section")
return
}
packageCodeMap[str.Name] = newCode(" ")
err = renderTypescriptStruct(str, mappings, scalarTypes, structs, packageCodeMap[str.Name])
if err != nil {
return
}
}
for packageName, packageConstantTypes := range constantTypes {
if len(packageConstantTypes) > 0 {
packageCodeMap, ok := codeMap[packageName]
if !ok {
err = errors.New("missing code mapping for go package : " + packageName + " => you have to add a mapping from this go package to a TypeScript module in your build-config.yml in the mappings section")
return
}
for packageConstantTypeName, packageConstantTypeValues := range packageConstantTypes {
packageCodeMap[packageConstantTypeName] = newCode(" ")
packageCodeMap[packageConstantTypeName].l("// " + packageName + "." + packageConstantTypeName)
if packageConstantTypeValuesList, ok := packageConstantTypeValues.(map[string]*ast.BasicLit); ok {
keys := make([]string, 0, len(packageConstantTypeValuesList))
for k := range packageConstantTypeValuesList {
keys = append(keys, k)
}
sort.Strings(keys)
packageCodeMap[packageConstantTypeName].l("export enum " + packageConstantTypeName + " {").ind(1)
for _, k := range keys {
enum := strings.TrimPrefix(strcase.ToCamel(k), packageConstantTypeName)
packageCodeMap[packageConstantTypeName].l(enum + " = " + packageConstantTypeValuesList[k].Value + ",")
}
packageCodeMap[packageConstantTypeName].ind(-1).l("}")
} else if packageConstantTypeValuesString, ok := packageConstantTypeValues.(string); ok {
packageCodeMap[packageConstantTypeName].l("export type " + packageConstantTypeName + " = " + packageConstantTypeValuesString)
}
}
}
}
ensureCodeInPackage := func(goPackage string) {
_, ok := mappedTypeScript[goPackage]
if !ok {
mappedTypeScript[goPackage] = map[string]*code{}
}
}
for _, mapping := range mappings {
for structName, structCode := range codeMap[mapping.GoPackage] {
ensureCodeInPackage(mapping.GoPackage)
mappedTypeScript[mapping.GoPackage][structName] = structCode
}
}
return nil
}
func split(str string, seps []string) []string {
var res []string
strs := []string{str}
for _, sep := range seps {
var nextStrs []string
for _, str := range strs {
nextStrs = append(nextStrs, strings.Split(str, sep)...)
}
strs = nextStrs
res = nextStrs
}
return res
}
func RenderTypeScriptServices(services ServiceList, mappings config.TypeScriptMappings, scalars map[string]*Scalar, structs map[string]*Struct, target *config.Target) (typeScript string, err error) {
ts := newCode(" ")
for _, service := range services {
// Check if we should render this service as ts rcp
// Note: remove once there's a separate gorcp generator
if !target.IsTSRPC(service.Name) {
continue
}
err = renderTypescriptClient(service, mappings, scalars, structs, ts)
if err != nil {
return
}
}
typeScript = ts.string()
return
}
func getTSHeaderComment() string {
return "/* eslint:disable */\n// Code generated by gotsrpc https://github.com/foomo/gotsrpc/v2 - DO NOT EDIT.\n"
}