kabanery
v0.2.24
Published
Data-driven, easy-composing front end view definition [readme-lang:zh]数据驱动易于组合的组件定义模式
Downloads
43
Readme
kabanery
Data-driven, easy-composing front end view definition
install
npm i kabanery --save
or npm i kabanery --save-dev
Install on global, using npm i kabanery -g
features
simple DOM DSL, construct dom tree quickly
data-driven view, include updating view by data
Just functions, easy to compose
usage
API quick run
Using method n to construct dom node quickly.
let kabanery = require('kabanery')
let {n, mount} = kabanery;
mount(n('div', {
id: 'qu',
style: {
backgroundColor: 'red'
}
}, [
n('span class=go style="font-size:16px"', 'hello!')
]), document.body);
console.log(document.getElementById('qu').outerHTML); // print result
output
<div id="qu" style="background-color: red"><span class="go" style="font-size:16px">hello!</span></div>
Basic way to construct a view.
let kabanery = require('kabanery')
let {view, n, mount} = kabanery;
let MyView = view((data) => {
let {type} = data;
return n('div', {
id: 'test1',
style: {
fontSize: 10
}
},[
type === 2 && n('span', 'second'),
type === 3 && n('div', 'third')
]);
});
mount(MyView({type: 3}), document.body);
console.log(document.getElementById('test1').outerHTML); // print result
output
<div id="test1" style="font-size: 10px"><div>third</div></div>
Using update api to update a view.
let kabanery = require('kabanery')
let {view, n, mount} = kabanery;
let MyView = view((data, {update}) => {
return n('div', {
id: 'a',
style: {
fontSize: 10
},
onclick: () => {
update('show', !data.show);
}
}, [
data.show && n('div', 'show text')
]);
});
mount(MyView({show: false}), document.body);
document.getElementById('a').click(); // simulate user action
console.log(document.getElementById('a').outerHTML); // print result
output
<div id="a" style="font-size: 10px"><div>show text</div></div>
develop
file structure
.
│──LICENSE
│──README.md
│──README_zh.md
│──index.js
│──package.json
│──src
│ │──compose
│ │ └──N.js
│ │──event
│ │ │──eventMatrix.js
│ │ └──index.js
│ │──index.js
│ │──mount.js
│ │──n
│ │ │──index.js
│ │ │──parseArgs.js
│ │ └──parseAttribute.js
│ │──ncn
│ │ └──index.js
│ │──reduceNode.js
│ └──view.js
│──test
│ │──browser
│ │ │──__test
│ │ │ └──base.js
│ │ │ │──index.html
│ │ │ │──index.js
│ │ │ │──test.js
│ │ │ └──webpack.config.js
│ │ └──case
│ └──function
│ │──browser.js
│ │──index.js
│ └──serverSide.js
└──todo.md
run tests
npm test
license
The MIT License (MIT)
Copyright (c) 2016 chenjunyu
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.