Public
Edited
Feb 21, 2023
Paused
3 stars
Insert cell
Insert cell
Insert cell
viewof demoDrag = Inputs.form(
[0, .3, .6, 1].map((value, i) => Inputs.range([0, 1], {
value,
step: .01,
label: `Input #${i + 1}`,
})),
{ template: sortTemplate() }
)
Insert cell
Insert cell
function sortCheckboxes(form) {
const checked = el => el.firstElementChild.checked;
const parent = form.querySelector(":scope > div");
// Make note of the original order.
const indices = new Map(Array.from(parent.children, (n, i) => [n, i]));
// Sort checked boxes to the front.
const sort = (a, b) => checked(b) - checked(a) || indices.get(a) - indices.get(b);
form.addEventListener("input", e => sortChildren(parent, e.target, sort));
parent.append(...[...parent.children].sort(sort));
return form;
}
Insert cell
sortCheckboxes(
Inputs.checkbox(["alpha", "beta", "gamma", "delta", "epsilon"], {
label: "Selection",
value: ["delta", "beta"],
})
)
Insert cell
Insert cell
import {inputTemplate} from "@mootari/input-template"
Insert cell
viewof demoType = inputTemplate(
Inputs.form(
["dog", "cat", "wolf", "mouse"].map(value => Inputs.text({value})),
{ template: sortTemplate((a, b) => a.value.localeCompare(b.value)) }
),
{ label: "Animals" }
)
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more