2020-07-29 17:11:41 +08:00
|
|
|
package tsgen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/logrusorgru/aurora"
|
2020-08-14 15:08:06 +08:00
|
|
|
"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"
|
2022-01-03 21:32:40 +08:00
|
|
|
"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")
|
2021-02-26 16:11:47 +08:00
|
|
|
webAPI := c.String("webapi")
|
2020-07-29 17:11:41 +08:00
|
|
|
caller := c.String("caller")
|
2021-02-26 16:11:47 +08:00
|
|
|
unwrapAPI := c.Bool("unwrap")
|
2020-07-29 17:11:41 +08:00
|
|
|
if len(apiFile) == 0 {
|
|
|
|
return errors.New("missing -api")
|
|
|
|
}
|
2021-01-11 15:10:51 +08:00
|
|
|
|
2020-07-29 17:11:41 +08:00
|
|
|
if len(dir) == 0 {
|
|
|
|
return errors.New("missing -dir")
|
|
|
|
}
|
|
|
|
|
2021-01-11 15:10:51 +08:00
|
|
|
api, err := parser.Parse(apiFile)
|
2020-07-29 17:11:41 +08:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(aurora.Red("Failed"))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-03 20:57:03 +08:00
|
|
|
api.Service = api.Service.JoinPrefix()
|
2022-01-03 21:32:40 +08:00
|
|
|
logx.Must(pathx.MkdirIfNotExist(dir))
|
2021-02-26 16:11:47 +08:00
|
|
|
logx.Must(genHandler(dir, webAPI, caller, api, unwrapAPI))
|
2020-08-14 15:08:06 +08:00
|
|
|
logx.Must(genComponents(dir, api))
|
2020-07-29 17:11:41 +08:00
|
|
|
|
|
|
|
fmt.Println(aurora.Green("Done."))
|
|
|
|
return nil
|
|
|
|
}
|