package tsgen import ( "errors" "fmt" "github.com/logrusorgru/aurora" "github.com/tal-tech/go-zero/core/logx" "github.com/tal-tech/go-zero/tools/goctl/api/parser" "github.com/tal-tech/go-zero/tools/goctl/util" "github.com/urfave/cli" ) func TsCommand(c *cli.Context) error { apiFile := c.String("api") dir := c.String("dir") webApi := c.String("webapi") caller := c.String("caller") unwrapApi := c.Bool("unwrap") if len(apiFile) == 0 { return errors.New("missing -api") } if len(dir) == 0 { return errors.New("missing -dir") } api, err := parser.Parse(apiFile) if err != nil { fmt.Println(aurora.Red("Failed")) return err } logx.Must(util.MkdirIfNotExist(dir)) logx.Must(genHandler(dir, webApi, caller, api, unwrapApi)) logx.Must(genComponents(dir, api)) fmt.Println(aurora.Green("Done.")) return nil }