CromwellCMS / Cromwell

WordPress-like CMS for Next.js websites
https://cromwellcms.com
MIT License
699 stars 96 forks source link

Sortable menu items in Main menu plugin #181

Closed mraf closed 2 years ago

mraf commented 2 years ago

Please enable reorder elements in a menu item list using the mouse. Click on and drag an element to a new spot within the list, and the other items will adjust to fit.

eilrix commented 2 years ago

That would be much better to use. I'll look into that Btw admin-panel package already exports draggable list component, so it would be something like

import { DraggableList } from  '@cromwell/admin-panel';
<DraggableList
  data={[]}
  onChange={()=>{}}
  component={Item}
/>
mraf commented 2 years ago

Thanks! Good reference for another pluggins which can use this component.