-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.go
238 lines (204 loc) · 4.53 KB
/
theme.go
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package cu
import (
"gioui.org/f32"
"gioui.org/font"
"gioui.org/layout"
"gioui.org/op/clip"
"gioui.org/op/paint"
"gioui.org/text"
"gioui.org/unit"
"image"
"image/color"
)
type Palette struct {
Text color.NRGBA
TextSecondary color.NRGBA
// The primary highlight color
Primary color.NRGBA
ControlBorder color.NRGBA
}
type Fonts struct {
SansSerif font.Font
Monospace font.Font
}
type Theme struct {
Color Palette
TextSize unit.Sp
TextSizeMedium unit.Sp
TextSizeH1 unit.Sp
TextSizeH2 unit.Sp
Shaper *text.Shaper
Font Fonts
LineHeightH1 unit.Sp
LineHeightH2 unit.Sp
}
type Flex struct {
widget layout.Flex
gap unit.Dp
children []layout.FlexChild
}
func (f Flex) Layout(gtx layout.Context) layout.Dimensions {
children := f.children
if f.gap > 0 {
var spacer layout.Widget
if f.widget.Axis == layout.Horizontal {
spacer = func(gtx layout.Context) layout.Dimensions {
return layout.Dimensions{
Size: image.Point{X: gtx.Dp(f.gap)},
}
}
} else {
spacer = func(gtx layout.Context) layout.Dimensions {
return layout.Dimensions{
Size: image.Point{Y: gtx.Dp(f.gap)},
}
}
}
n := []layout.FlexChild{}
for i, each := range children {
if i > 0 {
n = append(n, layout.Rigid(spacer))
}
n = append(n, each)
}
children = n
}
return f.widget.Layout(gtx, children...)
}
func (f Flex) Rigid(w layout.Widget) Flex {
f.children = append(f.children, layout.Rigid(w))
return f
}
func (f Flex) Flexed(weight float32, w layout.Widget) Flex {
f.children = append(f.children, layout.Flexed(weight, w))
return f
}
func (f Flex) RigidIf(condition bool, w layout.Widget) Flex {
if condition {
return f.Rigid(w)
}
return f
}
func (f Flex) FlexedIf(condition bool, weight float32, w layout.Widget) Flex {
if condition {
return f.Flexed(weight, w)
}
return f
}
type CuFlexOption func(w *Flex, t Theme)
func Spacing(s layout.Spacing) func(w *Flex, t Theme) {
return func(w *Flex, t Theme) {
w.widget.Spacing = s
}
}
func Align(a layout.Alignment) func(w *Flex, t Theme) {
return func(w *Flex, t Theme) {
w.widget.Alignment = a
}
}
type Unit interface {
Dp(t Theme) unit.Dp
}
type scaledUnit struct {
scale float32
}
func (s scaledUnit) Dp(t Theme) unit.Dp {
return unit.Dp(s.scale) * unit.Dp(16)
}
func Scaled(n float32) Unit {
return scaledUnit{scale: n}
}
var (
XS Unit = Scaled(0.25)
S Unit = Scaled(0.5)
M Unit = Scaled(1)
L Unit = Scaled(1.33)
)
func Gap(s Unit) func(w *Flex, t Theme) {
return func(w *Flex, t Theme) {
w.gap = s.Dp(t)
}
}
func (t Theme) FlexRow(options ...CuFlexOption) Flex {
l := Flex{
widget: layout.Flex{
Axis: layout.Horizontal,
},
gap: 0,
}
for _, opt := range options {
opt(&l, t)
}
return l
}
func (t Theme) FlexColumn(options ...CuFlexOption) Flex {
l := Flex{
widget: layout.Flex{
Axis: layout.Vertical,
},
gap: 0,
}
for _, opt := range options {
opt(&l, t)
}
return l
}
func (t Theme) Hr() layout.Widget {
return func(gtx C) D {
h := unit.Dp(1)
gtx.Constraints.Min.Y = gtx.Dp(h)
var path clip.Path
path.Begin(gtx.Ops)
path.MoveTo(f32.Pt(0, float32(h)/2))
path.LineTo(f32.Pt(float32(gtx.Constraints.Max.X), float32(h)/2))
path.Close()
paint.FillShape(gtx.Ops,
color.NRGBA{
R: 0,
G: 0,
B: 0,
A: 255 / 5,
},
clip.Stroke{
Path: path.End(),
Width: float32(h),
}.Op())
return layout.Spacer{Height: h}.Layout(gtx)
}
}
func (t Theme) Background(gtx layout.Context) {
colorBackground := color.NRGBA{
R: 0xF7,
G: 0xF8,
B: 0xFA,
A: 255,
}
paint.Fill(gtx.Ops, colorBackground)
}
func NewTheme(fonts []font.FontFace) *Theme {
//var colorText = color.NRGBA{R: 52, G: 65, B: 85, A: 0xff}
var colorText = color.NRGBA{R: 0, G: 0, B: 0, A: 0xff}
var colorTextSecondary = color.NRGBA{R: 0x6C, G: 0x70, B: 0x7E, A: 0xff}
var colorPrimary = color.NRGBA{59, 130, 246, 255}
var colorControlBorder = color.NRGBA{0xC9, 0xCC, 0xD6, 255}
t := &Theme{
Shaper: text.NewShaper(text.WithCollection(fonts)),
Color: Palette{
Text: colorText,
TextSecondary: colorTextSecondary,
Primary: colorPrimary,
ControlBorder: colorControlBorder,
},
TextSize: unit.Sp(13.0),
TextSizeMedium: unit.Sp(12.0),
TextSizeH1: unit.Sp(20.0),
TextSizeH2: unit.Sp(16.0),
LineHeightH1: unit.Sp(24),
LineHeightH2: unit.Sp(20),
Font: Fonts{
SansSerif: font.Font{Typeface: "Roboto, SF Pro Text, Segoe UI, Dejavu, sans-serif"},
Monospace: font.Font{Typeface: "monospace"},
},
}
return t
}