go-zero/tools/goctl/api/tsgen/gen.go

43 lines
950 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package tsgen
import (
"errors"
"fmt"
"github.com/logrusorgru/aurora"
"github.com/tal-tech/go-zero/core/logx"
2020-08-08 16:40:10 +08:00
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
"github.com/tal-tech/go-zero/tools/goctl/util/pathx"
2020-07-29 17:11:41 +08:00
"github.com/urfave/cli"
)
2021-03-08 18:23:12 +08:00
// TsCommand provides the entry to generate typescript codes
2020-07-29 17:11:41 +08:00
func TsCommand(c *cli.Context) error {
apiFile := c.String("api")
dir := c.String("dir")
webAPI := c.String("webapi")
2020-07-29 17:11:41 +08:00
caller := c.String("caller")
unwrapAPI := c.Bool("unwrap")
2020-07-29 17:11:41 +08:00
if len(apiFile) == 0 {
return errors.New("missing -api")
}
2020-07-29 17:11:41 +08:00
if len(dir) == 0 {
return errors.New("missing -dir")
}
api, err := parser.Parse(apiFile)
2020-07-29 17:11:41 +08:00
if err != nil {
fmt.Println(aurora.Red("Failed"))
return err
}
api.Service = api.Service.JoinPrefix()
logx.Must(pathx.MkdirIfNotExist(dir))
logx.Must(genHandler(dir, webAPI, caller, api, unwrapAPI))
logx.Must(genComponents(dir, api))
2020-07-29 17:11:41 +08:00
fmt.Println(aurora.Green("Done."))
return nil
}