-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.lisp
276 lines (229 loc) · 8.96 KB
/
utils.lisp
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
271
272
273
274
275
276
(defpackage :utils
(:use :cl :mini-fiveam)
(:export #:remove-last-char
#:add-event-listener
#:ws-url
;; #:open-websocket
;; #:websocket-send
;; #:close-websocket
#:obj-literal
#:fact
#:get-bool-from-js
#:max-via-js-inline
#:format-message-as-json
#:parse-json-message
#:plist2object
#:m
#:m-render
#:m-mount
#:m-redraw
#:m-set-timeout
#:m-set-interval
#:mc
#:ms
#:js-array
#:js-array*
#:range))
(in-package :utils)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; remove-last-char ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun remove-last-char (string)
(subseq string 0 (1- (length string))))
(deftest remove-last-char.1
(is (equal "fo" (remove-last-char "foo"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; add-event-listener ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun add-event-listener (obj event fn)
((jscl::oget obj "addEventListener") event fn))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ws-url ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun ws-url (&optional (protocol #j:document:location:protocol) (host #j:document:location:host))
(format nil
"~A://~A/cable"
(ecase (intern (string-upcase (remove-last-char protocol)) "KEYWORD")
(:http "ws")
(:https "wss"))
host))
(deftest ws-url.1
(is (equal "ws://example.com:3030/cable"
(ws-url "http:" "example.com:3030")))
(is (equal "wss://example.com:3030/cable"
(ws-url "https:" "example.com:3030")))
(is (equal "wss://othello-square.fly.dev/cable"
(ws-url "https:" "othello-square.fly.dev"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; websocket ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun open-websocket (url &key on-close on-error on-message on-open log-each-event)
(let ((events '("close" "error" "message" "open"))
(ws (jscl::make-new #j:WebSocket (jscl::lisp-to-js url))))
(when log-each-event
(let ((handler (lambda (event)
(#j:console:log event))))
(loop for event in events
when handler
do (add-event-listener ws event handler))))
(loop for event in events
for handler in (list on-close on-error on-message on-open)
when handler
do (add-event-listener ws event handler))
ws))
(defun websocket-send (ws message)
((jscl::oget ws "send")
(jscl::lisp-to-js
(if (stringp message)
message
(prin1-to-string message)))))
(defun close-websocket (ws)
((jscl::oget ws "close")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; obj-literal ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun transform-case (string)
(cond
((notany #'lower-case-p string)
(string-downcase string))
((notany #'upper-case-p string)
(string-upcase string))
(t string))))
(defmacro obj-literal (&rest plist)
(let ((obj (gensym "OBJ")))
`(let ((,obj (jscl::new)))
,@(loop
for (key value) on plist by #'cddr
collect `(jscl::oset ,value ,obj ,(transform-case (string key))))
,obj)))
(deftest obj-literal.1
(is (equal "{\"foo\":1,\"bar\":2}" (#j:JSON:stringify (obj-literal :foo 1 :bar 2)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; plist2object ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun plist2object (plist)
(let ((obj (jscl::new)))
(loop
for (key value) on plist by #'cddr
do (jscl::oset value obj (string-downcase key)))
obj))
(deftest plist2object.1
(is (equal "{\"foo\":1,\"bar\":2}" (#j:JSON:stringify (plist2object '(:foo 1 :bar 2))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; js-array ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun js-array (&rest args)
(apply #'jscl::make-new #j:Array args))
(defmacro js-array* (&rest args)
`(jscl::make-new #j:Array ,@args))
(deftest js-array.1
(is (equal "[1,2,3]" (#j:JSON:stringify (js-array 1 2 3))))
(is (equal "[1,2,3]" (#j:JSON:stringify (js-array* 1 2 3)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; format-message-as-json ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun format-message-as-json (message)
(#j:JSON:stringify
(apply
#'js-array
(jscl::lisp-to-js
(substitute #\_ #\-
(string-downcase (car message))))
(mapcar #'jscl::lisp-to-js (cdr message)))))
(deftest format-message-as-json.1
(is (equal "[\"foo\",\"bar\"]" (format-message-as-json '(:foo "bar"))))
(is (equal "[\"foo_bar\",123]" (format-message-as-json '(:foo-bar 123))))
(is (equal "[\"foo\",1,2,3]" (format-message-as-json '(:foo 1 2 3))))
(is (equal "[\"foo\"]" (format-message-as-json '(:foo)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; parse-json-message ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun transform-message-head (message)
(when message
(cons (intern (substitute #\- #\_
(string-upcase (car message)))
"KEYWORD")
(cdr message))))
(defun parse-json-message (string)
(let ((array (jscl::js-to-lisp (#j:JSON:parse string))))
(assert (arrayp array))
(transform-message-head
(map 'list #'jscl::js-to-lisp array))))
(deftest parse-json-message.1
(labels ((roundtrip (x)
(parse-json-message
(format-message-as-json x))))
(dolist (message '((:foo "bar")
(:foo-bar 123)
(:foo 1 2 3)
(:foo)))
(is (equal message (roundtrip message))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; mithril ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun m (&rest args)
(let ((n (length args)))
(cond
((<= n 1)
(apply (jscl::js-inline "m") args))
((listp (second args))
(destructuring-bind (tag attributes &rest rest) args
(apply (jscl::js-inline "m")
tag
(plist2object attributes)
rest)))
(t
(apply (jscl::js-inline "m") args)))))
(defun m-render (elt hs)
(funcall (jscl::js-inline "m.render") elt hs))
(defun m-mount (elt component)
(funcall (jscl::js-inline "m.mount") elt component))
(defun m-redraw ()
(funcall (jscl::js-inline "m.redraw")))
(defun m-set-timeout (seconds fn)
(#j:setTimeout
(lambda ()
(funcall fn)
(m-redraw))
(* 1000 seconds)))
(defun m-set-interval (seconds fn)
(#j:setInterval
(lambda ()
(funcall fn)
(m-redraw))
(* 1000 seconds)))
(defmacro mc (name-and-args &body body)
(destructuring-bind (name &rest args)
(if (consp name-and-args) name-and-args (list name-and-args))
`(m (function ,name) (list ,@args) ,@body)))
(defmacro ms (name-and-args &body body)
(destructuring-bind (name &rest args)
(if (consp name-and-args) name-and-args (list name-and-args))
`(m ,(string-downcase name) (list ,@args) ,@body)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; range ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun range (from to)
(loop for i from from to to collect i))
(deftest range.1
(is (equal '(1 2 3) (range 1 3)))
(is (equal '() (range 10 1))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; other ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun fact (n)
(if (zerop n)
1
(* n (fact (1- n)))))
(defun get-bool-from-js (x)
(ecase x
(1 (if (jscl::js-inline "true")
1
2))
(2 (if (jscl::js-inline "false")
1
2))))
(defun max-via-js-inline (a b)
(let ((js-func (jscl::js-inline "Math.max")))
(funcall js-func a b)))