Settings-UI
Easily generate web forms from a JSON template with data binding.
View Demo
·
Report Bug
·
Request Feature
Table of Contents
About The Project
This project was created to quickly scaffold a settings UI or similar web form and binding it's data to be used in your JavaScript app. It generates HTML UI components from a template JSON. You can easily extend it with your own components!
Getting Started
Installation
NPM:
npm install settings-ui
CDN:
CSS
Settings-UI comes with some basic styling. Not required, but you could install it like so:
Using a bundler
;
CDN
Usage
Import it as module:
;
Then use it like so:
// template from which the ui is generatedconst template = id: 'number' type: 'number' id: 'text' type: 'text' id: 'selection' type: 'number' values: 1 2 3 ; const ui = ;// create ui and bind to a store objectconst store = ui;// render uiui;
API
bind
: function
Creates the ui from template and bind it's values to a store object. Returns a store
object.
Parameters
Name | Type | Description |
---|---|---|
template | array | Your template from which the ui is generated. |
store | object | Optional Use a predefined object to store the inputted data. If not set, an empty one is created. |
Example
const ui = ;const store = {};ui;
store
: object
Object that stores inputted data. Using the ids from template as keys.
Might look like this
console; /* OUTPUT:{ ballCount: 245, number: 3, section: { title: 'someText', speed: 23 },}*/ console; // => 23
template
: array
Schema, that describes the settings data. Used to generate the UI.
Every object in the array defines one property in the settings store object.
Properties
Name | Type | Description |
---|---|---|
id | string | Required Used as property names for the store and for ids in HTML. |
name | string | Short description. Used mainly for labels. |
help | string | Help text. Used for titles or placeholders |
type | string | Defines value type. Values can be number , text , boolean , section . Falls back to default HTML input types. These also define that type of element is generated. |
description | string | Currently not used by core components. |
name | string | Short description. Used mainly for labels. |
min | number | For number: lowest possible number, for text: minimal character length. |
max | number | For number: highest possible number, for text: max character length. |
steps | number | Available steps for inputting numbers. |
inputType | string | Forces specific elements: input , radio , selection . |
defaultValue | string | Value that is used when no value has been set. E.g. when clearing an input field, this value is set. |
values | array | Defines a set of possible values. Generates a HTML <select> or <input type="radio/>" element. Each value can be a direct value or an object with a name and value property. e.g.{name: 'one', value: 1} |
options | array | For type = "section" : Defines subtypes for a section. |
onUpdate(newValue) | function | Function that is called whenever the value changes. Called with the new value as parameter. |
Example
Have a look at the example template file.
addChangeListener
: function
Adds a listener that is called every time a value was updated.
Parameters
Name | Type | Description |
---|---|---|
listener | function | Is called with a id and value as parameter. |
Example
ui;
removeChangeListener
: function
Removes a change listener.
Parameters
Name | Type | Description |
---|---|---|
listener | function | Listener function to be removed. |
render
: function
Renders the UI. Returns an object for method chaining with following methods:
to
: function
Renders to a specific HTML element.
Parameters
Name | Type | Description |
---|---|---|
element | HTMLDOMElement | Element to render the UI in. |
Example
ui;
replace
: function
Similar to to(element)
but replaces the element with the generated UI.
Parameters
Name | Type | Description |
---|---|---|
element | HTMLDOMElement | Element to replace. |
ui;
get
: function
Returns the generated element without appending it to the dom.
Example
ui;
update
: function
Updates HTMLElements with values from store.
Parameters
Name | Type | Description |
---|---|---|
id | string | (optional) If defined, only updates specific element with id |
Plugins
Currently the Settings UI core can only handle a few basic types like input, selection, radio, checkbox, range and sections. You can however extend it to handle anything you throw at it.
Plugins can be registered when creating the SettingsUI Object:
const ui = ;
A plugin is a simple function that can use following parameters:
Parameters
Name | Type | Description |
---|---|---|
templateEntry | object | A single entry from the template array. |
update | function | A function that updates the form data. |
If the plugin function does not return anything (or null
), the entry is skipped.
Otherwise you can return an object that can have following properties:
Returns: Object
with
Properties
Name | Type | Description |
---|---|---|
htmlElements | array | Elements to render on the webpage. |
onStoreUpdate | function | Function that is called whenever the value in the store is updated. Receives the new value. |
Example
This is how you could handle a special message type with a clear button:
const plugins = { // only handle template entries with type = 'message' if type === 'message' const htmlElements = ; const text = document; textid = id; textplaceholder = help || defaultValue || ''; if defaultValue || defaultValue === 0 textvalue = defaultValue; text; const clear = document; labelinnerHTML = 'Clear'; label; htmlElements; htmlElements; return htmlElements ; }; // then register the pluginconst ui = ;
Roadmap
- slider, radio, checkbox components
- dynamic lists: add function for handling lists with variable length
Contributing
Contributions are welcome!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'feat: Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Commit messages
This project uses semantic-release for automated release versions. So commits in this project follow the Conventional Commits guidelines. I recommend using commitizen for automated commit messages.
License
Distributed under the MIT License. See LICENSE for more information.
Contact
Timo Bechtel - @TimoBechtel
Project Link: https://github.com/TimoBechtel/settings-ui