@neo4j-ndl/react 2.9.4 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/lib/LICENSES.txt +26 -0
  3. package/lib/NOTICE.txt +6 -0
  4. package/lib/cjs/_common/utils.js +41 -1
  5. package/lib/cjs/_common/utils.js.map +1 -1
  6. package/lib/cjs/index.js +1 -0
  7. package/lib/cjs/index.js.map +1 -1
  8. package/lib/cjs/tree-view/TreeItemWrapper.js +201 -0
  9. package/lib/cjs/tree-view/TreeItemWrapper.js.map +1 -0
  10. package/lib/cjs/tree-view/TreeView.js +314 -0
  11. package/lib/cjs/tree-view/TreeView.js.map +1 -0
  12. package/lib/cjs/tree-view/TreeViewItem.js +89 -0
  13. package/lib/cjs/tree-view/TreeViewItem.js.map +1 -0
  14. package/lib/cjs/tree-view/TreeViewTextItem.js +153 -0
  15. package/lib/cjs/tree-view/TreeViewTextItem.js.map +1 -0
  16. package/lib/cjs/tree-view/TreeViewTrail.js +30 -0
  17. package/lib/cjs/tree-view/TreeViewTrail.js.map +1 -0
  18. package/lib/cjs/tree-view/index.js +26 -0
  19. package/lib/cjs/tree-view/index.js.map +1 -0
  20. package/lib/cjs/tree-view/tree-view-keyboard-coordinates.js +119 -0
  21. package/lib/cjs/tree-view/tree-view-keyboard-coordinates.js.map +1 -0
  22. package/lib/cjs/tree-view/tree-view-keyboard-helpers.js +75 -0
  23. package/lib/cjs/tree-view/tree-view-keyboard-helpers.js.map +1 -0
  24. package/lib/cjs/tree-view/tree-view-types.js +24 -0
  25. package/lib/cjs/tree-view/tree-view-types.js.map +1 -0
  26. package/lib/cjs/tree-view/tree-view-utils.js +187 -0
  27. package/lib/cjs/tree-view/tree-view-utils.js.map +1 -0
  28. package/lib/esm/_common/utils.js +38 -0
  29. package/lib/esm/_common/utils.js.map +1 -1
  30. package/lib/esm/index.js +1 -0
  31. package/lib/esm/index.js.map +1 -1
  32. package/lib/esm/tree-view/TreeItemWrapper.js +172 -0
  33. package/lib/esm/tree-view/TreeItemWrapper.js.map +1 -0
  34. package/lib/esm/tree-view/TreeView.js +310 -0
  35. package/lib/esm/tree-view/TreeView.js.map +1 -0
  36. package/lib/esm/tree-view/TreeViewItem.js +63 -0
  37. package/lib/esm/tree-view/TreeViewItem.js.map +1 -0
  38. package/lib/esm/tree-view/TreeViewTextItem.js +147 -0
  39. package/lib/esm/tree-view/TreeViewTextItem.js.map +1 -0
  40. package/lib/esm/tree-view/TreeViewTrail.js +26 -0
  41. package/lib/esm/tree-view/TreeViewTrail.js.map +1 -0
  42. package/lib/esm/tree-view/index.js +22 -0
  43. package/lib/esm/tree-view/index.js.map +1 -0
  44. package/lib/esm/tree-view/tree-view-keyboard-coordinates.js +115 -0
  45. package/lib/esm/tree-view/tree-view-keyboard-coordinates.js.map +1 -0
  46. package/lib/esm/tree-view/tree-view-keyboard-helpers.js +68 -0
  47. package/lib/esm/tree-view/tree-view-keyboard-helpers.js.map +1 -0
  48. package/lib/esm/tree-view/tree-view-types.js +23 -0
  49. package/lib/esm/tree-view/tree-view-types.js.map +1 -0
  50. package/lib/esm/tree-view/tree-view-utils.js +179 -0
  51. package/lib/esm/tree-view/tree-view-utils.js.map +1 -0
  52. package/lib/types/_common/utils.d.ts +12 -0
  53. package/lib/types/index.d.ts +1 -0
  54. package/lib/types/table/Table.d.ts +1 -1
  55. package/lib/types/tree-view/TreeItemWrapper.d.ts +32 -0
  56. package/lib/types/tree-view/TreeView.d.ts +34 -0
  57. package/lib/types/tree-view/TreeViewItem.d.ts +52 -0
  58. package/lib/types/tree-view/TreeViewTextItem.d.ts +23 -0
  59. package/lib/types/tree-view/TreeViewTrail.d.ts +24 -0
  60. package/lib/types/tree-view/index.d.ts +23 -0
  61. package/lib/types/tree-view/tree-view-keyboard-coordinates.d.ts +23 -0
  62. package/lib/types/tree-view/tree-view-keyboard-helpers.d.ts +25 -0
  63. package/lib/types/tree-view/tree-view-types.d.ts +80 -0
  64. package/lib/types/tree-view/tree-view-utils.d.ts +77 -0
  65. package/lib/types/typography/Typography.d.ts +1 -1
  66. package/package.json +3 -1
@@ -0,0 +1,172 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ /**
14
+ *
15
+ * Copyright (c) "Neo4j"
16
+ * Neo4j Sweden AB [http://neo4j.com]
17
+ *
18
+ * This file is part of Neo4j.
19
+ *
20
+ * Neo4j is free software: you can redistribute it and/or modify
21
+ * it under the terms of the GNU General Public License as published by
22
+ * the Free Software Foundation, either version 3 of the License, or
23
+ * (at your option) any later version.
24
+ *
25
+ * This program is distributed in the hope that it will be useful,
26
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ * GNU General Public License for more details.
29
+ *
30
+ * You should have received a copy of the GNU General Public License
31
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
32
+ */
33
+ import classNames from 'classnames';
34
+ import React, { useRef } from 'react';
35
+ import { findFocusableChildren, findFocusableSibling } from '../_common/utils';
36
+ import { DragIcon } from '../icons';
37
+ import { Trail } from './TreeViewTrail';
38
+ import { focusCellInNextRow, focusCellInPreviousRow, focusNextRow, focusPreviousRow, } from './tree-view-keyboard-helpers';
39
+ /**
40
+ * Handles keydown events for when the item itself is focused (wrapperRef.current)
41
+ * Moves the focus between the item and its children as well as toggles collapsing of the item
42
+ * @param event
43
+ * @param shouldDisableInteraction
44
+ * @param wrapperRef
45
+ * @param onCollapse
46
+ * @param item
47
+ * @returns
48
+ */
49
+ const onWrapperKeyDown = (event, shouldDisableInteraction, wrapperRef, onCollapse, item) => {
50
+ if (shouldDisableInteraction || wrapperRef.current === null) {
51
+ return;
52
+ }
53
+ if (event.key === 'Enter' && onCollapse) {
54
+ onCollapse();
55
+ }
56
+ else if (event.key === 'ArrowRight') {
57
+ event.preventDefault();
58
+ if (item.canHaveSubItems && item.isCollapsed && onCollapse) {
59
+ onCollapse();
60
+ }
61
+ else {
62
+ const focusable = findFocusableChildren(wrapperRef.current);
63
+ const [firstElement] = focusable;
64
+ if (firstElement instanceof HTMLElement) {
65
+ firstElement.focus();
66
+ }
67
+ }
68
+ event.preventDefault();
69
+ }
70
+ else if (event.key === 'ArrowLeft') {
71
+ event.preventDefault();
72
+ if (item.canHaveSubItems && !item.isCollapsed && onCollapse) {
73
+ onCollapse();
74
+ }
75
+ else {
76
+ focusPreviousRow(wrapperRef.current);
77
+ }
78
+ }
79
+ else if (event.key === 'ArrowDown') {
80
+ event.preventDefault();
81
+ focusNextRow(wrapperRef.current);
82
+ }
83
+ else if (event.key === 'ArrowUp') {
84
+ event.preventDefault();
85
+ focusPreviousRow(wrapperRef.current);
86
+ }
87
+ };
88
+ /**
89
+ * Handles keydown events for when one of the items children is focused
90
+ * Moves the focus between the children of the item and up to the parent if needed.
91
+ * Stops the event from propagating to the parent since it has it own keydown handler
92
+ * The parent is the wrapperRef.current and uses onWrapperKeyDown
93
+ * @param event
94
+ * @param shouldDisableInteraction
95
+ * @param wrapperRef
96
+ */
97
+ const onInnerDivKeyDown = (event, shouldDisableInteraction, wrapperRef) => {
98
+ var _a;
99
+ if (shouldDisableInteraction) {
100
+ return;
101
+ }
102
+ event.stopPropagation();
103
+ if (event.key === 'ArrowRight') {
104
+ event.preventDefault();
105
+ const nextElement = findFocusableSibling(wrapperRef, 'next');
106
+ if (nextElement) {
107
+ nextElement.focus();
108
+ }
109
+ }
110
+ else if (event.key === 'ArrowLeft') {
111
+ event.preventDefault();
112
+ const previousElement = findFocusableSibling(wrapperRef, 'prev');
113
+ if (previousElement) {
114
+ previousElement.focus();
115
+ }
116
+ else {
117
+ (_a = wrapperRef.current) === null || _a === void 0 ? void 0 : _a.focus();
118
+ }
119
+ }
120
+ else if (event.key === 'ArrowDown' && wrapperRef.current !== null) {
121
+ event.preventDefault();
122
+ focusCellInNextRow(wrapperRef.current);
123
+ }
124
+ else if (event.key === 'ArrowUp' && wrapperRef.current !== null) {
125
+ event.preventDefault();
126
+ focusCellInPreviousRow(wrapperRef.current);
127
+ }
128
+ else if (event.shiftKey && event.key === 'Tab') {
129
+ const previousElement = findFocusableSibling(wrapperRef, 'prev');
130
+ if (previousElement) {
131
+ event.preventDefault();
132
+ previousElement.focus();
133
+ }
134
+ }
135
+ else if (event.key === 'Tab') {
136
+ if (event.shiftKey) {
137
+ return;
138
+ }
139
+ const nextElement = findFocusableSibling(wrapperRef, 'next');
140
+ if (nextElement) {
141
+ nextElement.focus();
142
+ event.preventDefault();
143
+ }
144
+ }
145
+ };
146
+ /**
147
+ * Used as a helper function to wrap the TreeItem component
148
+ * This adds the drag handle and trail to the start of a tree item.
149
+ * Useful if you want to add additional functionality to the tree item but still keep the drag handle and trail
150
+ * Is also used internally to create the TreeViewTextItem component
151
+ */
152
+ export const TreeItemWrapper = React.forwardRef(function TreeItemWrapper(_a, ref) {
153
+ var { depth, shouldDisableInteraction, shouldDisableSorting, isGhost, isIndicator, onCollapse, item, setNodeRef, setActivatorNodeRef, dragHandleProps, style, trails, children, indentationWidth, tabIndex, onFocus } = _a,
154
+ // Need to destruct to avoid passing it to the component
155
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
156
+ restProps = __rest(_a, ["depth", "shouldDisableInteraction", "shouldDisableSorting", "isGhost", "isIndicator", "onCollapse", "item", "setNodeRef", "setActivatorNodeRef", "dragHandleProps", "style", "trails", "children", "indentationWidth", "tabIndex", "onFocus"]);
157
+ const wrapperRef = useRef(null);
158
+ return (_jsx("li", { ref: (el) => {
159
+ wrapperRef.current = el;
160
+ if (el === null)
161
+ return;
162
+ setNodeRef(el);
163
+ }, className: classNames({
164
+ 'ndl-tree-view-list-item': true,
165
+ indicator: isIndicator,
166
+ 'ndl-tree-view-list-item-placeholder': isGhost,
167
+ 'ndl-tree-view-list-item-disable-interaction': shouldDisableInteraction,
168
+ }), style: Object.assign(Object.assign({}, style), { paddingLeft: isIndicator ? `${depth * indentationWidth}px` : 0 }), role: "treeitem", onFocus: onFocus, "aria-selected": item.isSelected, "aria-expanded": item.canHaveSubItems ? !item.isCollapsed : undefined, onKeyDown: (event) => onWrapperKeyDown(event, shouldDisableInteraction !== null && shouldDisableInteraction !== void 0 ? shouldDisableInteraction : false, wrapperRef, onCollapse, item), children: _jsxs("div", { role: "presentation", className: "ndl-tree-view-list-item-content", ref: ref, onKeyDown: (event) => onInnerDivKeyDown(event, shouldDisableInteraction !== null && shouldDisableInteraction !== void 0 ? shouldDisableInteraction : false, wrapperRef), children: [!shouldDisableSorting && (_jsx("button", Object.assign({ className: "ndl-tree-view-drag-handle", ref: setActivatorNodeRef, "aria-label": "pick up" }, dragHandleProps, { tabIndex: tabIndex, children: _jsx(DragIcon, {}) }))), trails.map((trail, index) => {
169
+ return _jsx(Trail, { variant: trail }, index);
170
+ }), children] }) }));
171
+ });
172
+ //# sourceMappingURL=TreeItemWrapper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeItemWrapper.js","sourceRoot":"","sources":["../../../src/tree-view/TreeItemWrapper.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,310 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ /**
14
+ *
15
+ * Copyright (c) "Neo4j"
16
+ * Neo4j Sweden AB [http://neo4j.com]
17
+ *
18
+ * This file is part of Neo4j.
19
+ *
20
+ * Neo4j is free software: you can redistribute it and/or modify
21
+ * it under the terms of the GNU General Public License as published by
22
+ * the Free Software Foundation, either version 3 of the License, or
23
+ * (at your option) any later version.
24
+ *
25
+ * This program is distributed in the hope that it will be useful,
26
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ * GNU General Public License for more details.
29
+ *
30
+ * You should have received a copy of the GNU General Public License
31
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
32
+ */
33
+ import { DndContext, DragOverlay, KeyboardSensor, MeasuringStrategy, PointerSensor, closestCenter, defaultDropAnimation, useSensor, useSensors, } from '@dnd-kit/core';
34
+ import { SortableContext, arrayMove, verticalListSortingStrategy, } from '@dnd-kit/sortable';
35
+ import { useCallback, useMemo, useRef, useState } from 'react';
36
+ import { createPortal } from 'react-dom';
37
+ import { TreeItemWrapper } from './TreeItemWrapper';
38
+ import { SortableTreeViewItem } from './TreeViewItem';
39
+ import { TreeViewTextItem } from './TreeViewTextItem';
40
+ import { sortableTreeKeyboardCoordinates } from './tree-view-keyboard-coordinates';
41
+ import { buildTree, flattenTree, getProjection, removeChildrenOf, transformToString, } from './tree-view-utils';
42
+ const indentationWidth = 20;
43
+ const ACTIVE_PLACEHOLDER_ID = 'ndl-active-tree-item';
44
+ const dropAnimationConfig = {
45
+ keyframes({ transform }) {
46
+ return [
47
+ {
48
+ opacity: 1,
49
+ transform: transformToString(transform.initial),
50
+ },
51
+ {
52
+ opacity: 0,
53
+ transform: transformToString(Object.assign(Object.assign({}, transform.final), { y: transform.final.y + 5, x: transform.final.x + 5 })),
54
+ },
55
+ ];
56
+ },
57
+ easing: 'ease-out',
58
+ sideEffects({ active }) {
59
+ active.node.animate([{ opacity: 0 }, { opacity: 1 }], {
60
+ duration: defaultDropAnimation.duration,
61
+ easing: defaultDropAnimation.easing,
62
+ });
63
+ },
64
+ };
65
+ export const TreeView = (_a) => {
66
+ var _b;
67
+ var { items, TreeItemComponent, onItemsChanged } = _a, rest = __rest(_a, ["items", "TreeItemComponent", "onItemsChanged"]);
68
+ const flattenItems = useMemo(() => flattenTree(items), [items]);
69
+ const [activeId, setActiveId] = useState(null);
70
+ const [overId, setOverId] = useState(null);
71
+ const [focusedRowId, setFocusedRowId] = useState(null);
72
+ const [currentPosition, setCurrentPosition] = useState(null);
73
+ const [offsetLeft, setOffsetLeft] = useState(0);
74
+ /* ------------------------------ Setup of Data ------------------------------ */
75
+ const flattenedAndRemovedCollapsedItems = useMemo(() => {
76
+ const collapsedItemsIds = flattenItems
77
+ .filter((item) => item.canHaveSubItems && item.isCollapsed)
78
+ .map((item) => item.id);
79
+ return removeChildrenOf([...flattenItems], activeId !== null ? [activeId, ...collapsedItemsIds] : collapsedItemsIds);
80
+ }, [activeId, flattenItems]);
81
+ const activeItem = useMemo(() => (activeId ? flattenItems.find(({ id }) => id === activeId) : null), [activeId, flattenItems]);
82
+ const flattenedAndRemovedCollapsedItemsWithActive = useMemo(() => {
83
+ const collapsedItems = flattenItems.reduce((acc, item) => {
84
+ if (item.canHaveSubItems && item.isCollapsed) {
85
+ return [...acc, item.id];
86
+ }
87
+ return acc;
88
+ }, []);
89
+ const ItemsWithCollapsedRemoved = removeChildrenOf(flattenItems, activeId ? [activeId, ...collapsedItems] : collapsedItems);
90
+ const newArray = [];
91
+ for (const item of ItemsWithCollapsedRemoved) {
92
+ newArray.push(item);
93
+ if (item.id === activeId) {
94
+ newArray.push(Object.assign(Object.assign({}, item), { id: ACTIVE_PLACEHOLDER_ID }));
95
+ }
96
+ }
97
+ return newArray;
98
+ }, [flattenItems, activeId]);
99
+ activeItem && activeItem.canHaveSubItems && !activeItem.isCollapsed
100
+ ? flattenedAndRemovedCollapsedItems.concat(Object.assign(Object.assign({}, activeItem), { id: ACTIVE_PLACEHOLDER_ID }))
101
+ : flattenedAndRemovedCollapsedItems;
102
+ const sensorContext = useRef({
103
+ items: flattenedAndRemovedCollapsedItemsWithActive,
104
+ offset: offsetLeft,
105
+ });
106
+ const coordinateGetter = useMemo(() => {
107
+ sensorContext.current.items = flattenedAndRemovedCollapsedItemsWithActive;
108
+ sensorContext.current.offset = offsetLeft;
109
+ return sortableTreeKeyboardCoordinates(sensorContext, true, indentationWidth);
110
+ }, [flattenedAndRemovedCollapsedItemsWithActive, offsetLeft]);
111
+ const sensors = useSensors(useSensor(PointerSensor), useSensor(KeyboardSensor, {
112
+ coordinateGetter: coordinateGetter,
113
+ }));
114
+ const projected = useMemo(() => activeId && overId
115
+ ? getProjection(flattenedAndRemovedCollapsedItemsWithActive, activeId, overId, offsetLeft, indentationWidth)
116
+ : null, [activeId, overId, flattenedAndRemovedCollapsedItemsWithActive, offsetLeft]);
117
+ /* ------------------------------ Handlers ------------------------------ */
118
+ function handleDragStart({ active }) {
119
+ const activeId = active.id;
120
+ setActiveId(activeId);
121
+ setOverId(activeId);
122
+ const activeItem = flattenItems.find(({ id }) => id === activeId);
123
+ if (activeItem) {
124
+ setCurrentPosition({
125
+ parentId: activeItem.parentId,
126
+ overId: activeId,
127
+ });
128
+ }
129
+ document.body.style.setProperty('cursor', 'grabbing');
130
+ }
131
+ function handleDragMove({ delta }) {
132
+ setOffsetLeft(delta.x);
133
+ }
134
+ function handleDragOver({ over }) {
135
+ var _a;
136
+ setOverId((_a = over === null || over === void 0 ? void 0 : over.id) !== null && _a !== void 0 ? _a : null);
137
+ }
138
+ function resetState() {
139
+ setOverId(null);
140
+ setActiveId(null);
141
+ setOffsetLeft(0);
142
+ setCurrentPosition(null);
143
+ document.body.style.setProperty('cursor', '');
144
+ }
145
+ const handleDragEnd = useCallback((event) => {
146
+ const { active, over } = event;
147
+ resetState();
148
+ let overIndex = flattenItems.findIndex((item) => item.id === (over === null || over === void 0 ? void 0 : over.id));
149
+ if ((over === null || over === void 0 ? void 0 : over.id) === ACTIVE_PLACEHOLDER_ID) {
150
+ overIndex = flattenItems.findIndex((item) => item.id === active.id);
151
+ }
152
+ if (projected && over) {
153
+ const { depth, parentId } = projected;
154
+ const clonedItems = [...flattenItems];
155
+ const parentIndex = clonedItems.findIndex((item) => item.id === parentId);
156
+ const activeIndex = clonedItems.findIndex(({ id }) => id === active.id);
157
+ const activeTreeItem = clonedItems[activeIndex];
158
+ clonedItems[activeIndex] = Object.assign(Object.assign({}, activeTreeItem), { depth, parentId });
159
+ const parentItem = clonedItems[parentIndex];
160
+ if (parentItem && parentItem.canHaveSubItems) {
161
+ clonedItems[parentIndex] = Object.assign(Object.assign({}, parentItem), { isCollapsed: false });
162
+ }
163
+ const newItems = buildTree(arrayMove(clonedItems, activeIndex, overIndex));
164
+ onItemsChanged(newItems, {
165
+ reason: 'dropped',
166
+ item: activeTreeItem,
167
+ });
168
+ }
169
+ }, [flattenItems, onItemsChanged, projected]);
170
+ function handleToggleCollapse(id) {
171
+ const item = flattenItems.find((item) => item.id === id);
172
+ if (!item || item.canHaveSubItems !== true)
173
+ return;
174
+ onItemsChanged(buildTree(flattenItems.map((item) => {
175
+ if (item.id === id && item.canHaveSubItems === true) {
176
+ return Object.assign(Object.assign({}, item), { isCollapsed: !item.isCollapsed });
177
+ }
178
+ return item;
179
+ })), {
180
+ reason: item.isCollapsed ? 'expanded' : 'collapsed',
181
+ item,
182
+ });
183
+ }
184
+ function handleDragCancel() {
185
+ resetState();
186
+ }
187
+ /* ------------------------------ Keyboard functions ------------------------------ */
188
+ const getMovementAnnouncement = (eventName, activeId, overId) => {
189
+ if (overId && projected) {
190
+ if (eventName !== 'onDragEnd') {
191
+ if (currentPosition &&
192
+ projected.parentId === currentPosition.parentId &&
193
+ overId === currentPosition.overId) {
194
+ return;
195
+ }
196
+ else {
197
+ setCurrentPosition({
198
+ parentId: projected.parentId,
199
+ overId,
200
+ });
201
+ }
202
+ }
203
+ const clonedItems = [
204
+ ...flattenedAndRemovedCollapsedItemsWithActive,
205
+ ];
206
+ const overIndex = clonedItems.findIndex(({ id }) => id === overId);
207
+ const activeIndex = clonedItems.findIndex(({ id }) => id === activeId);
208
+ const sortedItems = arrayMove(clonedItems, activeIndex, overIndex);
209
+ const previousItem = sortedItems[overIndex - 1];
210
+ let announcement;
211
+ const movedVerb = eventName === 'onDragEnd' ? 'dropped' : 'moved';
212
+ const nestedVerb = eventName === 'onDragEnd' ? 'dropped' : 'nested';
213
+ if (!previousItem) {
214
+ const nextItem = sortedItems[overIndex + 1];
215
+ announcement = `${activeId} was ${movedVerb} before ${nextItem.id}.`;
216
+ }
217
+ else {
218
+ if (projected.depth > previousItem.depth) {
219
+ announcement = `${activeId} was ${nestedVerb} under ${previousItem.id}.`;
220
+ }
221
+ else {
222
+ let previousSibling = previousItem;
223
+ while (previousSibling && projected.depth < previousSibling.depth) {
224
+ const parentId = previousSibling.parentId;
225
+ previousSibling = sortedItems.find(({ id }) => id === parentId);
226
+ }
227
+ if (previousSibling) {
228
+ announcement = `${activeId} was ${movedVerb} after ${previousSibling.id}.`;
229
+ }
230
+ }
231
+ }
232
+ return announcement;
233
+ }
234
+ return;
235
+ };
236
+ const announcements = {
237
+ onDragStart({ active }) {
238
+ return `Picked up ${active.id}.`;
239
+ },
240
+ onDragMove({ active, over }) {
241
+ return getMovementAnnouncement('onDragMove', active.id, over === null || over === void 0 ? void 0 : over.id);
242
+ },
243
+ onDragOver({ active, over }) {
244
+ return getMovementAnnouncement('onDragOver', active.id, over === null || over === void 0 ? void 0 : over.id);
245
+ },
246
+ onDragEnd({ active, over }) {
247
+ return getMovementAnnouncement('onDragEnd', active.id, over === null || over === void 0 ? void 0 : over.id);
248
+ },
249
+ onDragCancel({ active }) {
250
+ return `Moving was cancelled. ${active.id} was dropped in its original position.`;
251
+ },
252
+ };
253
+ /* ------------------------------ Visual ------------------------------ */
254
+ function getTrailList() {
255
+ const trails = {};
256
+ //Loop through the items in reverse
257
+ [...flattenedAndRemovedCollapsedItemsWithActive]
258
+ .reverse()
259
+ .forEach((item, itemIndex, reversedList) => {
260
+ const trailList = [];
261
+ const nextItem = reversedList[itemIndex - 1];
262
+ //Loop through the depth of the item
263
+ for (let trailDepth = 0; trailDepth < item.depth; trailDepth++) {
264
+ //Not closest to the item so should be straight or none
265
+ if (trailDepth < item.depth - 1) {
266
+ if (nextItem === undefined) {
267
+ trailList.push('none');
268
+ continue;
269
+ }
270
+ else if (trails[nextItem === null || nextItem === void 0 ? void 0 : nextItem.id][trailDepth] === 'none') {
271
+ trailList.push('none');
272
+ continue;
273
+ }
274
+ else if (nextItem && nextItem.depth <= trailDepth) {
275
+ trailList.push('none');
276
+ continue;
277
+ }
278
+ trailList.push('straight');
279
+ }
280
+ else {
281
+ if ((nextItem && trails[nextItem === null || nextItem === void 0 ? void 0 : nextItem.id][trailDepth] === 'none') ||
282
+ nextItem === undefined ||
283
+ nextItem.depth <= trailDepth) {
284
+ trailList.push('curved');
285
+ }
286
+ else {
287
+ trailList.push('straight-curved');
288
+ }
289
+ }
290
+ }
291
+ trails[item.id] = trailList;
292
+ });
293
+ return trails;
294
+ }
295
+ const measuring = {
296
+ droppable: {
297
+ strategy: MeasuringStrategy.Always,
298
+ },
299
+ };
300
+ const trails = getTrailList();
301
+ const rowIdWithFocus = focusedRowId !== null && focusedRowId !== void 0 ? focusedRowId : (_b = flattenedAndRemovedCollapsedItemsWithActive[0]) === null || _b === void 0 ? void 0 : _b.id;
302
+ return (_jsx(DndContext, { accessibility: { announcements }, sensors: sensors, collisionDetection: closestCenter, onDragEnd: handleDragEnd, onDragStart: handleDragStart, onDragMove: handleDragMove, onDragOver: handleDragOver, onDragCancel: handleDragCancel, measuring: measuring, children: _jsxs(SortableContext, { items: flattenedAndRemovedCollapsedItemsWithActive.map((item) => item.id), strategy: verticalListSortingStrategy, children: [_jsx("ol", Object.assign({ className: "ndl-tree-view-list", role: "tree" }, rest, { children: flattenedAndRemovedCollapsedItemsWithActive.map((item) => {
303
+ var _a;
304
+ return (_jsx(SortableTreeViewItem, { depth: item.id === activeId && projected ? projected.depth : item.depth, indentationWidth: indentationWidth, item: item, isLast: false, parent: (_a = flattenItems.find((i) => i.id === item.parentId)) !== null && _a !== void 0 ? _a : null, id: item.id, trails: trails[item.id], keepGhostInPlace: item.id === ACTIVE_PLACEHOLDER_ID, TreeItemComponent: TreeItemComponent === undefined
305
+ ? TreeViewTextItem
306
+ : TreeItemComponent, onCollapse: () => handleToggleCollapse(item.id), onItemsChanged: (newItems, itemChangedReason) => onItemsChanged(buildTree(newItems), itemChangedReason), items: flattenItems, tabIndex: item.id === rowIdWithFocus ? 0 : -1, onFocus: () => setFocusedRowId(item.id), shouldDisableSorting: item.isSortable === false }, item.id));
307
+ }) })), createPortal(_jsx(DragOverlay, { dropAnimation: dropAnimationConfig }), document.body)] }) }));
308
+ };
309
+ TreeView.TreeItemWrapper = TreeItemWrapper;
310
+ //# sourceMappingURL=TreeView.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeView.js","sourceRoot":"","sources":["../../../src/tree-view/TreeView.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,63 @@
1
+ /**
2
+ *
3
+ * Copyright (c) "Neo4j"
4
+ * Neo4j Sweden AB [http://neo4j.com]
5
+ *
6
+ * This file is part of Neo4j.
7
+ *
8
+ * Neo4j is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU General Public License
19
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ */
21
+
22
+ var __rest = (this && this.__rest) || function (s, e) {
23
+ var t = {};
24
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
25
+ t[p] = s[p];
26
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
27
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
28
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
29
+ t[p[i]] = s[p[i]];
30
+ }
31
+ return t;
32
+ };
33
+ import { jsx as _jsx } from "react/jsx-runtime";
34
+ import { useSortable, } from '@dnd-kit/sortable';
35
+ import React, { useMemo } from 'react';
36
+ import { transformToString } from './tree-view-utils';
37
+ const animateLayoutChanges = ({ isSorting, isDragging, }) => (isSorting || isDragging ? false : true);
38
+ const SortableTreeViewItemNotMemoized = function SortableTreeViewItem(_a) {
39
+ var { id, depth, isLast, TreeItemComponent, parent, shouldDisableSorting,
40
+ // need to destruct to avoid passing it to the component
41
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
42
+ sortableProps, keepGhostInPlace, item, onCollapse, trails, onItemsChanged, items, tabIndex, onFocus } = _a, restProps = __rest(_a, ["id", "depth", "isLast", "TreeItemComponent", "parent", "shouldDisableSorting", "sortableProps", "keepGhostInPlace", "item", "onCollapse", "trails", "onItemsChanged", "items", "tabIndex", "onFocus"]);
43
+ const { attributes, listeners, setNodeRef, transform, setActivatorNodeRef, transition, isDragging, isSorting, isOver, } = useSortable({
44
+ id: id,
45
+ animateLayoutChanges,
46
+ transition: {
47
+ duration: 150,
48
+ easing: 'cubic-bezier(0.25, 1, 0.5, 1)',
49
+ },
50
+ });
51
+ const style = {
52
+ transform: transform ? transformToString(transform) : undefined,
53
+ transition: transition !== null && transition !== void 0 ? transition : undefined,
54
+ };
55
+ const localCollapse = useMemo(() => {
56
+ if (!onCollapse)
57
+ return undefined;
58
+ return () => onCollapse === null || onCollapse === void 0 ? void 0 : onCollapse(item.id);
59
+ }, [item.id, onCollapse]);
60
+ return (_jsx(TreeItemComponent, Object.assign({ item: item, isOverParent: false }, restProps, { setActivatorNodeRef: setActivatorNodeRef, setNodeRef: setNodeRef, style: style, depth: depth, isGhost: keepGhostInPlace, shouldDisableInteraction: isSorting, isLastInParent: isLast, parent: parent, dragHandleProps: Object.assign(Object.assign({}, attributes), listeners), isIndicator: isDragging, onCollapse: localCollapse, onItemsChanged: onItemsChanged, items: items, shouldDisableSorting: shouldDisableSorting, isOver: isOver, trails: trails, tabIndex: tabIndex, onFocus: onFocus })));
61
+ };
62
+ export const SortableTreeViewItem = React.memo(SortableTreeViewItemNotMemoized);
63
+ //# sourceMappingURL=TreeViewItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TreeViewItem.js","sourceRoot":"","sources":["../../../src/tree-view/TreeViewItem.tsx"],"names":[],"mappings":";;;;;;;;;;;;AAqBA,OAAO,EAGL,WAAW,GACZ,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAE,EAAsB,OAAO,EAAE,MAAM,OAAO,CAAC;AAO3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAkBtD,MAAM,oBAAoB,GAAyB,CAAC,EAClD,SAAS,EACT,UAAU,GACX,EAAE,EAAE,CAAC,CAAC,SAAS,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;AAqB/C,MAAM,+BAA+B,GAAG,SAAS,oBAAoB,CAGnE,EAmB4B;QAnB5B,EACA,EAAE,EACF,KAAK,EACL,MAAM,EACN,iBAAiB,EACjB,MAAM,EACN,oBAAoB;IACpB,wDAAwD;IACxD,6DAA6D;IAC7D,aAAa,EACb,gBAAgB,EAChB,IAAI,EACJ,UAAU,EACV,MAAM,EACN,cAAc,EACd,KAAK,EACL,QAAQ,EACR,OAAO,OAEqB,EADzB,SAAS,cAlBZ,uMAmBD,CADa;IAEZ,MAAM,EACJ,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,SAAS,EACT,MAAM,GACP,GAAG,WAAW,CAAC;QACd,EAAE,EAAE,EAAE;QACN,oBAAoB;QACpB,UAAU,EAAE;YACV,QAAQ,EAAE,GAAG;YACb,MAAM,EAAE,+BAA+B;SACxC;KACF,CAAC,CAAC;IAEH,MAAM,KAAK,GAAkB;QAC3B,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS;QAC/D,UAAU,EAAE,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;KACpC,CAAC;IACF,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,EAAE;QACjC,IAAI,CAAC,UAAU;YAAE,OAAO,SAAS,CAAC;QAClC,OAAO,GAAG,EAAE,CAAC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAG,IAAI,CAAC,EAAE,CAAC,CAAC;IACrC,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,UAAU,CAAC,CAAC,CAAC;IAE1B,OAAO,CACL,KAAC,iBAAiB,kBAChB,IAAI,EAAE,IAAI,EACV,YAAY,EAAE,KAAK,IACf,SAAS,IACb,mBAAmB,EAAE,mBAAmB,EACxC,UAAU,EAAE,UAAU,EACtB,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,gBAAgB,EACzB,wBAAwB,EAAE,SAAS,EACnC,cAAc,EAAE,MAAM,EACtB,MAAM,EAAE,MAAM,EACd,eAAe,kCACV,UAAU,GACV,SAAS,GAEd,WAAW,EAAE,UAAU,EACvB,UAAU,EAAE,aAAa,EACzB,cAAc,EAAE,cAAc,EAC9B,KAAK,EAAE,KAAK,EACZ,oBAAoB,EAAE,oBAAoB,EAC1C,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,IAChB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,KAAK,CAAC,IAAI,CAC5C,+BAA+B,CACU,CAAC"}