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

@flourish/controls

v8.0.6

Published

Switchable dropdown/buttons/slider control

Downloads

1,125

Readme

Flourish controls

Add interchangeable controls (dropdown, buttons or slider) and controls container to a page.

How to install

npm install -s @flourish/controls

Add one or more control objects to your template state as well an object for the controls container

export var state = {
	controls_container: {},
	buttons_control: {
		control_type: "buttons"
	},
	dropdown_control: {
		control_type: "dropdown"
	},
	...
}

Add settings for the controls container in template.yml.

  - property: controls_container
    import: "@flourish/controls/container"

This will add a controls container alignment and spacing options in the settings.

Then import @flourish/controls for each controls instance.

- property: buttons_control
    import: "@flourish/controls"
- property: dropdown_control
    import: "@flourish/controls"

Basics

Initialise the controls container and individual controls outside any function:

import { createControlsContainer, createControls } from "@flourish/controls";

var buttons_control = createControls(state.buttons_control);
var dropdown_control = createControls(state.dropdown_control)

var controls_container = createControlsContainer(state.controls_container)
	.appendTo(layout.getSection("controls"))
	.add([buttons_control, dropdown_control]);

Add an on change handler to each controls instance: buttons_control.on("change", update);. This is usually done in the draw function.

In update you typically want to update the set of options and then call update method on the container and control(s):

controls_container.update();

buttons_control
    .options(button_options)
    .update();

dropdown_control
    .options(dropdown_options)
    .update();

If you're using this module alongside @flourish/ui-styles you should call the update method from the ui-styles object first (this will ensure the dropdown icon correctly matches the size and color styles set in the ui-styles panel). For example:

function updateControlStyles() {
	controls_style.update();
	button_style.update();
	dropdown_style.update();
	slider_style.update();
}

updateControlStyles();

Controls container methods

appendTo(parent_container)

Appends the controls container to the parent_container DOM node (this should usually be layout.getSection("controls")). Returns the controls container object.

add([controls_instances])

Takes an array of controls instances and appends these to the controls container. Returns the controls container object.

update()

This updates the controls container and all the appended controls instances (calling their individual update() methods). Returns the controls container object.

Controls methods

appendTo(parent_container)

Appends the control to the parent_container DOM node and injects CSS into the head if necessary.

Returns the control object.

format(formatterFunction, exclude)

Specify an output formatter to format the contents of the control. This takes a function from the @flourish/formatters module or an output_format_id from the @flourish/interpreter module. Optionally pass an array of values to exclude from formatting.

getNode()

Returns the container of the control that has been created. It will have a class of "fl-controls-container"

getSortedIndex()

Returns the index of the currently chosen value in a sorted version of the options array.

index([i])

With no argument returns the (unsorted) index of the currently selected option. If i is specified and corresponds to an index into the options array, sets the currently selected option to i. Returns the control object.

n_options()

Returns the current number of options.

on(event, callback)

Add callback to the list of event handlers. Currently the only supported event is "change". Returns the control object.

options([arr])

With no argument returns a copy of the current list of options displayed by the current control. With an array, replaces the current options with a copy of arr and returns the control object.

parse(parserFunction)

Specify a function to parse the contents of the control. This takes a function from the @flourish/localization or @flourish/interpreter module.

remove()

Removes the control (and its resize event handler) from the DOM. Returns the control object.

trigger(event)

Calls all the handlers assigned to event and returns the control object. Currently the only supported event type is "change".

update()

Rebuilds the control with latest settings. Returns the control object.

value([val])

With no argument returns the string value of the currently selected option. With val present changes the current index to match that of val in the options array and returns the control object. If val is not in the options array then nothing is changed but the control object is still returned.

visible([boolean])

Set the visibility of the control

Styling the controls

The controls have very basic styling. You can overwrite these styles with your own css and styling. We recommend using @flourish/ui-styles to style the controls.