summaryrefslogtreecommitdiff
path: root/main.go
blob: 48121a737ccaa59381fc5d41e0a79646492881e0 (plain)
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
package main

import (
	"log/slog"
	"os"
	"time"

	"github.com/ChausseBenjamin/termpicker/internal/logging"
	"github.com/ChausseBenjamin/termpicker/internal/switcher"
	"github.com/ChausseBenjamin/termpicker/internal/util"
	tea "github.com/charmbracelet/bubbletea"
	"github.com/urfave/cli/v2"
)

var ( // Set by the build system
	version = "DEVELOPMENT-SNAPSHOT"
	date    = ""
)

func AppAction(ctx *cli.Context) error {
	logfile := logging.Setup(ctx.String("logfile"))
	defer logfile.Close()

	slog.Info("Starting Termpicker")

	sw := switcher.New()

	if colorStr := ctx.String("color"); colorStr != "" {
		sw.NewNotice(sw.SetColorFromText(colorStr))
	}

	p := tea.NewProgram(sw)
	if _, err := p.Run(); err != nil {
		return err
	}
	return nil
}

func main() {
	compileDate, _ := time.Parse(time.RFC3339, date)
	app := &cli.App{
		Name:   "Termpicker",
		Usage:  "A terminal-based color picker",
		Action: AppAction,
		Authors: []*cli.Author{
			{Name: "Benjamin Chausse", Email: "benjamin@chausse.xyz"},
		},
		Version:  version,
		Flags:    AppFlags,
		Compiled: compileDate,
	}
	if err := app.Run(os.Args); err != nil {
		slog.Error("Program crashed", util.ErrKey, err.Error())
		os.Exit(1)
	}
}