-
Notifications
You must be signed in to change notification settings - Fork 596
/
Copy pathbrowser.js
263 lines (236 loc) · 7.8 KB
/
browser.js
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
var tape = require('tape')
var h = require('hyperscript')
var html = require('../html')
var raw = require('../html/raw')
var choo = require('..')
tape('should mount in the DOM', function (t) {
t.plan(1)
var app = choo()
var container = init('/', 'p')
app.route('/', function (state, emit) {
var strong = '<strong>Hello filthy planet</strong>'
window.requestAnimationFrame(function () {
var exp = '<p><strong>Hello filthy planet</strong></p>'
t.equal(container.outerHTML, exp, 'result was OK')
})
return html`
<p>${raw(strong)}</p>
`
})
app.mount(container)
})
tape('should render with hyperscript', function (t) {
t.plan(1)
var app = choo()
var container = init('/', 'p')
app.route('/', function (state, emit) {
window.requestAnimationFrame(function () {
var exp = '<p><strong>Hello filthy planet</strong></p>'
t.equal(container.outerHTML, exp, 'result was OK')
})
return h('p', h('strong', 'Hello filthy planet'))
})
app.mount(container)
})
tape('should expose a public API', function (t) {
var app = choo()
t.equal(typeof app.route, 'function', 'app.route prototype method exists')
t.equal(typeof app.toString, 'function', 'app.toString prototype method exists')
t.equal(typeof app.start, 'function', 'app.start prototype method exists')
t.equal(typeof app.mount, 'function', 'app.mount prototype method exists')
t.equal(typeof app.emitter, 'object', 'app.emitter prototype method exists')
t.equal(typeof app.emit, 'function', 'app.emit instance method exists')
t.equal(typeof app.router, 'object', 'app.router instance object exists')
t.equal(typeof app.state, 'object', 'app.state instance object exists')
t.end()
})
tape('should enable history and href by defaut', function (t) {
var app = choo()
t.true(app._historyEnabled, 'history enabled')
t.true(app._hrefEnabled, 'href enabled')
t.end()
})
tape('router should pass state and emit to view', function (t) {
t.plan(2)
var app = choo()
var container = init()
app.route('/', function (state, emit) {
t.equal(typeof state, 'object', 'state is an object')
t.equal(typeof emit, 'function', 'emit is a function')
return html`<div></div>`
})
app.mount(container)
})
tape('router should support a default route', function (t) {
t.plan(1)
var app = choo()
var container = init('/random')
app.route('*', function (state, emit) {
t.pass()
return html`<div></div>`
})
app.mount(container)
})
tape('enabling hash routing should treat hashes as slashes', function (t) {
t.plan(1)
var app = choo({ hash: true })
var container = init('/account#security')
app.route('/account/security', function (state, emit) {
t.pass()
return html`<div></div>`
})
app.mount(container)
})
tape('router should ignore hashes by default', function (t) {
t.plan(1)
var app = choo()
var container = init('/account#security')
app.route('/account', function (state, emit) {
t.pass()
return html`<div></div>`
})
app.mount(container)
})
tape('cache should default to 100 instances', function (t) {
t.plan(1)
var app = choo()
var container = init()
app.route('/', function (state, emit) {
for (var i = 0; i <= 100; i++) state.cache(Component, i)
state.cache(Component, 0)
return html`<div></div>`
function Component (id) {
if (id < i) t.pass('oldest instance was pruned when exceeding 100')
}
})
app.mount(container)
})
tape('cache option should override number of max instances', function (t) {
t.plan(1)
var app = choo({ cache: 1 })
var container = init()
app.route('/', function (state, emit) {
var instances = 0
state.cache(Component, instances)
state.cache(Component, instances)
state.cache(Component, 0)
return html`<div></div>`
function Component (id) {
if (id < instances) t.pass('oldest instance was pruned when exceeding 1')
instances++
}
})
app.mount(container)
})
tape('cache option should override default LRU cache', function (t) {
t.plan(2)
var cache = {
get (Component, id) {
t.pass('called get')
},
set (Component, id) {
t.pass('called set')
}
}
var app = choo({ cache: cache })
var container = init()
app.route('/', function (state, emit) {
state.cache(Component, 'foo')
return html`<div></div>`
})
app.mount(container)
function Component () {}
})
// built-in state
tape('state should include events', function (t) {
t.plan(2)
var app = choo()
var container = init()
app.route('/', function (state, emit) {
t.ok(state.hasOwnProperty('events'), 'state has event property')
t.ok(Object.keys(state.events).length > 0, 'events object has keys')
return html`<div></div>`
})
app.mount(container)
})
tape('state should include location on render', function (t) {
t.plan(6)
var app = choo()
var container = init('/foo/bar/file.txt?bin=baz')
app.route('/:first/:second/*', function (state, emit) {
var params = { first: 'foo', second: 'bar', wildcard: 'file.txt' }
t.equal(state.href, '/foo/bar/file.txt', 'state has href')
t.equal(state.route, ':first/:second/*', 'state has route')
t.ok(state.hasOwnProperty('params'), 'state has params')
t.deepEqual(state.params, params, 'params match')
t.ok(state.hasOwnProperty('query'), 'state has query')
t.deepEqual(state.query, { bin: 'baz' }, 'query match')
return html`<div></div>`
})
app.mount(container)
})
tape('state should include location on store init', function (t) {
t.plan(6)
var app = choo()
var container = init('/foo/bar/file.txt?bin=baz')
app.use(store)
app.route('/:first/:second/*', function (state, emit) {
return html`<div></div>`
})
app.mount(container)
function store (state, emit) {
var params = { first: 'foo', second: 'bar', wildcard: 'file.txt' }
t.equal(state.href, '/foo/bar/file.txt', 'state has href')
t.equal(state.route, ':first/:second/*', 'state has route')
t.ok(state.hasOwnProperty('params'), 'state has params')
t.deepEqual(state.params, params, 'params match')
t.ok(state.hasOwnProperty('query'), 'state has query')
t.deepEqual(state.query, { bin: 'baz' }, 'query match')
}
})
tape('state should include title', function (t) {
t.plan(3)
document.title = 'foo'
var app = choo()
var container = init()
t.equal(app.state.title, 'foo', 'title is match')
app.use(function (state, emitter) {
emitter.on(state.events.DOMTITLECHANGE, function (title) {
t.equal(state.title, 'bar', 'title is changed in state')
t.equal(document.title, 'bar', 'title is changed in document')
})
})
app.route('/', function (state, emit) {
emit(state.events.DOMTITLECHANGE, 'bar')
return html`<div></div>`
})
app.mount(container)
})
tape('state should include cache', function (t) {
t.plan(6)
var app = choo()
var container = init()
app.route('/', function (state, emit) {
t.equal(typeof state.cache, 'function', 'state has cache method')
var cached = state.cache(Component, 'foo', 'arg')
t.equal(cached, state.cache(Component, 'foo'), 'consecutive calls return same instance')
return html`<div></div>`
})
app.mount(container)
function Component (id, state, emit, arg) {
t.equal(id, 'foo', 'id was prefixed to constructor args')
t.equal(typeof state, 'object', 'state was prefixed to constructor args')
t.equal(typeof emit, 'function', 'emit was prefixed to constructor args')
t.equal(arg, 'arg', 'constructor args were forwarded')
}
})
// create application container and set location
// (str?, str?) -> Element
function init (location, type) {
location = location ? location.split('#') : ['/', '']
window.history.replaceState({}, document.title, location[0])
window.location.hash = location[1] || ''
var container = document.createElement(type || 'div')
document.body.appendChild(container)
return container
}