npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

settings-ui

v1.3.3

Published

Easily generate web forms from json with data binding.

Downloads

16

Readme

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

| 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 = 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

| 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.addChangeListener((key, value) =>
  console.log(`${key} was updated to ${value}`)
);

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.render().to(document.getElementById('out'));
replace: function

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

Parameters

| Name | Type | Description | | ------- | :------------: | ------------------: | | element | HTMLDOMElement | Element 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

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

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 = [
  ({ 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

  • [x] 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