common-binders

1.3.8 • Public • Published

common-binders npm version

The module includes common binder creators or HTML binding, attribute binding etc. which can be used with defi.js.

  • attr used to bind attributes.
  • className used to bind element class name.
  • dataset used to bind dataset properties.
  • display switches element visibility.
  • existence switches element existence at DOM tree.
  • html used to bind innerHTML.
  • prop used to bind element properties.
  • style used to bind element style properties.
  • text used to bind textContent.

Usage

In browser environment these functions live at window.commonBinders object.

<script src="path/to/common-binders.min.js"></script>
const { bindNode } = defi;
const {
    attr, className, dataset, display,
    existence, html, prop, style, text 
= commonBinders;
const obj = {};
 
bindNode(obj, 'key', node, html());
 
// if you don't want to create variables
bindNode(obj, 'key', node, commonBinders.prop('foo'));

The bundle can be downloaded at gh-pages branch


npm i common-binders
// import all binders
const {
    attr, className, dataset, display,
    existence, html, prop, style, text 
= require('common-binders');
 
// import only needed binders
const attr = require('common-binders/attr');
const className = require('common-binders/classname');
const dataset = require('common-binders/dataset');
 
// ...
bindNode(obj, 'key', node, attr('foo'));

attr(attribute, [mappingFn])

Returns a binder which changes an attribute of DOM node depending on an object property value. The value can be transformed using mappingFn argument.

bindNode(obj, 'image', 'img.my-image', attr('src'));
obj.image = 'http://example.com/cats.jpg';
bindNode(obj, 'myKey', '.my-node', attr('foo', value => `Hello, ${value}`));
obj.myKey = 'World'; // the foo attr now has value "Hello, World"

className(className, [bool=true])

Returns a binder which switches over DOM node class name depending on an object property value. If property value equals true non-strictly, a class name is added, otherwise - it's removed. The logic can be changed by passing false as the second argument and in this way, a class name will be added when a property value equals false non-strictly and vice versa.

bindNode(obj, 'myKey', '.my-element', className('foo'));
obj.myKey = true; // adds the 'foo' class
obj.myKey = false; // removes the 'foo' class
bindNode(obj, 'myKey', '.my-element', className('foo', false));
obj.myKey = false; // adds the 'foo' class
obj.myKey = true; // removes the 'foo' class

dataset(property, [mappingFn])

Returns a binder which changes given dataset property of bound DOM node depending on an object property value. The property value can be transformed using mappingFn argument.

bindNode(obj, 'myKey', '.my-element', dataset('myProp'));
obj.myKey = 'foo';
bindNode(obj, 'myKey', '.my-element', dataset('myProp', value => `Hello, ${value}`));
obj.myKey = 'foo'; // the attr data-my-prop now has value "Hello, foo"

display([bool=true])

Returns a binder which controls a visibility of DOM node (using style.display) depending on an object property value. If the bool argument equals true, a node is hidden when a property value is falsy; if it equals false, it is hidden when a property value is truly.

bindNode(obj, 'myKey', '.my-element', display(true));
bindNode(obj, 'myKey', '.my-element', display(false));

existence([bool=true])

Returns a binder which controls an existence of DOM node at DOM tree depending on an object property value. The binder works the same way as display, but instead of visibility change the existence at page DOM is changed. The binder is useful for:

  • Big appications: show one or another page depending on route state;
  • For infinite scrolling;
  • For other cases where you need to hide an element but its existence at DOM tree isn't necessary.

If the bool argument equals true, a node is removed when a property value is falsy; if it equals false, it is removed when a property value is truly.

bindNode(obj, 'myKey', '.my-element', existence(true));
bindNode(obj, 'myKey', '.my-element', existence(false));

html([mappingFn])

Returns a binder which changes innerHTML of a bound DOM node depending on an object property value. The property value can be transformed using mappingFn argument.

bindNode(obj, 'myKey', '.my-element', html());
 
// sets innerHTML="<div>foo</div>"
obj.myKey = '<div>foo</div>';
bindNode(obj, 'myKey', '.my-element', html(value => `Hello, ${value}`));
 
// sets innerHTML="Hello, <div>foo</div>"
obj.myKey = '<div>foo</div>';

prop(property, [mappingFn])

Returns a binder which changes given property of DOM node depending on an object property value. The property value can be transformed using mappingFn argument.

bindNode(obj, 'disabled', '.my-button', prop('disabled'));
// sets disabled = true property for the node
obj.disabled = true;
// sets disabled = false property for the node
obj.disabled = false;
bindNode(obj, 'myProp', '.my-node', prop('foo', value => `Hello, ${value}`));
 
// foo property of the element now has value "Hello, World"
obj.myProp = 'World';

style(property, [mappingFn])

Returns a binder which changes given style property of bound DOM node depending on an object property value. The property value can be transformed using mappingFn argument.

bindNode(obj, 'myKey', '.my-progres', style('backgroundColor'));
 
obj.myKey = 'red'; // background-color of .my-progress is red now
bindNode(obj, 'myKey', '.my-element', style('backgroundImage', value => `url("${value}")`));
 
obj.myKey = 'cats.jpg'; // backgroundImage now equals to "url("cats.jpg")"

text([mappingFn])

Returns a binder which changes textContent of bound DOM node depending on an object property value. The property value can be transformed using mappingFn argument.

bindNode(obj, 'myKey', '.my-element', text());
 
obj.myKey = 'foo'; // sets textContent as "foo"
bindNode(obj, 'myKey', '.my-element', text(value => `Hello, ${value}`));
 
obj.myKey = 'foo'; // sets textContent as "Hello, foo"

Readme

Keywords

none

Package Sidebar

Install

npm i common-binders

Weekly Downloads

8

Version

1.3.8

License

MIT

Unpacked Size

15.5 kB

Total Files

13

Last publish

Collaborators

  • finom