summaryrefslogtreecommitdiffstats
path: root/pkg/gui/style/decoration.go
blob: f6fedb87995ae614b190fbf69711618b688a0faf (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
package style

import "github.com/gookit/color"

type Decoration struct {
	bold      bool
	underline bool
	reverse   bool
}

func (d *Decoration) SetBold() {
	d.bold = true
}

func (d *Decoration) SetUnderline() {
	d.underline = true
}

func (d *Decoration) SetReverse() {
	d.reverse = true
}

func (d Decoration) ToOpts() color.Opts {
	opts := make([]color.Color, 0, 3)

	if d.bold {
		opts = append(opts, color.OpBold)
	}

	if d.underline {
		opts = append(opts, color.OpUnderscore)
	}

	if d.reverse {
		opts = append(opts, color.OpReverse)
	}

	return opts
}

func (d Decoration) Merge(other Decoration) Decoration {
	if other.bold {
		d.bold = true
	}

	if other.underline {
		d.underline = true
	}

	if other.reverse {
		d.reverse = true
	}

	return d
}