-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.go
More file actions
270 lines (225 loc) · 6.12 KB
/
web.go
File metadata and controls
270 lines (225 loc) · 6.12 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
package gomix
import (
"fmt"
"slices"
"sort"
"strings"
"github.com/raitucarp/gomix/components"
"github.com/raitucarp/gomix/element"
"github.com/raitucarp/gomix/styles"
"github.com/raitucarp/gomix/theme"
)
type scriptKind string
const (
scriptUrl scriptKind = "url"
scriptRaw scriptKind = "raw"
)
type script struct {
kind scriptKind
data string
isDefer bool
}
type webPage struct {
title string
titleTemplate string
layout components.IsComponent
pages []*Page
fragments []*Fragment
theme *theme.Theme
scripts []script
stylesheets []string
css string
}
func WebAddons(addons ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
for _, addon := range addons {
scope, runFn := addon(app)
if scope == WebScope {
runFn()
}
}
}
}
}
func Stylesheets(url ...string) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
app.web.stylesheets = append(app.web.stylesheets, url...)
slices.Sort(app.web.stylesheets)
app.web.stylesheets = slices.Compact(app.web.stylesheets)
}
}
}
func newSripts(scripts ...script) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
app.web.scripts = append(app.web.scripts, scripts...)
sort.Slice(app.web.scripts, func(i, j int) bool {
return app.web.scripts[i].data < app.web.scripts[j].data
})
app.web.scripts = slices.Compact(app.web.scripts)
}
}
}
func ScriptsDefer(urls ...string) AppParam {
newScript := []script{}
for _, u := range urls {
newScript = append(newScript, script{kind: scriptUrl, isDefer: true, data: u})
}
return newSripts(newScript...)
}
func Scripts(urls ...string) AppParam {
newScript := []script{}
for _, u := range urls {
newScript = append(newScript, script{kind: scriptUrl, data: u})
}
return newSripts(newScript...)
}
func JavaScripts(contents ...string) AppParam {
newScript := []script{}
for _, u := range contents {
newScript = append(newScript, script{kind: scriptRaw, data: u})
}
return newSripts(newScript...)
}
func DefaultTitle(title string) AppParam {
return func(app *Application) (scope Scope, fn func(params ...any)) {
return WebScope, func(params ...any) {
app.web.title = title
}
}
}
func TitleTemplate(title string) AppParam {
return func(app *Application) (scope Scope, fn func(params ...any)) {
return WebScope, func(params ...any) {
app.web.titleTemplate = title
}
}
}
func NotFoundPage(params ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(p ...any) {
notFoundPage := newPage("/404")
notFoundPage.kind = pageNotFound
notFoundPageIndex := slices.IndexFunc(app.web.pages, func(p *Page) bool {
return p.kind == pageNotFound
})
for _, param := range params {
scope, fn := param(app)
if scope == PageScope {
fn(notFoundPage)
}
}
app.web.pages[notFoundPageIndex] = notFoundPage
}
}
}
func PageAt(path LocationPath, params ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(p ...any) {
if len(p) <= 0 {
newPage := newPage(path)
app.web.pages = append(app.web.pages, newPage)
for _, param := range params {
scope, fn := param(app)
if scope == PageScope {
fn(newPage)
}
if scope == WebScope {
fn(newPage)
}
}
return
}
if len(p) > 0 {
if page, ok := p[0].(*Page); ok {
newPage := newPage(path)
page.children = append(page.children, newPage)
for _, param := range params {
scope, fn := param(app)
if scope == PageScope {
fn(newPage)
}
if scope == WebScope {
fn(newPage)
}
}
return
}
}
}
}
}
func Theme(newTheme *theme.Theme) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
app.web.theme = newTheme
}
}
}
func FragmentAt(path FragmentPath, params ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(p ...any) {
fragment := newFragment(path)
app.web.fragments = append(app.web.fragments, fragment)
for _, param := range params {
scope, fn := param(app)
if scope == FragmentScope {
fn(fragment)
}
}
}
}
}
func Layout(component components.IsComponent) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
app.web.layout = components.Component(
element.Body(
element.Element(component),
),
)
}
}
}
type CSS map[string][]styles.ApplyProp
func Style(props ...styles.ApplyProp) []styles.ApplyProp {
return props
}
func StyleGlobal(css CSS) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return WebScope, func(params ...any) {
combinedCss := []string{}
variantClassMap := map[string][]string{}
variantPropsMap := map[string]map[string]string{}
for rule, props := range css {
style := styles.ApplyStyle(app.web.theme, props...)
classes := strings.SplitSeq(rule, ",")
for className := range classes {
className = strings.Trim(className, " ")
for variant, props := range style {
variantStyleName := styles.VariantNameOfAttr(string(variant)).Name()
if variantPropsMap[variantStyleName] == nil {
variantPropsMap[variantStyleName] = make(map[string]string)
}
style := []string{}
for key, p := range props {
style = append(style, fmt.Sprintf("%s:%s", key, p))
}
if len(style) > 0 {
variantPropsMap[variantStyleName][className] = strings.Join(style, ";")
if !slices.Contains(variantClassMap[variantStyleName], className) {
variantClassMap[variantStyleName] = append(
variantClassMap[variantStyleName], className,
)
}
}
}
}
}
combinedCss = styles.ExtractCSSFromStyle(variantClassMap, variantPropsMap)
app.web.css = strings.Join(combinedCss, "\n")
}
}
}