aboutsummaryrefslogtreecommitdiffstats
path: root/bug/label.go
blob: 058e4572fd7059f0f20d09e50e6d7e24ebaf3810 (plain) (blame)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package bug

import (
	"fmt"
	"io"
	"strings"

	"github.com/MichaelMure/git-bug/util/text"
)

type Color struct {
	red uint8
	green uint8
	blue uint8
}

type Label string

func (l Label) String() string {
	return string(l)
}

func (l Label) Color() Color {
	label := string(l)
	id := 0

	// colors from: https://material-ui.com/style/color/
	colors := []Color{
		Color{red: 244, green: 67, blue: 54}, // red
		Color{red: 233, green: 30, blue: 99}, // pink
		Color{red: 156, green: 39, blue: 176}, // purple
		Color{red: 103, green: 58, blue: 183}, // deepPurple
		Color{red: 63, green: 81, blue: 181}, // indigo
		Color{red: 33, green: 150, blue: 243}, // blue
		Color{red: 3, green: 169, blue: 244}, // lightBlue
		Color{red: 0, green: 188, blue: 212}, // cyan
		Color{red: 0, green: 150, blue: 136}, // teal
		Color{red: 76, green: 175, blue: 80}, // green
		Color{red: 139, green: 195, blue: 74}, // lightGreen
		Color{red: 205, green: 220, blue: 57}, // lime
		Color{red: 255, green: 235, blue: 59}, // yellow
		Color{red: 255, green: 193, blue: 7}, // amber
		Color{red: 255, green: 152, blue: 0}, // orange
		Color{red: 255, green: 87, blue: 34}, // deepOrange
		Color{red: 121, green: 85, blue: 72}, // brown
		Color{red: 158, green: 158, blue: 158}, // grey
		Color{red: 96, green: 125, blue: 139}, // blueGrey
	}

	for pos, char := range label {
		id = (pos + id + int(char)) % len(colors)
	}

	return colors[id]
}

// UnmarshalGQL implements the graphql.Unmarshaler interface
func (l *Label) UnmarshalGQL(v interface{}) error {
	_, ok := v.(string)
	if !ok {
		return fmt.Errorf("labels must be strings")
	}

	*l = v.(Label)

	return nil
}

// MarshalGQL implements the graphql.Marshaler interface
func (l Label) MarshalGQL(w io.Writer) {
	_, _ = w.Write([]byte(`"` + l.String() + `"`))
}

func (l Label) Validate() error {
	str := string(l)

	if text.Empty(str) {
		return fmt.Errorf("empty")
	}

	if strings.Contains(str, "\n") {
		return fmt.Errorf("should be a single line")
	}

	if !text.Safe(str) {
		return fmt.Errorf("not fully printable")
	}

	return nil
}