gospt/cmd/tracks.go

31 lines
667 B
Go
Raw Normal View History

2023-01-09 15:52:21 -08:00
package cmd
import (
2023-01-11 09:45:29 -08:00
"os"
"path/filepath"
2023-03-09 23:48:02 -08:00
"git.asdf.cafe/abs3nt/gospt/src/tui"
2023-01-09 15:52:21 -08:00
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(tracksCmd)
}
var tracksCmd = &cobra.Command{
Use: "tracks",
Short: "Opens saved tracks",
Long: `Uses TUI to open a list of saved tracks`,
2023-01-11 09:45:29 -08:00
RunE: func(cmd *cobra.Command, args []string) error {
configDir, _ := os.UserConfigDir()
2023-02-17 16:08:25 -06:00
if commands.ActiveDeviceExists(ctx) {
return tui.StartTea(ctx, commands, "tracks")
2023-01-11 13:57:47 -08:00
}
2023-01-11 09:45:29 -08:00
if _, err := os.Stat(filepath.Join(configDir, "gospt/device.json")); err != nil {
2023-02-17 16:08:25 -06:00
return tui.StartTea(ctx, commands, "devices")
2023-01-11 09:45:29 -08:00
}
2023-02-17 16:08:25 -06:00
return tui.StartTea(ctx, commands, "tracks")
2023-01-09 15:52:21 -08:00
},
}