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

v1.8.17

Published

Panel of inputs for parameter setting

Downloads

82

Readme

settings-panel unstable

Simple settings panel for your app, demo or tests.

settings-panel

In the preview there is a typer theme, for other themes or customizations see demo.

Usage

npm install settings-panel

var createPanel = require('settings-panel')

var panel = createPanel([
  {type: 'range', label: 'my range', min: 0, max: 100, value: 20},
  {type: 'range', label: 'log range', min: 0.1, max: 100, value: 20, scale: 'log'},
  {type: 'text', label: 'my text', value: 'my cool setting', help: 'why this is cool'},
  {type: 'checkbox', label: 'my checkbox', value: true},
  {type: 'color', label: 'my color', format: 'rgb', value: 'rgb(10,200,0)', change: value => console.log(value)},
  {type: 'button', label: 'gimme an alert', change: () => alert('hello!')},
  {type: 'select', label: 'select one', options: ['option 1', 'option 2'], value: 'option 1'}
],
  {
    title: 'Settings',
    style: 'position: absolute; right: 0; z-index: 1'
  }
);

Run this in requirebin

API

const Panel = require('settings-panel')

The first argument is a list of fields or object with id/field pairs. Each field may have following properties:

  • type one of rangeintervalcheckboxcolorselectswitchrawtextareatext or any <input> type. If undefined, type will be detected from the value.
  • id used as key to identify the field. If undefined, the label will be used instead.
  • label label for the input. If label is false, it will be hidden.
  • value current value of the field.
  • default explicitly defines default value, if differs from the initial value.
  • orientation defines position of a label relative to the input, one of top, left, right, bottom. Redefines options.orientation.
  • style appends additinal style to the field, can be a css object or css string.
  • hidden defines whether field should be visually hidden, but present as a value.
  • disabled just disables the input, making it inactive.
  • input callback, invoked if value changed.
  • init invoked once component is set up.
  • change invoked each time the field value changed, whether through input or API.
  • before and after define an html to display before or after the element, can be a string, an element or a function returning one of the two. That may come handy in displaying help, info or validation messages, separators, additional buttons, range limits etc - anything related to the element.
  • title will display text in tooltip.

For example,

{type: 'checkbox', label: 'My Checkbox', value: true, input: value => {}}

Some types have additional properties:

  • range can specify a min, max, and step (or integer steps). Scale can be either 'linear' (default) or 'log'. If a log scale, the sign of min, max, and value must be the same and only steps is permitted (since the step size is not constant on a log scale). It also takes precision optional parameter for the displayed value.
  • interval obeys the same semantics as range inputs, except the input and ouput is a two-element array corresponding to the low/high bounds, e.g. value: [1, 7.5].
  • color can specify a format as either rgbhexarray
  • select, switch and checkbox can specify options, either as an Array (in which case the value is the same as the option text) or as an object containing key/value pairs (in which case the key/value pair maps to value value/label pairs).
  • text and textarea can specify placeholder.
  • raw can define content method, returning HTML string, element or documentFragment.

options

// element to which to append the panel
container: document.body,

// a title to add to the top of the panel
title: 'Settings',

// specifies label position relative to the input: `top` • `left` • `bottom` • `right`
orientation: 'left',

// collapse by clicking on title
collapsible: false,

// use a theme, see `theme` folder.
// available themes: typer, flat, control, dragon
theme: require('settings-panel/theme/none'),

//theme customization, can redefine theme defaults
palette: ['black', 'white'],
labelWidth: '9em',
inputHeight: '1.6em',
fontFamily: 'sans-serif',
fontSize: 13,

//additional css, aside from the theme’s one. Useful for custom styling
css: '',

//appends additional className to the panel element.
className: ''

Attach callback to change, input or init event.

The callback will recieve name, data and state arguments:

panel.on('change', (name, value, state) => {
  // name === 'my checkbox'
  // value === false
  // state === {'my checkbox': false, 'my range': 75, ...}
});

Get the value of a field defined by name. Or get full list of values, if name is undefined.

Update specific field, with value or field options. You can also pass an object or array to update multiple fields:

panel.set({ 'my range': { min: -100, value: 200}, 'my color': '#fff' });

Rerender panel with new options. Options may include values for the theme, like palette, fontSize, fontFamily, labelWidth, padding etc, see specific theme file for possible options.

Spotted in the wild

plot-grid app-audio gl-waveform

See also

control-panel — original forked settings panel. oui — sci-ish panel. dat.gui — other oldschool settings panel. quicksettings — an alternative versatile settings panel. dis-gui — remake on dat.gui.