This repository has been archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
react-kup.coffee
394 lines (332 loc) · 9.06 KB
/
react-kup.coffee
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
test = require 'tape'
React = require 'react'
ReactDOMServer = require 'react-dom/server'
reactKup = require('../lib/react-kup')
removeReactAttributes = (string) ->
string.replace(/\ data-react[^=]*="[^"]*"/g, '')
elementToString = (element) ->
html = ReactDOMServer.renderToString element
removeReactAttributes html
removeLayout = (string) ->
string.replace(/\n\s*/g, '')
elementProducesMarkup = (element, markup) ->
actual = elementToString(element)
expected = removeLayout(markup)
actual is expected
test 'single div', (t) ->
element = reactKup (k) ->
k.div "Hello world"
t.ok elementProducesMarkup element, """
<div>Hello world</div>
"""
t.end()
test 'build', (t) ->
t.test 'tag', (t) ->
element = reactKup (k) ->
k.build 'div'
t.ok elementProducesMarkup element, """
<div></div>
"""
t.end()
t.test 'tag + attrs', (t) ->
element = reactKup (k) ->
k.build 'div', {className: 't'}
t.ok elementProducesMarkup element, """
<div class="t"></div>
"""
t.end()
t.test 'tag + attrs', (t) ->
element = reactKup (k) ->
k.build 'div', {className: 't'}
t.ok elementProducesMarkup element, """
<div class="t"></div>
"""
t.end()
t.test 'tag + attrs + text', (t) ->
element = reactKup (k) ->
k.build 'div', {className: 't'}, 'this is a test'
t.ok elementProducesMarkup element, """
<div class="t">this is a test</div>
"""
t.end()
t.test 'tag + attrs + function', (t) ->
element = reactKup (k) ->
k.build 'div', {className: 't'}, ->
k.build 'a', 'hey there'
t.ok elementProducesMarkup element, """
<div class="t"><a>hey there</a></div>
"""
t.end()
t.test 'tag + attrs + element', (t) ->
div = reactKup (k) ->
k.div 'hey there'
element = reactKup (k) ->
k.build 'div', {className: 't'}, div
t.ok elementProducesMarkup element, """
<div class="t"><div>hey there</div></div>
"""
t.end()
t.test 'tagName + attrs + mixed contents', (t) ->
element = reactKup (k) ->
k.build 'div', {className: 't'},
->
k.build 'div', 'hey'
'this is a t'
reactKup (l) ->
l.build 'a', 'there'
t.ok elementProducesMarkup element, """
<div class="t">
<div>hey</div>
<!-- react-text: 3 -->this is a t<!-- /react-text -->
<a>there</a>
</div>
"""
t.end()
t.test 'existing element', (t) ->
div = reactKup (k) ->
k.div 'hey there'
element = reactKup (k) ->
k.build div
t.ok elementProducesMarkup element, """
<div>hey there</div>
"""
t.end()
t.test 'existing element with wrapper', (t) ->
span = reactKup (k) ->
k.span 'hey there'
element = reactKup (k) ->
k.p ->
k.build span
t.ok elementProducesMarkup element, """
<p><span>hey there</span></p>
"""
t.end()
test 'alternative API', (t) ->
k = reactKup()
k.build 'div', {className: 't'}
t.ok elementProducesMarkup k.element(), """
<div class="t"></div>
"""
t.end()
test 'error', (t) ->
t.test 'only one tag allowed on toplevel', (t) ->
reactKup (k) ->
k.p 't'
try
k.p 'fail'
catch e
t.equal e.message, 'only one tag allowed on toplevel but you are trying to add a second one'
t.end()
t.test 'when build is given react element additional arguments are forbidden', (t) ->
div = reactKup (k) ->
k.div()
reactKup (k) ->
try
k.build div, {className: 'foo'}
catch e
t.equal e.message, 'first argument to .build() is already a react element. in this case additional arguments are not allowed.'
t.end()
test 'empty', (t) ->
t.test 'returns null', (t) ->
t.equal null, reactKup (k) ->
t.end()
t.test 'produces empty comment', (t) ->
Class = React.createClass
render: ->
reactKup (k) ->
element = React.createElement Class
t.ok elementProducesMarkup element, """
<!-- react-empty: 1 -->
"""
t.end()
test 'inner text content', (t) ->
t.test 'one is not wrapped in span', (t) ->
Class = React.createClass
render: ->
reactKup (k) ->
k.div 'inner text'
element = React.createElement Class
t.ok elementProducesMarkup element, """
<div>inner text</div>
"""
t.end()
t.test 'more than one are wrapped in comments', (t) ->
Class = React.createClass
render: ->
reactKup (k) ->
k.div 'inner text', 'another inner text'
element = React.createElement Class
t.ok elementProducesMarkup element, """
<div>
<!-- react-text: 2 -->inner text<!-- /react-text -->
<!-- react-text: 3 -->another inner text<!-- /react-text -->
</div>
"""
t.end()
t.test 'interspersed is wrapped in comment', (t) ->
Class = React.createClass
render: ->
reactKup (k) ->
k.div(
-> k.span 'text in span'
'inner text'
-> k.br()
'another inner text'
)
element = React.createElement Class
t.ok elementProducesMarkup element, """
<div>
<span>text in span</span>
<!-- react-text: 3 -->inner text<!-- /react-text -->
<br/>
<!-- react-text: 5 -->another inner text<!-- /react-text -->
</div>
"""
t.end()
test 'nested', (t) ->
element = reactKup (k) ->
k.div {className: 'wrapper'}, ->
k.h1 {id: 'heading'}, "Heading"
k.p ->
k.span "hello"
k.br()
k.span "world"
k.h2 "Heading"
t.ok elementProducesMarkup element, """
<div class="wrapper">
<h1 id="heading">Heading</h1>
<p>
<span>hello</span>
<br/>
<span>world</span>
</p>
<h2>Heading</h2>
</div>
"""
t.end()
test 'composition', (t) ->
items = ['Buy Milk', 'Buy Sugar']
createItem = (itemText) ->
reactKup (k) ->
k.li itemText
element = reactKup (k) ->
k.ul items.map createItem
t.ok elementProducesMarkup element, """
<ul>
<li>Buy Milk</li>
<li>Buy Sugar</li>
</ul>
"""
t.end()
test 'simple react example', (t) ->
HelloMessage = React.createClass
render: ->
that = this
reactKup (k) ->
k.div "Hello #{that.props.name}"
element = React.createElement HelloMessage,
name: 'John'
t.ok elementProducesMarkup element, """
<div>Hello John</div>
"""
t.end()
test 'complex react example', (t) ->
TodoList = React.createClass
render: ->
that = this
createItem = (itemText) ->
reactKup (k) ->
k.li itemText
reactKup (k) ->
k.ul that.props.items.map createItem
TodoApp = React.createClass
getInitialState: ->
items: ['Buy Milk', 'Buy Sugar']
text: 'Add #3'
onChange: (e) ->
this.setState({text: e.target.value})
handleSubmit: (e) ->
e.preventDefault()
nextItems = this.state.items.concat([this.state.text])
nextText = ''
this.setState({items: nextItems, text: nextText})
render: ->
that = this
reactKup (k) ->
k.div ->
k.h3 'TODO'
k.build TodoList,
items: that.state.items
k.form {
onSubmit: that.handleSubmit
}, ->
k.input
onChange: that.onChange
value: that.state.text
k.button "Add ##{that.state.items.length + 1}"
element = React.createElement TodoApp
t.ok elementProducesMarkup element, """
<div>
<h3>TODO</h3>
<ul>
<li>Buy Milk</li>
<li>Buy Sugar</li>
</ul>
<form>
<input value="Add #3"/>
<button>Add #3</button>
</form>
</div>
"""
t.end()
test 'another complex react example', (t) ->
ComponentPublicPageContent = React.createClass
render: ->
that = this
reactKup (k) ->
k.div ->
k.h1 "#{that.props.page.title}"
k.div
className: "page-markdown"
dangerouslySetInnerHTML:
__html: "<b>unsafe</b>"
ComponentPublicPage = React.createClass
render: ->
that = this
reactKup (k) ->
k.div className: "row", ->
k.build ComponentPublicPageContent, {page: that.props.page}
element = React.createElement ComponentPublicPage,
page:
title: 'faq'
t.ok elementProducesMarkup element, """
<div class="row">
<div>
<h1>faq</h1>
<div class="page-markdown">
<b>unsafe</b>
</div>
</div>
</div>
"""
t.end()
test 'stateless functional component', (t) ->
helloMessage = (props) ->
reactKup (k) ->
k.div "Hello #{props.name}"
element = React.createElement helloMessage,
name: 'John'
t.ok elementProducesMarkup element, """
<div>Hello John</div>
"""
t.end()
test 'stateless functional component with implicit return', (t) ->
helloMessage = ({name}) ->
reactKup (k) ->
k.div "Hello #{name}"
element = React.createElement helloMessage,
name: 'John'
t.ok elementProducesMarkup element, """
<div>Hello John</div>
"""
t.end()