🎉 JointJS has new documentation! 🥳
ui.StackLayoutView
is a view of a stack layout that implements
moving elements between stacks, and provides interfaces for changing the default behaviour.
Include joint.ui.StackLayoutView.js
and its dependency joint.layout.StackLayout.js
in your
HTML:
<script src="joint.layout.StackLayout.js"></script>
<script src="joint.ui.StackLayoutView.js"></script>
To use stack layout view you need to:
layout.StackLayoutView
class.elementMove
) set to false
(otherwise an exception is thrown).stackIndex
attribute set (otherwise it will be ignored).const layoutOptions = {
direction: 'TB',
topBottom: {
x: 20,
y: 20
},
stackCount: 4,
stackSize: 200
};
paper.setInteractivity(false);
const stackLayoutView = new joint.ui.StackLayoutView({
layoutOptions,
paper
});
dragstart(element, x, y) | Start a new drag operation with element set as its source. |
---|---|
drag(element, x, y) | Drag the source element and display preview of the drop location if any. |
dragend(element, x, y) | End the drag operation and move the source element to the target stack if there was a valid drop target. |
canDrop() | Does the current drag operation have a valid drop target? i.e. an element can be moved to a new location. |
cancelDrag() | Stop the current drag operation. |
The following table lists options that you can pass to the ui.StackLayoutView
constructor function:
layoutOptions | object | An object corresponding to layout.StackLayout options. | |||||||||||||||
paper | dia.Paper | An instance of the paper object. | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
preview(dragData, stackLayoutView) | function | A callback function to customize the preview element. It must return an SVGElement object. The preview's position will be set to the middle of the stackSize and to half of the stackElementGap automatically.
The
The plugin also adds the
|
|||||||||||||||
validateMoving(dragData, stackLayoutView) | function | A predicate, that returns true if the element , which the user interacts with, can be moved to another stack. It defaults to return true; .
The
|
|||||||||||||||
canInteract(elementView, stackLayoutView) | function | A predicate, that returns true if the elementView , which the user interacts with, can be dragged. By default, it returns true for elements with a defined stackIndex attribute.
|
|||||||||||||||
modifyInsertElementIndex(dragData, point, stackLayoutView) | function | The value of the insertElementIndex is derived from the pointer position and can be further modified using this callback. The callback is triggered before validation and can be used, for example, to find the nearest valid insert index.
The
The |
When the user drags an element, the plugin creates a copy of the elementView DOM (ghost) and adds the class name stack-layout-ghost
(and stack-layout-ghost-invalid
if the drop is invalid).
.stack-layout-ghost rect {
stroke: blue;
}
.stack-layout-ghost-invalid rect {
stroke: blue;
}
The StackLayoutView
object has the model
property that can be used to manipulate elements programmatically. The model has an 'update'
event which fires when the layout is updated. The model has following properties:
bbox | object | A bounding box around elements. | |||||||||
stacks | Array<object> | The array of stack objects with these properties.
|
|||||||||
elements | Array<object> | The array of elements to be laid out (elements with the stackIndex attribute defined). |
|||||||||
update() | Recalculates the layout manually. Useful when the elements in stacks are changed programmatically. | ||||||||||
getStackFromPoint(point) | Finds a stack from the point. | ||||||||||
getInsertElementIndexFromPoint(stack, point) | Finds an insert index in the stack from the point. | ||||||||||
getStackFromElement(element) | Finds a stack to which the element belongs. | ||||||||||
insertElement(element, targetStack, insertElementIndex) | Inserts the element in the targetStack at the specified index. It calls update() internally. |