This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Raw DOM Nostalgia</title> | |
<style> | |
.done { | |
text-decoration: line-through; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict" | |
const assign = Object.assign | |
function push(arr, item) { | |
let newArr = (arr && arr.slice()) || [] | |
newArr.push(item) | |
return newArr | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Redux rocket launcher example</title> | |
<script src="https://npmcdn.com/redux@latest/dist/redux.min.js"></script> | |
<script src="https://npmcdn.com/[email protected]/dist/redux-saga.js"></script> | |
</head> | |
<body> | |
<p> | |
Example created to compare Redux + redux-saga implementation with |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const empty = {} | |
const ktrue = () => true | |
const contract = p => (v, field) => { | |
if(p(v, field)) | |
return v | |
throw `Invalid value ${v} for field ${field}` | |
} | |
// builtin validators |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createStore, applyMiddleware } from 'redux' | |
import sagaMiddleware, { runSaga, storeIO, take, put } from 'redux-saga' | |
/////////////////////////////////////////////////////////////////// | |
// | |
// Sagas | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Observable is an Union Type, with the following variants | |
const Empty = () => ['EMPTY'] | |
const Cons = (head, tail) => ['CONS', head, tail] | |
const Future = promise => ['FUTURE', promise] | |
// race between 2 promises; each promise will resolve to a lazy value | |
const lazyRace = (p1, p2) => Promise.race([p1,p2]).then(lazy => lazy()) | |
// function composition | |
const compose = (...fns) => (arg) => fns.reduceRight((res, f) => f(res), arg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx html */ | |
import { html } from 'snabbdom-jsx'; | |
import Type from 'union-type'; | |
const Action = Type({ | |
Increment : [], | |
Decrement : [], | |
}); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function init() { | |
return { nextID: 1, counters: [] }; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main( | |
twoCounters.init(), // the initial state | |
document.getElementById('placeholder'), | |
twoCounters | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function update(model, action) { | |
return action.type === RESET ? | |
{ | |
first : counter.init(), | |
second: counter.init() | |
} | |
: action.type === UPDATE_FIRST ? | |
{...model, first : counter.update(model.first, action.data) } | |