This repository contains utils for implementing 2d planning editors in an Combeenation Configurator.
Here are some useful links to the documentation of the used external packages:
Daybrush (the package owner of infinite viewer, moveable and selecto) has a very useful storybook which shows a lot of examples: Storybook Daybrush
This handler can be used to attach to a Dataview
component of the configurator.
It allows you to drag and drop from a Dataview
into a drop container and provides events to write custom behaviors.
Create the CbnDataviewDragManager
specifying the type of the custom drag data, the dataview
to drag items from, a selector for the target container (where items will be dropped into), and optionally the class of disabled dataview items.
onDragStart
and onDrag
need to be overwritten to set the drag data and handle the drop logic, respectively. Drag image creation, drag image positioning and drop zone detection are done by the handler.
Optionally, onDragEnd
can be overwritten for any post drag logic.
See docs for more infos: CbnDataviewDragManager
Provides a full infinite 2d viewer which can be used to control complex planning modes. In addition to the default features, it offers custom methods such as automatic viewport centering.
CbnInfiniteViewer
specifying the container element, and optionally CbnInfiniteViewerOptions for customization. See InfiniteViewerOption for detailed information.See docs for more infos: CbnInfiniteViewer
Moveable
and Selecto
managerCan be used to make html elements moveable and draggable (and much more) inside the infinite viewer. It provides a lot of functionality out-of-the-box and has been adapted with several Combeenation-specific methods. All necessary events are exposed and can be fully customized.
Create the CbnMoveableSelectoManager
specifying the CbnInfiniteViewer
to use, selectors for the moveable items and the container, and optionally MoveableOptions.
Overwrite the events you need. Using onSelect
for selection handling and onDrag
for position handling is advised.
See docs for more infos: CbnMoveableSelectoManager
Provides methods that are frequently used across various projects. These methods cover a wide spectrum, from simple unit conversions to complex mathematical calculations, useful SVG manipulations, and much more.
See docs for more infos:
You can view the exported and provided types in the documentation: Documentation - Types
Infinite Viewer, Moveable and Selecto types are re-exported.