Skip to content

bendrucker/base-input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

base-input Build Status Greenkeeper badge

Base input field for virtual-dom

Install

$ npm install --save base-input

Usage

var BaseInput = require('base-input')
var MyInput = BaseInput({
  parse: parse,
  format: format,
  validate: validate
})

var state = MyInput()
// form input is parsed, state changes are formatted

MyInput.validate(state)

API

BaseInput([input]) -> function

Create a new input.

input

Required
Type: object

Includes optional parse, format, and validate functions. An input.options will be applied to the three provided functions as well as Input.render before extending with its options. You should pass options like name here and reserve purely presentational attributes like style for your render calls.

Input.render(state, [options]) -> vtree

Render the input.

state

Required
Type: function

The observable input state.

options

Type: object
Default: {}

Options to apply to the created virtual hyperscript node.

Input.validate(state) -> boolean

state

Required
Type: function

The observable input state.

Input.onInput(state, listener) -> function

Returns a function that disables the listener.

state

Required
Type: function

The observable input state.

listener

Required
Type: function

A function to call when the input changes.

Related

License

MIT © Ben Drucker

About

Base input field for virtual-dom

Resources

License

Stars

Watchers

Forks

Packages

No packages published