submissions
v0.3.1
Published
stream of submission events for form controls
Downloads
3
Readme
submissions
stream of submission events for form controls
Example
var submissions = require("submissions")
var html = require("unpack-html")
var fold = require("reducers/fold")
var template = require("./template.html")
var elements = html(template)
document.body.appendChild(elements.root)
// get a reducible representation of all submission events
var stream = submissions(elements)
// the chunk is the state of the form controls in elements
fold(stream, function (chunk) {
console.log("got submission chunk", chunk)
})
Submission events are hitting ENTER on inputs and clicking buttons.
When a submission event occurs it gives you the form-data state of the elements at that time.
Installation
npm install submissions
Contributors
- Raynos