* location: change url on location:setLocation - [ ] don't break hashing - [ ] allow not changing the url fixup! move fns around fixup! add search string * app.start: clean * walk: add * location: update arg calls * fixup! location: update * uri-wrap: fix thunking * router: update to latest sheet-router (#239) * router: update to latest sheet-router * tests: fix for latest version * tests: fix SSR * tests: fix history * tests: spruce up * docs: update example * examples: update * deps: bump sheet-router * 4.0.0-0 * chore(changelog): 4.0.0 (#211) * feat(api:) arg order (#268) * s/data, state/state, data/ * feat(api): swap arguments * fix(href): fix routing (#271) * feat(http): remove (#269) * feat(router): enable hash routing (#273) * deps: fix mount * 4.0.0-1 * feat(mount): copy {script,link} tags * 4.0.0-2 * fix(mount): forEach -> for Lol can't use forEach * fix(router): use state.location.href (#282) * fix(mount): use deep node clone * 4.0.0-3 * fix(deps): remove hash-match * 4.0.0-4 * fix(mount): return node * 4.0.0-5 * fix(router): check if a hash is a valid selector (#339) * 4.0.0-6 * fix(router): pass params on newstate (#343) * 4.0.0-7 * feat(docs): update for 4.0.0 (#320) * feat(docs): update for 4.0.0 * docs: update router example in readme (#337) * chore(changelog): update for v4 (#351)
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
const test = require('tape')
|
|
const append = require('append-child')
|
|
const choo = require('../../')
|
|
const view = require('../../html')
|
|
|
|
test('hooks', function (t) {
|
|
t.plan(9)
|
|
|
|
const app = choo({
|
|
onError: function (err) {
|
|
t.equal(err.message, 'effect error', 'onError: receives err')
|
|
},
|
|
onAction: function (state, data, name, caller, createSend) {
|
|
if (name === 'explodes') return
|
|
t.deepEqual(data, {foo: 'bar'}, 'onAction: action data')
|
|
t.equal(state.clicks, 0, 'onAction: current state: 0 clicks')
|
|
t.equal(name, 'click', 'onAction: data name')
|
|
t.equal(caller, 'view: /', 'onAction: caller name')
|
|
t.equal(typeof createSend, 'function', 'onAction: createSend fn')
|
|
},
|
|
onStateChange: function (state, data, prev, createSend) {
|
|
t.deepEqual(data, {foo: 'bar'}, 'onState: action data')
|
|
t.deepEqual(state.clicks, 1, 'onState: new state: 1 clicks')
|
|
t.deepEqual(prev.clicks, 0, 'onState: prev state: 0 clicks')
|
|
}
|
|
})
|
|
|
|
app.model({
|
|
state: {
|
|
clicks: 0
|
|
},
|
|
reducers: {
|
|
click: (state, data) => ({clicks: state.clicks + 1})
|
|
},
|
|
effects: {
|
|
explodes: (state, data, send, done) => {
|
|
setTimeout(() => done(new Error('effect error')), 5)
|
|
}
|
|
}
|
|
})
|
|
|
|
var sent = false
|
|
app.router(['/', function (state, prev, send) {
|
|
if (!sent) {
|
|
send('click', {foo: 'bar'})
|
|
send('explodes')
|
|
}
|
|
sent = true
|
|
return view`<span></span>`
|
|
}])
|
|
|
|
const tree = app.start()
|
|
t.on('end', append(tree))
|
|
})
|