summaryrefslogtreecommitdiffstats
path: root/pkg/gui/style/decoration.go
blob: b5d95b645d6b8719c1dd038ddf50974f2fddd7de (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
57
58
59
60
61
62
63
64
65
66
67
68
package style

import "github.com/gookit/color"

type Decoration struct {
	bold          bool
	underline     bool
	reverse       bool
	strikethrough 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) SetStrikethrough() {
	d.strikethrough = 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)
	}

	if d.strikethrough {
		opts = append(opts, color.OpStrikethrough)
	}

	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
	}

	if other.strikethrough {
		d.strikethrough = true
	}

	return d
}