1.3.3 • Published 4 years ago

settings-ui v1.3.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Forks Stargazers Issues MIT License

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:

<script src="https://unpkg.com/settings-ui/dist/index.umd.js"></script>

CSS

Settings-UI comes with some basic styling. Not required, but you could install it like so:

Using a bundler

import 'settings-ui/dist/index.css';

CDN

<link rel="stylesheet" href="https://unpkg.com/settings-ui/dist/index.css" />

Usage

Import it as module:

import SettingsUI from 'settings-ui';

Then use it like so:

// template from which the ui is generated
const template = [
  {
    id: 'number',
    type: 'number',
  },
  {
    id: 'text',
    type: 'text',
  },
  {
    id: 'selection',
    type: 'number',
    values: [1, 2, 3],
  },
];

const ui = SettingsUI();
// create ui and bind to a store object
const store = ui.bind(template);
// render ui
ui.render().to(document.body);

API

bind: function

Creates the ui from template and bind it's values to a store object. Returns a store object.

Parameters
NameTypeDescription
templatearrayYour template from which the ui is generated.
storeobjectOptional Use a predefined object to store the inputted data. If not set, an empty one is created.
Example
const ui = SettingsUI();
const store = {};
ui.bind(template, store);
store: object

Object that stores inputted data. Using the ids from template as keys.

Might look like this
console.log(store);

/* OUTPUT:
{
  ballCount: 245,
  number: 3,
  section: {
    title: 'someText',
    speed: 23
  },
}
*/

console.log(store.section.speed); // => 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
NameTypeDescription
idstringRequired Used as property names for the store and for ids in HTML.
namestringShort description. Used mainly for labels.
helpstringHelp text. Used for titles or placeholders
typestringDefines 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.
descriptionstringCurrently not used by core components.
namestringShort description. Used mainly for labels.
minnumberFor number: lowest possible number, for text: minimal character length.
maxnumberFor number: highest possible number, for text: max character length.
stepsnumberAvailable steps for inputting numbers.
inputTypestringForces specific elements: input, radio, selection.
defaultValuestringValue that is used when no value has been set. E.g. when clearing an input field, this value is set.
valuesarrayDefines 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}
optionsarrayFor type = "section": Defines subtypes for a section.
onUpdate(newValue)functionFunction 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
NameTypeDescription
listenerfunctionIs called with a id and value as parameter.
Example
ui.addChangeListener((key, value) =>
  console.log(`${key} was updated to ${value}`)
);

removeChangeListener: function

Removes a change listener.

Parameters
NameTypeDescription
listenerfunctionListener 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
NameTypeDescription
elementHTMLDOMElementElement to render the UI in.
Example
ui.render().to(document.getElementById('out'));
replace: function

Similar to to(element) but replaces the element with the generated UI.

Parameters
NameTypeDescription
elementHTMLDOMElementElement to replace.
ui.render().replace(document.getElementById('out'));
get: function

Returns the generated element without appending it to the dom.

Example
ui.render().get();

update: function

Updates HTMLElements with values from store.

Parameters
NameTypeDescription
idstring(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 = SettingsUI({
  plugins: [],
});

A plugin is a simple function that can use following parameters:

Parameters

NameTypeDescription
templateEntryobjectA single entry from the template array.
updatefunctionA 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

NameTypeDescription
htmlElementsarrayElements to render on the webpage.
onStoreUpdatefunctionFunction 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 = [
  ({ id, type, help, defaultValue }, update) => {
    // only handle template entries with type = 'message'
    if (type === 'message') {
      const htmlElements = [];
      const text = document.createElement('textarea');
      text.id = id;
      text.placeholder = help || defaultValue || '';
      if (defaultValue || defaultValue === 0) text.value = defaultValue;

      text.addEventListener('input', e => update(e.target.value));

      const clear = document.createElement('button');
      label.innerHTML = 'Clear';
      label.addEventListener('click', () => {
        text.value = '';
        update('');
      });

      htmlElements.push(label);
      htmlElements.push(text);
      return { htmlElements };
    }
  },
];

// then register the plugin
const ui = SettingsUI({ plugins });

Roadmap

  • slider, radio, checkbox components
  • dynamic lists: add function for handling lists with variable length

Contributing

Contributions are welcome!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'feat: Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. 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

1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago