2024-03-27 23:20:38 +00:00
|
|
|
export async function createSortable(el, opts = {}) {
|
2023-07-17 18:06:37 +00:00
|
|
|
const {Sortable} = await import(/* webpackChunkName: "sortablejs" */'sortablejs');
|
2024-03-27 23:20:38 +00:00
|
|
|
|
|
|
|
return new Sortable(el, {
|
|
|
|
animation: 150,
|
|
|
|
ghostClass: 'card-ghost',
|
|
|
|
onChoose: (e) => {
|
|
|
|
const handle = opts.handle ? e.item.querySelector(opts.handle) : e.item;
|
|
|
|
handle.classList.add('tw-cursor-grabbing');
|
|
|
|
opts.onChoose?.(e);
|
|
|
|
},
|
|
|
|
onUnchoose: (e) => {
|
|
|
|
const handle = opts.handle ? e.item.querySelector(opts.handle) : e.item;
|
|
|
|
handle.classList.remove('tw-cursor-grabbing');
|
|
|
|
opts.onUnchoose?.(e);
|
|
|
|
},
|
|
|
|
...opts,
|
|
|
|
});
|
2023-07-17 18:06:37 +00:00
|
|
|
}
|