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
|
module SpicyWeb where
import Data.Traversal
import Json
import UI(Ref(..))
import HTML(CgiRef(..))
infixl 1 `onLoad`
showID (Ref (CgiRef r)) = r
data Doc a
= Doc a
| OnLoad (Doc a) (Action () a)
d `onLoad` a = OnLoad d (a *> yield Null)
yieldDoc d = yieldIDs [iD d]
infixl 4 !
infixl 3 <*>
infixr 2 <*, *>
data Action _ a = Action (UntypedAction a)
type UntypedEvent = String
data UntypedAction a
= Apply (UntypedAction a) (UntypedAction a)
| Seq Bool (UntypedAction a) (UntypedAction a)
| YieldID [a]
| Pure Json
| Window
| Event
| Select (UntypedAction a) String Bool
| Curryfy Int (UntypedAction a)
| Observe Bool [a]
UntypedEvent (UntypedAction a)
tAction act =
case act of
Apply a b -> ([a,b], \ [a',b'] -> Apply a' b')
Select a prop b -> ([a], \ [a'] -> Select a' prop b)
Seq first a b -> ([a,b], \ [a',b'] -> Seq first a' b')
Observe o is e a -> ([a], \ [a'] -> Observe o is e a')
Curryfy n a -> ([a], \ [a'] -> Curryfy n a')
_ -> noChildren act
yieldIDs is = Action (YieldID is)
yield x = Action (Pure x)
Action f <*> Action a = Action (Apply f a)
Action a *> Action b = Action (Seq False a b)
Action a <* Action b = Action (Seq True a b)
(Action a) ! prop = Action (Select a prop False)
(Action a) !. prop = Action (Select a prop True)
prim n = curryfy n . foldl (!) window . words . map dot2space
where
dot2space c = if c=='.' then ' ' else c
curryfy n (Action a) = Action (Curryfy n a)
window = Action Window
data EventRep = EventRep
event = Action Event
observe b is e (Action a) = Action (Observe b is e a)
actionIDs (Action a) =
[ i | YieldID is <- acts, i <- is ] ++
[ i | Observe _ is _ _ <- acts, i <- is ]
where
acts = family tAction a
actionToJson = fold tAction toJson
where
toJson (Apply _ _) [a,b]
= action "apply" [("fun",a),("arg",b)]
toJson (Seq first _ _) [a,b]
= action "seq" [("first",Bool first),("actions",Array [a,b])]
toJson (YieldID is) []
= action "elems" [("elems",Array (map (String . showID) is))]
toJson (Pure js) []
= action "pure" [("value",js)]
toJson Window []
= action "window" []
toJson Event []
= action "event" []
toJson (Select _ prop b) [a]
= action "select" [("obj",a),("prop",String prop),("bind",Bool b)]
toJson (Curryfy arity _) [a]
= action "curryfy" [("arity", Int arity),("fun",a)]
toJson (Observe o is e _) [a]
= action "observe"
[("once",Bool o),("elems",Array (map (String . showID) is))
,("event",String e),("action",a)]
action kind args = Object (("kind",String kind):args)
showAction (Action a) = showJson (actionToJson a)
showOnLoadAction act = "Action.performOnLoad(" ++ showAction act ++ ");"
mapActionIDs f = mapFamily tAction fid
where fid a = case a of
YieldID is -> YieldID (f is)
Observe b is x y -> Observe b (f is) x y
_ -> a
elimNullActions (Action act) = Action (evalFamily tAction elim act)
where
elim a = case a of
Seq False (Pure Null) x -> Just x
Seq True x (Pure Null) -> Just x
_ -> Nothing
infixl 1 `onClick`, `onFirstClick`
iD (Doc d) = d
observeAll d = observe False [iD d]
observeOne d = observe True [iD d]
onClick d a = d `onLoad` observeAll d "click" a
onFirstClick d a = d `onLoad` observeOne d "click" a
eventSourceAction = prim 1 "Prim.eventSource"
displayAction = prim 1 "Prim.display"
hideAction = prim 1 "Prim.hide"
display d = displayAction <*> yieldDoc d
hide d = hideAction <*> yieldDoc d
addClassNameAction = prim 2 "Prim.addClassName"
addClassName d css = addClassNameAction <*> yieldDoc d <*> yield (String css)
|