Drag-and-drop sorting for Frost UI with handles, connected containers, axis control, lifecycle events, and automatic window scrolling.
- Reorder vertical, horizontal, and free-form collections
- Restrict dragging to a handle and exclude interactive controls
- Move items between connected containers, including empty lists
- Disable individual source or destination instances
- Automatic window scrolling near viewport edges
- Configurable, direction-aware item swap threshold
- Normalized item, container, and index data on lifecycle events
- Native
Sortableclass andsortablefQuery plugin - Prebuilt ESM and UMD bundles with source maps
- No component-specific CSS or Sass
- JSDoc-powered IntelliSense
Install Sortable with its Frost UI v4 and fQuery v5 peers:
npm i @fr0st/ui-sortable@3 @fr0st/ui@4 @fr0st/query@5The package root resolves to the compiled ESM bundle. Import the Frost UI stylesheet and the default component export:
import '@fr0st/ui/dist/frost-ui.min.css';
import Sortable from '@fr0st/ui-sortable';
const sortable = Sortable.init(
document.querySelector('#tasks'),
{
cursor: 'grab',
handle: '.drag-handle',
},
);@fr0st/ui and @fr0st/query are peer dependencies so the component shares the application's UI and fQuery instances. The package root, dist/*, and src/* are available through package exports.
Sortable requires a browser DOM or a compatible DOM environment configured through fQuery. Server-rendered applications should load the component on the client.
The ESM bundle imports @fr0st/ui and @fr0st/query. Frost UI and fQuery also require @fr0st/core, so map all three dependencies when loading the bundle directly in a browser:
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fr0st/ui@4/dist/frost-ui.min.css">
<script type="importmap">
{
"imports": {
"@fr0st/core": "https://cdn.jsdelivr.net/npm/@fr0st/core@4/dist/frost-core.esm.min.js",
"@fr0st/query": "https://cdn.jsdelivr.net/npm/@fr0st/query@5/dist/fquery.esm.min.js",
"@fr0st/ui": "https://cdn.jsdelivr.net/npm/@fr0st/ui@4/dist/frost-ui.esm.min.js"
}
}
</script>
<script type="module">
import Sortable from 'https://cdn.jsdelivr.net/npm/@fr0st/ui-sortable@3/dist/frost-ui-sortable.esm.min.js';
Sortable.init(document.querySelector('#tasks'));
</script>Load Frost UI's all-in-one bundle before Sortable. The UI bundle supplies both the UI and fQuery globals expected by the component:
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fr0st/ui@4/dist/frost-ui.min.css">
<script src="https://cdn.jsdelivr.net/npm/@fr0st/ui@4/dist/frost-ui-bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fr0st/ui-sortable@3/dist/frost-ui-sortable.min.js"></script>
<script>
const sortable = UI.Sortable.init(
document.querySelector('#tasks'),
);
</script>The UMD bundle adds Sortable to the existing globalThis.UI object. It expects globalThis.UI and globalThis.fQuery to exist before it loads. If the non-bundled Frost UI build is used instead, load fQuery, Frost UI, and Sortable in that order.
Do not load the separate fQuery script when using frost-ui-bundle.js or frost-ui-bundle.min.js.
Sortable targets direct <li> children by default:
<ul class="list-group" id="tasks">
<li class="list-group-item">Research</li>
<li class="list-group-item">Design</li>
<li class="list-group-item">Build</li>
</ul>import Sortable from '@fr0st/ui-sortable';
const sortable = Sortable.init(
document.querySelector('#tasks'),
{ cursor: 'grab' },
);Calling Sortable.init() again for the same container returns its existing instance. Dispose the current instance before reinitializing the container with different options.
Use handle when only part of an item should begin a drag. Inputs, text areas, buttons, selects, and options are excluded by the default cancel selector, including nested content inside those controls.
Cancel checks include ancestors of the handle up to, but not including, the sortable container. A handle inside a button is therefore excluded too. Use cancel: null to disable these exclusions, or supply a custom selector.
<ul class="list-group" id="tasks">
<li class="list-group-item d-flex align-items-center gap-3">
<span class="drag-handle badge bg-secondary">Drag</span>
<span class="flex-grow-1">Review pull request</span>
<button class="btn btn-sm btn-outline-danger" type="button">Delete</button>
</li>
</ul>Sortable.init(document.querySelector('#tasks'), {
cursor: 'grab',
handle: '.drag-handle',
});Both items and handle accept comma-separated selectors. For example, items: ':scope > .task, :scope > .note' with handle: '.drag-handle, .grip' allows either handle inside either item type.
Initialize each container with a shared connectWith selector. Give empty containers a visible size so pointer proximity can select them.
<div class="row">
<div class="col">
<ul class="connected list-group" id="available">
<li class="list-group-item">Alpha</li>
<li class="list-group-item">Bravo</li>
</ul>
</div>
<div class="col">
<ul class="connected list-group" id="selected" style="min-height: 3rem"></ul>
</div>
</div>document.querySelectorAll('.connected').forEach((node) => {
Sortable.init(node, {
connectWith: '.connected',
cursor: 'grab',
});
});The receiving instance controls dropOnEmpty and disabled. Moving between containers triggers send on the previous container and receive on the new container.
Containers can use different cursor and handle settings. On transfer, Sortable restores the previous container's cursor targets before send, then applies the receiving container's cursor to its items or handles during receive.
Options are resolved in this order:
- Component defaults
- The container's
data-ui-*attributes - Options passed to
Sortable.init()
Resolved instance.options are frozen.
| Option | Type | Default | Description |
|---|---|---|---|
axis |
'x' | 'y' | null |
null |
Constrain item placement decisions to one axis. |
cancel |
string | null |
'input, textarea, button, select, option' |
Prevent matching controls or their nested content from starting a sort. |
connectWith |
string | null |
null |
Select other Sortable containers that can exchange items. |
cursor |
string |
'auto' |
Set the cursor on sortable items or configured handles. |
disabled |
boolean |
false |
Disable sorting and connected-list receiving initially. |
dropOnEmpty |
boolean |
true |
Allow this container to receive items while empty. |
handle |
string | null |
null |
Select the drag handle inside each sortable item. |
helperClass |
string | null |
'bg-body-tertiary' |
Add one or more classes to the active item during a drag. |
items |
string |
':scope > li' |
Select sortable items relative to the container. |
scroll |
boolean |
true |
Scroll the window while dragging near a viewport edge. |
scrollSensitivity |
number |
20 |
Start auto-scrolling within this distance of an edge, in pixels. |
scrollSpeed |
number |
5 |
Scroll this many pixels per animation frame. |
swapThreshold |
number |
0.25 |
Swap after crossing this fraction of the next item, from 0 to 1. The threshold is mirrored when reversing direction. |
const sortable = Sortable.init(node, {
axis: 'y',
cancel: 'input, textarea, button, select, option, [data-no-sort]',
connectWith: '.task-list',
cursor: 'grab',
disabled: false,
dropOnEmpty: true,
handle: '.drag-handle',
helperClass: 'bg-primary-subtle shadow-sm',
items: ':scope > .task',
scroll: true,
scrollSensitivity: 32,
scrollSpeed: 8,
swapThreshold: 0.25,
});Auto-scrolling updates item placement and sorting events even while the pointer remains stationary near an edge. Scroll steps are instant regardless of the page's CSS scroll-behavior; Sortable does not modify that style.
Every option can be supplied through a data-ui-* attribute. fQuery normalizes boolean, numeric, array, object, and null values.
<ul
id="tasks"
data-ui-toggle="sortable"
data-ui-axis="y"
data-ui-connect-with=".task-list"
data-ui-cursor="grab"
data-ui-drop-on-empty="true"
data-ui-handle=".drag-handle"
data-ui-helper-class="bg-primary-subtle shadow-sm"
data-ui-items=":scope > .task"
data-ui-scroll="true"
data-ui-scroll-sensitivity="32"
data-ui-scroll-speed="8"
data-ui-swap-threshold="0.25">
</ul>Data attributes do not initialize the component automatically. Initialize matching elements directly or through the fQuery plugin:
$('[data-ui-toggle="sortable"]').sortable();Return the existing instance for node, or create one with the supplied options.
Return a fresh array of elements matching the configured items selector.
const items = sortable.items();Stop the instance from starting sorts or receiving connected items.
Allow the instance to start and receive sorts.
Detach Sortable events, restore original inline cursor declarations (including !important priority), release cursor style locks, cancel active auto-scrolling, clear active drag state, remove stored component data, and set node and options to null. Calling dispose() again has no effect.
Registration adds sortable to fQuery.QuerySet.prototype:
const sortable = $('#tasks').sortable({ cursor: 'grab' });
$('#tasks').sortable('disable');
$('#tasks').sortable('enable');
const items = $('#tasks').sortable('items');
$('#tasks').sortable('dispose');Calling the plugin on multiple elements initializes every valid element and returns the first result.
Listen with fQuery's namespaced event API:
$.addEvent(
'#tasks',
'sort.ui.sortable sorting.ui.sortable sorted.ui.sortable update.ui.sortable',
(event) => {
console.log({
item: event.item,
from: event.from,
to: event.to,
oldIndex: event.oldIndex,
newIndex: event.newIndex,
});
},
);| Event | Target | Description |
|---|---|---|
sort.ui.sortable |
Source | The first movement begins an active sort. |
sorting.ui.sortable |
Current container | The item changes index within the same container. |
send.ui.sortable |
Previous container | The item moves out to a connected container. |
receive.ui.sortable |
New container | The item enters from a connected container. |
sorted.ui.sortable |
Final container | The pointer or touch is released, or the touch sequence is cancelled, after an active sort. |
update.ui.sortable |
Changed container(s) | The final order changes. Cross-container moves update both source and destination. |
Every event exposes the same normalized fields directly and through event.detail:
| Field | Type | Description |
|---|---|---|
item |
HTMLElement |
Item being sorted. |
from |
HTMLElement |
Source for sort, current container for sorting, previous container for send/receive, and original source for sorted/update. |
to |
HTMLElement |
Source for sort, current container for sorting, new container for send/receive, and final destination for sorted/update. |
oldIndex |
number |
Previous index for movement events, otherwise the original index. |
newIndex |
number |
New index for movement events, otherwise the final index. |
detail.target |
HTMLElement |
Alias of the active item retained for Frost UI event compatibility. |
Indices are calculated among elements matching the container's configured items selector; unrelated child elements are not counted.
Sortable does not ship component-specific CSS or Sass. It composes existing Frost UI classes and leaves collection layout to the application. The default helper class, bg-body-tertiary, comes from Frost UI and can be replaced or disabled with helperClass: null.
Pointer sorting does not replace keyboard-accessible ordering controls. For workflows where order is essential, provide buttons or another keyboard mechanism that performs the same move and communicates the updated position to assistive technology. A visible drag handle should have an accessible label that describes its purpose.
For touch interfaces, applying touch-action: none to sortable items or handles prevents browser gestures from competing with dragging:
.drag-handle {
touch-action: none;
user-select: none;
}Bundles are built with Vite's baseline-widely-available target. The automated browser suite is configured for the Chromium, Firefox, and WebKit versions supplied by the installed Playwright release.
Use Node.js matching ^20.19.0 || ^22.13.0 || >=24. Install dependencies with npm ci, then install Playwright browsers with npx playwright install --with-deps.
npm test
npm run lint
npm run buildnpm test rebuilds JavaScript, then runs the Playwright suite in Chromium, Firefox, and WebKit. npm run test:browser runs the suite against the existing bundles, so rebuild after changing source files.
After building, npm run test:coverage runs Chromium tests and writes coverage reports to coverage/ and test-results/coverage/.
npm run test:headed and npm run test:ui also use the existing bundles and open headed browsers or the Playwright UI.
Frost UI Sortable is released under the MIT License.