choo: add initial render

This commit is contained in:
Yoshua Wuyts
2016-05-11 13:51:17 +07:00
parent c28d37ac84
commit 48d43eaf09
4 changed files with 161 additions and 6 deletions
+116 -3
View File
@@ -1,8 +1,121 @@
const assert = require('assert')
// const history = require('sheet-router/history')
const sheetRouter = require('sheet-router')
const document = require('global/document')
// const href = require('sheet-router/href')
const sendAction = require('send-action')
const mutate = require('xtend/mutable')
const xtend = require('xtend')
const yo = require('yo-yo')
choo.view = yo
module.exports = choo
// A framework for creating solid web applications
// null -> null
// A framework for creating sturdy web applications
// null -> fn
function choo () {
var _router = null
var _models = [ appInit() ]
start.router = router
start.model = model
start.start = start
return start
// start the application
// str|DOMNode -> DOMNode
function start (query) {
const events = bootstrap(_models)
const send = sendAction({
onaction: events.middleware,
onchange: onchange,
state: events.state
})
const node = _router(send.state().location, send.state(), send)
console.log(node)
document.body.appendChild(node)
// update on every change
function onchange (action, state) {
const el = document.querySelector('#main')
yo.update(el, router(state.location, send, state))
}
}
// register all routes
// [obj|fn] -> null
function router (cb) {
_router = sheetRouter(cb)
}
// create a new model
// (str?, obj) -> null
function model (name, model) {
if (!model) model = name
if (typeof name === 'string') model.name = name
_models.push(model)
}
}
function appInit () {
return {
state: {
location: document.location.href
},
reducers: {
location: setLocation
}
}
// handle href links
function setLocation (action, state) {
const location = action.location.replace(/#.*/, '')
return xtend(state, { location: location })
}
}
function bootstrap (events) {
const initialState = { }
const reducers = {}
const effects = {}
events.forEach(function (event) {
const name = event.name
if (event.state) mutate(initialState, event.state)
if (event.reducers) {
Object.keys(event.reducers).forEach(function (key) {
if (name) {
reducers[name + ':' + key] = event.reducers[key]
} else {
reducers[key] = event.reducers[key]
}
})
}
if (event.effects) {
Object.keys(event.effects).forEach(function (key) {
if (name) {
effects[name + ':' + key] = event.effects[key]
} else {
effects[key] = event.effects[key]
}
})
}
})
return {
middleware: modifyState,
state: initialState
}
function modifyState (action, state, send) {
if (reducers[action.type]) {
return reducers[action.type](action, state, send)
} else if (effects[action.type]) {
effects[action.type](action, state, send)
return state
} else {
throw new Error('Could not find action ' + action.type)
}
}
}