-
-
Notifications
You must be signed in to change notification settings - Fork 366
/
condition.go
146 lines (111 loc) · 2.44 KB
/
condition.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
package app
import (
"context"
"io"
"net/url"
"github.com/maxence-charriere/go-app/v9/pkg/errors"
)
// Condition represents a control structure that displays nodes depending on a
// given expression.
type Condition interface {
UI
// ElseIf sets the condition with the given nodes if previous expressions
// were not met and given expression is true.
ElseIf(expr bool, elems ...UI) Condition
// Else sets the condition with the given UI elements if previous
// expressions were not met.
Else(elems ...UI) Condition
}
// If returns a condition that filters the given elements according to the given
// expression.
func If(expr bool, elems ...UI) Condition {
if !expr {
elems = nil
}
return condition{
body: FilterUIElems(elems...),
satisfied: expr,
}
}
type condition struct {
body []UI
satisfied bool
}
func (c condition) ElseIf(expr bool, elems ...UI) Condition {
if c.satisfied {
return c
}
if expr {
c.body = FilterUIElems(elems...)
c.satisfied = expr
}
return c
}
func (c condition) Else(elems ...UI) Condition {
return c.ElseIf(true, elems...)
}
func (c condition) Kind() Kind {
return Selector
}
func (c condition) JSValue() Value {
return nil
}
func (c condition) Mounted() bool {
return false
}
func (c condition) name() string {
return "if.else"
}
func (c condition) self() UI {
return c
}
func (c condition) setSelf(UI) {
}
func (c condition) context() context.Context {
return nil
}
func (c condition) dispatcher() Dispatcher {
return nil
}
func (c condition) attributes() map[string]string {
return nil
}
func (c condition) eventHandlers() map[string]eventHandler {
return nil
}
func (c condition) parent() UI {
return nil
}
func (c condition) setParent(UI) {
}
func (c condition) children() []UI {
return c.body
}
func (c condition) mount(Dispatcher) error {
return errors.New("condition is not mountable").
Tag("name", c.name()).
Tag("kind", c.Kind())
}
func (c condition) dismount() {
}
func (c condition) update(UI) error {
return errors.New("condition cannot be updated").
Tag("name", c.name()).
Tag("kind", c.Kind())
}
func (c condition) onNav(*url.URL) {
}
func (c condition) onAppUpdate() {
}
func (c condition) onAppInstallChange() {
}
func (c condition) onResize() {
}
func (c condition) preRender(Page) {
}
func (c condition) html(w io.Writer) {
panic("shoulnd not be called")
}
func (c condition) htmlWithIndent(w io.Writer, indent int) {
panic("shoulnd not be called")
}