@edifice.io/react 2.6.3-develop-integration.20260825195600 → 2.6.3-develop.20260825191306
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.
- package/dist/components/Tree/utilities/tree.js +1 -21
- package/dist/hooks/index.d.ts +0 -1
- package/dist/index.js +146 -152
- package/dist/modules/multimedia/FileCard/index.d.ts +0 -2
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +2 -2
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +7 -21
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +0 -1
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +0 -2
- package/dist/modules/multimedia/index.d.ts +0 -1
- package/dist/multimedia.js +12 -16
- package/package.json +6 -6
- package/dist/hooks/useNextcloudSearch/index.d.ts +0 -1
- package/dist/hooks/useNextcloudSearch/useNextcloudSearch.d.ts +0 -12
- package/dist/hooks/useNextcloudSearch/useNextcloudSearch.js +0 -57
- package/dist/modules/multimedia/FileCard/NextcloudFileCard.d.ts +0 -25
- package/dist/modules/multimedia/FileCard/NextcloudFileCard.js +0 -102
- package/dist/modules/multimedia/MediaLibrary/innertabs/Nextcloud.d.ts +0 -1
- package/dist/modules/multimedia/MediaLibrary/innertabs/Nextcloud.js +0 -35
- package/dist/modules/multimedia/Nextcloud/Nextcloud.d.ts +0 -24
- package/dist/modules/multimedia/Nextcloud/Nextcloud.js +0 -114
- package/dist/modules/multimedia/Nextcloud/index.d.ts +0 -2
|
@@ -16,25 +16,6 @@ function findNodeById(data, id) {
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
function modifyNode(data, callback) {
|
|
20
|
-
return doModify(data, callback) || data;
|
|
21
|
-
}
|
|
22
|
-
function doModify(current, callback, parent) {
|
|
23
|
-
var _a;
|
|
24
|
-
const result = callback(current, parent);
|
|
25
|
-
if ((_a = result == null ? void 0 : result.children) != null && _a.length) {
|
|
26
|
-
const children = [];
|
|
27
|
-
for (const child of (result == null ? void 0 : result.children) || []) {
|
|
28
|
-
const res = doModify(child, callback, result);
|
|
29
|
-
res && children.push(res);
|
|
30
|
-
}
|
|
31
|
-
return {
|
|
32
|
-
...result,
|
|
33
|
-
children
|
|
34
|
-
};
|
|
35
|
-
}
|
|
36
|
-
return result;
|
|
37
|
-
}
|
|
38
19
|
function findPathById(tree, nodeId) {
|
|
39
20
|
let path = [];
|
|
40
21
|
function traverse(node, currentPath) {
|
|
@@ -59,6 +40,5 @@ function findPathById(tree, nodeId) {
|
|
|
59
40
|
}
|
|
60
41
|
export {
|
|
61
42
|
findNodeById,
|
|
62
|
-
findPathById
|
|
63
|
-
modifyNode
|
|
43
|
+
findPathById
|
|
64
44
|
};
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export * from './useIsAdmlcOrAdmc';
|
|
|
22
22
|
export * from './useKeyPress';
|
|
23
23
|
export * from './useLibraryUrl';
|
|
24
24
|
export * from './useMediaLibrary';
|
|
25
|
-
export * from './useNextcloudSearch';
|
|
26
25
|
export * from './usePublicConf';
|
|
27
26
|
export * from './useScreeb';
|
|
28
27
|
export * from './useScrollToTop';
|
package/dist/index.js
CHANGED
|
@@ -44,82 +44,79 @@ import { default as default42 } from "./components/LogoBeta/LogoBeta.js";
|
|
|
44
44
|
import { default as default43 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
45
45
|
import { default as default44 } from "./components/MediaViewer/MediaViewer.js";
|
|
46
46
|
import { default as default45 } from "./components/Modal/Modal.js";
|
|
47
|
-
import { default as default46 } from "./modules/
|
|
48
|
-
import { default as default47 } from "./
|
|
49
|
-
import { default as default48 } from "./
|
|
50
|
-
import { default as default49 } from "./components/
|
|
51
|
-
import { default as default50 } from "./
|
|
52
|
-
import { default as default51
|
|
53
|
-
import { default as default52 } from "./
|
|
54
|
-
import { default as default53 } from "./components/
|
|
55
|
-
import { default as default54 } from "./components/
|
|
56
|
-
import { default as default55 } from "./components/
|
|
57
|
-
import { default as default56 } from "./components/
|
|
58
|
-
import { default as default57 } from "./
|
|
59
|
-
import { default as default58 } from "./
|
|
60
|
-
import { default as default59 } from "./modules/modals/ShareModal/
|
|
61
|
-
import { default as default60 } from "./
|
|
62
|
-
import { default as default61 } from "./
|
|
63
|
-
import { default as default62 } from "./components/
|
|
64
|
-
import { default as default63 } from "./components/
|
|
65
|
-
import { default as default64 } from "./components/
|
|
66
|
-
import { default as default65 } from "./components/
|
|
67
|
-
import { default as default66 } from "./components/
|
|
68
|
-
import { default as default67 } from "./components/
|
|
69
|
-
import { default as default68 } from "./components/
|
|
70
|
-
import { default as default69 } from "./components/
|
|
71
|
-
import { default as default70 } from "./
|
|
72
|
-
import { default as default71 } from "./
|
|
73
|
-
import { default as default72 } from "./modules/multimedia/
|
|
74
|
-
import { default as default73 } from "./modules/multimedia/
|
|
75
|
-
import { default as default74 } from "./
|
|
76
|
-
import { default as default75 } from "./modules/multimedia/
|
|
77
|
-
import { default as default76 } from "./
|
|
78
|
-
import { default as default77 } from "./
|
|
79
|
-
import { default as default78 } from "./
|
|
80
|
-
import { default as default79 } from "./hooks/
|
|
81
|
-
import { default as default80 } from "./hooks/
|
|
82
|
-
import { default as default81 } from "./hooks/
|
|
83
|
-
import { default as default82 } from "./hooks/
|
|
84
|
-
import { default as default83 } from "./hooks/
|
|
85
|
-
import { default as default84 } from "./hooks/
|
|
86
|
-
import { default as default85 } from "./hooks/
|
|
87
|
-
import { default as default86 } from "./hooks/
|
|
88
|
-
import { default as default87 } from "./hooks/
|
|
89
|
-
import { default as default88 } from "./hooks/
|
|
90
|
-
import { default as default89 } from "./hooks/
|
|
91
|
-
import { default as default90 } from "./hooks/
|
|
92
|
-
import { default as default91 } from "./hooks/
|
|
93
|
-
import { default as default92 } from "./hooks/
|
|
94
|
-
import { default as default93 } from "./hooks/
|
|
95
|
-
import { default as default94 } from "./hooks/
|
|
96
|
-
import { default as default95 } from "./hooks/
|
|
97
|
-
import { default as default96 } from "./hooks/
|
|
98
|
-
import { default as default97 } from "./hooks/
|
|
99
|
-
import { default as default98 } from "./hooks/
|
|
100
|
-
import { default as default99 } from "./hooks/
|
|
101
|
-
import { default as default100 } from "./hooks/
|
|
102
|
-
import { default as default101 } from "./hooks/
|
|
103
|
-
import { default as default102 } from "./hooks/
|
|
104
|
-
import { default as default103 } from "./hooks/
|
|
105
|
-
import { default as default104 } from "./hooks/
|
|
106
|
-
import { default as default105 } from "./
|
|
107
|
-
import { default as default106 } from "./hooks/
|
|
108
|
-
import { default as default107 } from "./hooks/
|
|
109
|
-
import { default as default108 } from "./hooks/
|
|
110
|
-
import { default as default109 } from "./hooks/
|
|
111
|
-
import { default as default110 } from "./hooks/
|
|
112
|
-
import { default as default111 } from "./hooks/
|
|
113
|
-
import { default as default112 } from "./
|
|
114
|
-
import { default as default113 } from "./hooks/
|
|
115
|
-
import { default as default114 } from "./hooks/
|
|
116
|
-
import { default as default115 } from "./hooks/
|
|
117
|
-
import { default as default116 } from "./hooks/
|
|
118
|
-
import { default as default117 } from "./hooks/
|
|
119
|
-
import {
|
|
120
|
-
import { default as default119 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
121
|
-
import { default as default120 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
122
|
-
import { default as default121 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
47
|
+
import { default as default46 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
|
|
48
|
+
import { default as default47 } from "./components/PageLayout/PageLayout.js";
|
|
49
|
+
import { default as default48 } from "./components/PreventPropagation/PreventPropagation.js";
|
|
50
|
+
import { default as default49, Root } from "./components/PromotionCard/PromotionCard.js";
|
|
51
|
+
import { default as default50 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
52
|
+
import { default as default51 } from "./components/Radio/Radio.js";
|
|
53
|
+
import { default as default52 } from "./components/RadioCard/RadioCard.js";
|
|
54
|
+
import { default as default53 } from "./components/SearchBar/SearchBar.js";
|
|
55
|
+
import { default as default54 } from "./components/Button/SearchButton.js";
|
|
56
|
+
import { default as default55 } from "./components/SegmentedControl/SegmentedControl.js";
|
|
57
|
+
import { default as default56 } from "./components/Select/Select.js";
|
|
58
|
+
import { default as default57 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
59
|
+
import { default as default58 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
60
|
+
import { default as default59 } from "./modules/modals/ShareModal/ShareResources.js";
|
|
61
|
+
import { default as default60 } from "./components/Tree/components/SortableTree.js";
|
|
62
|
+
import { default as default61 } from "./components/StackedGroup/StackedGroup.js";
|
|
63
|
+
import { default as default62 } from "./components/Stepper/Stepper.js";
|
|
64
|
+
import { default as default63 } from "./components/Switch/Switch.js";
|
|
65
|
+
import { default as default64 } from "./components/Table/components/Table.js";
|
|
66
|
+
import { default as default65 } from "./components/TextArea/TextArea.js";
|
|
67
|
+
import { default as default66 } from "./components/Skeleton/TextSkeleton.js";
|
|
68
|
+
import { default as default67 } from "./components/Tooltip/Tooltip.js";
|
|
69
|
+
import { default as default68 } from "./components/Tree/components/Tree.js";
|
|
70
|
+
import { default as default69 } from "./components/TreeView/TreeView.js";
|
|
71
|
+
import { default as default70 } from "./modules/multimedia/UploadCard/UploadCard.js";
|
|
72
|
+
import { default as default71 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
|
|
73
|
+
import { default as default72 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
74
|
+
import { default as default73 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
75
|
+
import { default as default74 } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
76
|
+
import { default as default75 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
77
|
+
import { default as default76 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
78
|
+
import { default as default77 } from "./hooks/useBookmark/useBookmark.js";
|
|
79
|
+
import { default as default78 } from "./hooks/useBreakpoint/useBreakpoint.js";
|
|
80
|
+
import { default as default79 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
|
|
81
|
+
import { default as default80 } from "./hooks/useCantoo/useCantoo.js";
|
|
82
|
+
import { default as default81 } from "./hooks/useClickOutside/useClickOutside.js";
|
|
83
|
+
import { default as default82 } from "./hooks/useConversation/useConversation.js";
|
|
84
|
+
import { default as default83 } from "./hooks/useDate/useDate.js";
|
|
85
|
+
import { default as default84 } from "./hooks/useDebounce/useDebounce.js";
|
|
86
|
+
import { default as default85 } from "./hooks/useDirectory/useDirectory.js";
|
|
87
|
+
import { default as default86 } from "./hooks/useDropdown/useDropdown.js";
|
|
88
|
+
import { default as default87 } from "./hooks/useDropzone/useDropzone.js";
|
|
89
|
+
import { default as default88 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
|
|
90
|
+
import { default as default89 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
|
|
91
|
+
import { default as default90 } from "./hooks/useHover/useHover.js";
|
|
92
|
+
import { default as default91 } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
|
|
93
|
+
import { default as default92 } from "./hooks/useImage/useImage.js";
|
|
94
|
+
import { default as default93 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
|
|
95
|
+
import { default as default94 } from "./hooks/useIsAdmc/useIsAdmc.js";
|
|
96
|
+
import { default as default95 } from "./hooks/useIsAdml/useIsAdml.js";
|
|
97
|
+
import { default as default96 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
|
|
98
|
+
import { default as default97 } from "./hooks/useKeyPress/useKeyPress.js";
|
|
99
|
+
import { default as default98 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
|
|
100
|
+
import { default as default99 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
|
|
101
|
+
import { default as default100 } from "./hooks/usePublicConf/usePublicConf.js";
|
|
102
|
+
import { default as default101 } from "./hooks/useScrollToTop/useScrollToTop.js";
|
|
103
|
+
import { default as default102 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
104
|
+
import { default as default103 } from "./hooks/useTitle/useTitle.js";
|
|
105
|
+
import { default as default104 } from "./hooks/useToast/useToast.js";
|
|
106
|
+
import { default as default105 } from "./hooks/useToggle/useToggle.js";
|
|
107
|
+
import { default as default106 } from "./hooks/useTrapFocus/useTrapFocus.js";
|
|
108
|
+
import { default as default107 } from "./hooks/useTrashedResource/useTrashedResource.js";
|
|
109
|
+
import { default as default108 } from "./hooks/useUiOverride/useUiOverride.js";
|
|
110
|
+
import { default as default109 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
111
|
+
import { default as default110 } from "./hooks/useUpload/useUpload.js";
|
|
112
|
+
import { default as default111 } from "./hooks/useUploadFiles/useUploadFiles.js";
|
|
113
|
+
import { default as default112 } from "./hooks/useUser/useUser.js";
|
|
114
|
+
import { default as default113 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
|
|
115
|
+
import { default as default114 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
|
|
116
|
+
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default115 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
|
|
117
|
+
import { default as default116 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
118
|
+
import { default as default117 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
119
|
+
import { default as default118 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
123
120
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
124
121
|
import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
|
|
125
122
|
import { BetaSwitch } from "./components/BetaSwitch/BetaSwitch.js";
|
|
@@ -228,57 +225,55 @@ export {
|
|
|
228
225
|
Menu,
|
|
229
226
|
MockedProvider,
|
|
230
227
|
default45 as Modal,
|
|
231
|
-
default46 as
|
|
232
|
-
default47 as
|
|
233
|
-
default48 as OnboardingModal,
|
|
234
|
-
default49 as PageLayout,
|
|
228
|
+
default46 as OnboardingModal,
|
|
229
|
+
default47 as PageLayout,
|
|
235
230
|
PageLayoutContext,
|
|
236
231
|
Pagination,
|
|
237
232
|
Popover,
|
|
238
233
|
PopoverBody,
|
|
239
234
|
PopoverFooter,
|
|
240
235
|
PopoverHeader,
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
236
|
+
default48 as PreventPropagation,
|
|
237
|
+
default49 as PromotionCard,
|
|
238
|
+
default50 as PublishModal,
|
|
239
|
+
default51 as Radio,
|
|
240
|
+
default52 as RadioCard,
|
|
246
241
|
ResourceModal,
|
|
247
242
|
Root,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
243
|
+
default53 as SearchBar,
|
|
244
|
+
default54 as SearchButton,
|
|
245
|
+
default55 as SegmentedControl,
|
|
246
|
+
default56 as Select,
|
|
247
|
+
default57 as ShareBlog,
|
|
248
|
+
default58 as ShareModal,
|
|
249
|
+
default59 as ShareResources,
|
|
250
|
+
default60 as SortableTree,
|
|
251
|
+
default61 as StackedGroup,
|
|
252
|
+
default62 as Stepper,
|
|
253
|
+
default63 as Switch,
|
|
254
|
+
default64 as Table,
|
|
260
255
|
Tabs,
|
|
261
|
-
|
|
262
|
-
|
|
256
|
+
default65 as TextArea,
|
|
257
|
+
default66 as TextSkeleton,
|
|
263
258
|
Toolbar,
|
|
264
|
-
|
|
265
|
-
|
|
259
|
+
default67 as Tooltip,
|
|
260
|
+
default68 as Tree,
|
|
266
261
|
TreeNode,
|
|
267
262
|
TreeNodeFolderWrapper,
|
|
268
|
-
|
|
263
|
+
default69 as TreeView,
|
|
269
264
|
Upload,
|
|
270
|
-
|
|
271
|
-
|
|
265
|
+
default70 as UploadCard,
|
|
266
|
+
default71 as UploadFiles,
|
|
272
267
|
UserRightsList,
|
|
273
268
|
UserSearch,
|
|
274
|
-
|
|
275
|
-
|
|
269
|
+
default72 as VideoEmbed,
|
|
270
|
+
default73 as VideoRecorder,
|
|
276
271
|
VisibleType,
|
|
277
|
-
|
|
272
|
+
default74 as VisuallyHidden,
|
|
278
273
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
279
274
|
WORKSPACE_USER_FOLDER_ID,
|
|
280
|
-
|
|
281
|
-
|
|
275
|
+
default75 as Workspace,
|
|
276
|
+
default76 as WorkspaceFolders,
|
|
282
277
|
addNode,
|
|
283
278
|
arrayUnique,
|
|
284
279
|
buildTree,
|
|
@@ -309,58 +304,57 @@ export {
|
|
|
309
304
|
setRef,
|
|
310
305
|
updateNode,
|
|
311
306
|
updateParentIds,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
307
|
+
default77 as useBookmark,
|
|
308
|
+
default78 as useBreakpoint,
|
|
309
|
+
default79 as useBrowserInfo,
|
|
310
|
+
default80 as useCantoo,
|
|
316
311
|
useCheckable,
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
312
|
+
default81 as useClickOutside,
|
|
313
|
+
default82 as useConversation,
|
|
314
|
+
default83 as useDate,
|
|
315
|
+
default84 as useDebounce,
|
|
316
|
+
default85 as useDirectory,
|
|
317
|
+
default86 as useDropdown,
|
|
318
|
+
default87 as useDropzone,
|
|
324
319
|
useDropzoneContext,
|
|
325
320
|
useEdificeClient,
|
|
326
|
-
|
|
321
|
+
default88 as useEdificeIcons,
|
|
327
322
|
useEdificeTheme,
|
|
328
323
|
useFileToAttachment,
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
default102 as useNextcloudSearch,
|
|
324
|
+
default89 as useHasWorkflow,
|
|
325
|
+
default90 as useHover,
|
|
326
|
+
default91 as useHttpErrorToast,
|
|
327
|
+
default92 as useImage,
|
|
328
|
+
default93 as useInfiniteScroll,
|
|
329
|
+
default94 as useIsAdmc,
|
|
330
|
+
default95 as useIsAdml,
|
|
331
|
+
default96 as useIsAdmlcOrAdmc,
|
|
332
|
+
default97 as useKeyPress,
|
|
333
|
+
default98 as useLibraryUrl,
|
|
334
|
+
default99 as useMediaLibrary,
|
|
341
335
|
useOverlay,
|
|
342
336
|
usePageLayout,
|
|
343
|
-
|
|
337
|
+
default100 as usePublicConf,
|
|
344
338
|
useScreeb,
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
339
|
+
default101 as useScrollToTop,
|
|
340
|
+
default102 as useShareMutation,
|
|
341
|
+
default103 as useTitle,
|
|
342
|
+
default104 as useToast,
|
|
343
|
+
default105 as useToggle,
|
|
344
|
+
default106 as useTrapFocus,
|
|
345
|
+
default107 as useTrashedResource,
|
|
352
346
|
useTreeSortable,
|
|
353
347
|
useTreeView,
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
348
|
+
default108 as useUiOverride,
|
|
349
|
+
default109 as useUpdateMutation,
|
|
350
|
+
default110 as useUpload,
|
|
351
|
+
default111 as useUploadFiles,
|
|
352
|
+
default112 as useUser,
|
|
353
|
+
default113 as useWorkspaceFile,
|
|
354
|
+
default114 as useWorkspaceFolders,
|
|
355
|
+
default115 as useWorkspaceFoldersTree,
|
|
356
|
+
default116 as useWorkspaceSearch,
|
|
357
|
+
default117 as useXitiTrackPageLoad,
|
|
358
|
+
default118 as useZendeskGuide,
|
|
365
359
|
wrapTreeNode
|
|
366
360
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { WorkspaceElement, WorkspaceVisibility } from '@edifice.io/client';
|
|
2
2
|
import { TabsItemProps } from '../../../components';
|
|
3
3
|
import { ExternalLinkTabProps } from './innertabs/ExternalLink';
|
|
4
4
|
import { InternalLinkTabProps, InternalLinkTabResult } from './innertabs/InternalLink';
|
|
@@ -54,7 +54,7 @@ export interface MediaLibraryRef {
|
|
|
54
54
|
/**
|
|
55
55
|
* The resulting type depends on the actual selected Tab when modal is closed.
|
|
56
56
|
*/
|
|
57
|
-
export type MediaLibraryResult = WorkspaceElement[] | WorkspaceElement |
|
|
57
|
+
export type MediaLibraryResult = WorkspaceElement[] | WorkspaceElement | InternalLinkTabResult | string | /*TODO type des autres résultats ?*/ any;
|
|
58
58
|
/**
|
|
59
59
|
* MediaLibrary component properties
|
|
60
60
|
*/
|
|
@@ -5,7 +5,6 @@ import { useTranslation } from "react-i18next";
|
|
|
5
5
|
import SvgIconApplications from "../../icons/components/IconApplications.js";
|
|
6
6
|
import SvgIconCode from "../../icons/components/IconCode.js";
|
|
7
7
|
import SvgIconFolder from "../../icons/components/IconFolder.js";
|
|
8
|
-
import SvgIconGlobe2 from "../../icons/components/IconGlobe2.js";
|
|
9
8
|
import SvgIconGlobe from "../../icons/components/IconGlobe.js";
|
|
10
9
|
import SvgIconMic from "../../icons/components/IconMic.js";
|
|
11
10
|
import SvgIconRecordVideo from "../../icons/components/IconRecordVideo.js";
|
|
@@ -13,7 +12,6 @@ import SvgIconSmartphone from "../../icons/components/IconSmartphone.js";
|
|
|
13
12
|
import { InnerTabs } from "./innertabs/index.js";
|
|
14
13
|
import { MediaLibraryContext } from "./MediaLibraryContext.js";
|
|
15
14
|
import useHasWorkflow from "../../../hooks/useHasWorkflow/useHasWorkflow.js";
|
|
16
|
-
import usePublicConf from "../../../hooks/usePublicConf/usePublicConf.js";
|
|
17
15
|
import useHttpErrorToast from "../../../hooks/useHttpErrorToast/useHttpErrorToast.js";
|
|
18
16
|
import Modal from "../../../components/Modal/Modal.js";
|
|
19
17
|
import { Tabs } from "../../../components/Tabs/components/Tabs.js";
|
|
@@ -31,8 +29,6 @@ const orderedTabs = [
|
|
|
31
29
|
// Filesystem browser + drag'n'drop of files
|
|
32
30
|
"workspace",
|
|
33
31
|
// Media browser
|
|
34
|
-
"nextcloud",
|
|
35
|
-
// Nextcloud media browser
|
|
36
32
|
"video-embedder"
|
|
37
33
|
// Link to a hosted video
|
|
38
34
|
], mediaLibraryTypes = {
|
|
@@ -74,7 +70,7 @@ const orderedTabs = [
|
|
|
74
70
|
onCancel,
|
|
75
71
|
onTabChange
|
|
76
72
|
}, ref) => {
|
|
77
|
-
var _a
|
|
73
|
+
var _a;
|
|
78
74
|
const linkTabProps = useRef(), refModal = useRef(null);
|
|
79
75
|
useImperativeHandle(ref, () => ({
|
|
80
76
|
show,
|
|
@@ -85,9 +81,7 @@ const orderedTabs = [
|
|
|
85
81
|
}));
|
|
86
82
|
const {
|
|
87
83
|
t
|
|
88
|
-
} = useTranslation(), workspaceCreateWorkflow = useHasWorkflow("org.entcore.workspace.controllers.WorkspaceController|addDocument"), videoCaptureWorkflow = useHasWorkflow("com.opendigitaleducation.video.controllers.VideoController|capture"),
|
|
89
|
-
data: workspacePublicConf
|
|
90
|
-
} = usePublicConf("workspace"), enableNextcloudTab = ((_a = workspacePublicConf == null ? void 0 : workspacePublicConf["folder-service"]) == null ? void 0 : _a.includes("nextcloud")) && nextcloudViewWorkflow, [type, setType] = useState(null);
|
|
84
|
+
} = useTranslation(), workspaceCreateWorkflow = useHasWorkflow("org.entcore.workspace.controllers.WorkspaceController|addDocument"), videoCaptureWorkflow = useHasWorkflow("com.opendigitaleducation.video.controllers.VideoController|capture"), [type, setType] = useState(null);
|
|
91
85
|
useHttpErrorToast({
|
|
92
86
|
active: !!type,
|
|
93
87
|
isDismissible: !0,
|
|
@@ -102,14 +96,6 @@ const orderedTabs = [
|
|
|
102
96
|
availableFor: ["audio", "video", "image", "attachment"],
|
|
103
97
|
isEnable: null
|
|
104
98
|
},
|
|
105
|
-
nextcloud: {
|
|
106
|
-
id: "nextcloud",
|
|
107
|
-
icon: /* @__PURE__ */ jsx(SvgIconGlobe2, {}),
|
|
108
|
-
label: t("bbm.nextcloud"),
|
|
109
|
-
content: /* @__PURE__ */ jsx(InnerTabs.Nextcloud, {}),
|
|
110
|
-
availableFor: ["audio", "video", "image", "attachment"],
|
|
111
|
-
isEnable: () => !!enableNextcloudTab
|
|
112
|
-
},
|
|
113
99
|
upload: {
|
|
114
100
|
id: "upload",
|
|
115
101
|
icon: /* @__PURE__ */ jsx(SvgIconSmartphone, {}),
|
|
@@ -191,17 +177,17 @@ const orderedTabs = [
|
|
|
191
177
|
linkTabProps.current = props, "resourceId" in props || "appPrefix" in props || setDefaultTabId("external-link"), setType("hyperlink");
|
|
192
178
|
};
|
|
193
179
|
useEffect(() => {
|
|
194
|
-
var _a2,
|
|
180
|
+
var _a2, _b;
|
|
195
181
|
const typeKey = type || "none";
|
|
196
|
-
!defaultTabId && typeof ((_a2 = mediaLibraryTypes[typeKey]) == null ? void 0 : _a2.defaultTab) == "string" && setDefaultTabId((
|
|
182
|
+
!defaultTabId && typeof ((_a2 = mediaLibraryTypes[typeKey]) == null ? void 0 : _a2.defaultTab) == "string" && setDefaultTabId((_b = mediaLibraryTypes[typeKey]) == null ? void 0 : _b.defaultTab);
|
|
197
183
|
}, [defaultTabId, type]);
|
|
198
|
-
const modalHeader = t(((
|
|
184
|
+
const modalHeader = t(((_a = mediaLibraryTypes[type ?? "none"]) == null ? void 0 : _a.title) ?? "bbm"), resetState = () => {
|
|
199
185
|
linkTabProps.current = void 0, setResult(void 0), setResultCounter(void 0), setDefaultTabId(void 0), setPreSuccess(void 0), setDeletionsOnCancel([]);
|
|
200
186
|
}, handleTabChange = (tab) => {
|
|
201
187
|
onTabChange == null || onTabChange(tab, deletionsOnCancel), resetState();
|
|
202
|
-
},
|
|
188
|
+
}, handleOnSuccess = useCallback(() => {
|
|
203
189
|
const triggerSuccess = async (result2) => {
|
|
204
|
-
|
|
190
|
+
result2 instanceof Array && ["protected", "public"].findIndex((v) => v === visibility) >= 0 && (result2 = await odeServices.workspace().transferDocuments(result2, appCode ?? "media-library", visibility)), onSuccess(result2);
|
|
205
191
|
};
|
|
206
192
|
onSuccessAction ? onSuccessAction().then((result2) => {
|
|
207
193
|
triggerSuccess(result2);
|
|
@@ -4,7 +4,6 @@ export declare const InnerTabs: {
|
|
|
4
4
|
Upload: () => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
ExternalLink: ({ link, multiNodeSelected, }: import('./ExternalLink').ExternalLinkTabProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
Workspace: () => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
Nextcloud: () => import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
InternalLink: ({ target, resourceId, appPrefix, }: import('./InternalLink').InternalLinkTabProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
Iframe: () => import("react/jsx-runtime").JSX.Element;
|
|
10
9
|
VideoEmbedder: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,7 +2,6 @@ import { Audio } from "./Audio.js";
|
|
|
2
2
|
import { ExternalLink } from "./ExternalLink.js";
|
|
3
3
|
import { Iframe } from "./Iframe.js";
|
|
4
4
|
import { InternalLink } from "./InternalLink.js";
|
|
5
|
-
import { Nextcloud } from "./Nextcloud.js";
|
|
6
5
|
import { Upload } from "./Upload.js";
|
|
7
6
|
import { Video } from "./Video.js";
|
|
8
7
|
import { VideoEmbedder } from "./VideoEmbedder.js";
|
|
@@ -13,7 +12,6 @@ const InnerTabs = {
|
|
|
13
12
|
Upload,
|
|
14
13
|
ExternalLink,
|
|
15
14
|
Workspace,
|
|
16
|
-
Nextcloud,
|
|
17
15
|
InternalLink,
|
|
18
16
|
Iframe,
|
|
19
17
|
VideoEmbedder
|
package/dist/multimedia.js
CHANGED
|
@@ -4,14 +4,12 @@ import { default as default4 } from "./modules/multimedia/FileCard/FileCard.js";
|
|
|
4
4
|
import { default as default5 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
5
5
|
import { default as default6 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
|
|
6
6
|
import { default as default7 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
7
|
-
import { default as default8 } from "./modules/multimedia/
|
|
8
|
-
import { default as default9 } from "./modules/multimedia/
|
|
9
|
-
import { default as default10 } from "./modules/multimedia/
|
|
10
|
-
import { default as default11 } from "./modules/multimedia/
|
|
11
|
-
import { default as default12 } from "./modules/multimedia/
|
|
12
|
-
import { default as default13 } from "./modules/multimedia/
|
|
13
|
-
import { default as default14 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
14
|
-
import { default as default15 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
7
|
+
import { default as default8 } from "./modules/multimedia/UploadCard/UploadCard.js";
|
|
8
|
+
import { default as default9 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
|
|
9
|
+
import { default as default10 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
10
|
+
import { default as default11 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
11
|
+
import { default as default12 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
12
|
+
import { default as default13 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
15
13
|
import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
|
|
16
14
|
import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
|
|
17
15
|
import { Upload } from "./modules/multimedia/MediaLibrary/innertabs/Upload.js";
|
|
@@ -24,13 +22,11 @@ export {
|
|
|
24
22
|
default6 as ImagePicker,
|
|
25
23
|
InternalLinker,
|
|
26
24
|
default7 as MediaLibrary,
|
|
27
|
-
default8 as Nextcloud,
|
|
28
|
-
default9 as NextcloudFileCard,
|
|
29
25
|
Upload,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
default8 as UploadCard,
|
|
27
|
+
default9 as UploadFiles,
|
|
28
|
+
default10 as VideoEmbed,
|
|
29
|
+
default11 as VideoRecorder,
|
|
30
|
+
default12 as Workspace,
|
|
31
|
+
default13 as WorkspaceFolders
|
|
36
32
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.6.3-develop
|
|
3
|
+
"version": "2.6.3-develop.20260825191306",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -140,9 +140,9 @@
|
|
|
140
140
|
"swiper": "10.1.0",
|
|
141
141
|
"ua-parser-js": "1.0.36",
|
|
142
142
|
"zustand": "4.5.7",
|
|
143
|
-
"@edifice.io/
|
|
144
|
-
"@edifice.io/
|
|
145
|
-
"@edifice.io/
|
|
143
|
+
"@edifice.io/bootstrap": "2.6.3-develop.20260825191306",
|
|
144
|
+
"@edifice.io/tiptap-extensions": "2.6.3-develop.20260825191306",
|
|
145
|
+
"@edifice.io/utilities": "2.6.3-develop.20260825191306"
|
|
146
146
|
},
|
|
147
147
|
"devDependencies": {
|
|
148
148
|
"@babel/plugin-transform-react-pure-annotations": "7.27.1",
|
|
@@ -173,8 +173,8 @@
|
|
|
173
173
|
"vite": "5.4.14",
|
|
174
174
|
"vite-plugin-dts": "4.5.4",
|
|
175
175
|
"vite-tsconfig-paths": "5.1.4",
|
|
176
|
-
"@edifice.io/client": "2.6.3-develop
|
|
177
|
-
"@edifice.io/config": "2.6.3-develop
|
|
176
|
+
"@edifice.io/client": "2.6.3-develop.20260825191306",
|
|
177
|
+
"@edifice.io/config": "2.6.3-develop.20260825191306"
|
|
178
178
|
},
|
|
179
179
|
"peerDependencies": {
|
|
180
180
|
"@react-spring/web": "9.7.5",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as useNextcloudSearch } from './useNextcloudSearch';
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ID, NextcloudDocument } from '@edifice.io/client';
|
|
2
|
-
import { TreeItem } from '../../components/Tree/types';
|
|
3
|
-
export type NextcloudFolderNode = TreeItem & {
|
|
4
|
-
files?: NextcloudDocument[];
|
|
5
|
-
};
|
|
6
|
-
export default function useNextcloudSearch(rootId: string, rootName: string, userId?: string): {
|
|
7
|
-
root: NextcloudFolderNode;
|
|
8
|
-
needsAuth: boolean;
|
|
9
|
-
isCheckingAuth: boolean;
|
|
10
|
-
refetchAuthStatus: () => void;
|
|
11
|
-
loadContent: (folderId?: ID) => void;
|
|
12
|
-
};
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { useState, useCallback } from "react";
|
|
2
|
-
import { odeServices } from "@edifice.io/client";
|
|
3
|
-
import { useQueryClient, useQuery } from "@tanstack/react-query";
|
|
4
|
-
import { findNodeById, modifyNode } from "../../components/Tree/utilities/tree.js";
|
|
5
|
-
function useNextcloudSearch(rootId, rootName, userId) {
|
|
6
|
-
var _a;
|
|
7
|
-
const [root, setRoot] = useState({
|
|
8
|
-
id: rootId,
|
|
9
|
-
name: rootName,
|
|
10
|
-
section: !0
|
|
11
|
-
}), updateFolder = useCallback((folderId, subfolders, files) => {
|
|
12
|
-
setRoot((prev) => {
|
|
13
|
-
const node = findNodeById(prev, folderId);
|
|
14
|
-
if (!node) return prev;
|
|
15
|
-
const children = subfolders.map((f) => {
|
|
16
|
-
var _a2;
|
|
17
|
-
const existing = (_a2 = node.children) == null ? void 0 : _a2.find((c) => c.id === f.path);
|
|
18
|
-
return existing ? {
|
|
19
|
-
...existing,
|
|
20
|
-
name: f.name
|
|
21
|
-
} : {
|
|
22
|
-
id: f.path,
|
|
23
|
-
name: f.name
|
|
24
|
-
};
|
|
25
|
-
});
|
|
26
|
-
return modifyNode(prev, (n) => n.id === node.id ? {
|
|
27
|
-
...n,
|
|
28
|
-
children,
|
|
29
|
-
files
|
|
30
|
-
} : n);
|
|
31
|
-
});
|
|
32
|
-
}, []), queryClient = useQueryClient(), oauth2StatusQuery = useQuery({
|
|
33
|
-
queryKey: ["nextcloud", "oauth2-status", userId],
|
|
34
|
-
queryFn: () => odeServices.nextcloud().getOauth2Status(userId),
|
|
35
|
-
enabled: !!userId
|
|
36
|
-
}), needsAuth = !((_a = oauth2StatusQuery.data) != null && _a.connected), loadContent = useCallback(async (folderId) => {
|
|
37
|
-
if (!userId) return;
|
|
38
|
-
const path = folderId === rootId ? void 0 : folderId, payload = await queryClient.fetchQuery({
|
|
39
|
-
queryKey: ["nextcloud", "documents", userId, path ?? "/"],
|
|
40
|
-
queryFn: () => odeServices.nextcloud().listDocuments(userId, path),
|
|
41
|
-
staleTime: 6e4
|
|
42
|
-
}), subfolders = [], files = [], currentPath = path ?? "/";
|
|
43
|
-
payload.filter((doc) => doc.path !== currentPath).forEach((doc) => {
|
|
44
|
-
doc.isFolder ? subfolders.push(doc) : files.push(doc);
|
|
45
|
-
}), updateFolder(folderId, subfolders, files);
|
|
46
|
-
}, [rootId, userId, queryClient, updateFolder]);
|
|
47
|
-
return {
|
|
48
|
-
root,
|
|
49
|
-
needsAuth,
|
|
50
|
-
isCheckingAuth: oauth2StatusQuery.isLoading,
|
|
51
|
-
refetchAuthStatus: oauth2StatusQuery.refetch,
|
|
52
|
-
loadContent
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
export {
|
|
56
|
-
useNextcloudSearch as default
|
|
57
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { NextcloudDocument } from '@edifice.io/client';
|
|
3
|
-
import { CardProps } from '../../../components/Card';
|
|
4
|
-
export interface NextcloudFileCardProps extends CardProps {
|
|
5
|
-
doc: NextcloudDocument;
|
|
6
|
-
/**
|
|
7
|
-
* Id of the user who owns the Nextcloud document, used to build the preview URL.
|
|
8
|
-
*/
|
|
9
|
-
userId: string;
|
|
10
|
-
/**
|
|
11
|
-
* Custom icon to override the default based on file type
|
|
12
|
-
* Can be a string or a React node
|
|
13
|
-
*/
|
|
14
|
-
customIcon?: ReactNode;
|
|
15
|
-
/**
|
|
16
|
-
* Custom color class to override the default based on file type
|
|
17
|
-
* Example: "bg-purple-300" or any valid CSS class
|
|
18
|
-
*/
|
|
19
|
-
customColor?: string;
|
|
20
|
-
}
|
|
21
|
-
declare const NextcloudFileCard: {
|
|
22
|
-
({ doc, userId, isClickable, isSelectable, isSelected, onClick, className, onSelect, isFocused, app, customIcon, customColor, }: NextcloudFileCardProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
displayName: string;
|
|
24
|
-
};
|
|
25
|
-
export default NextcloudFileCard;
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useRef } from "react";
|
|
3
|
-
import { DocumentHelper, odeServices } from "@edifice.io/client";
|
|
4
|
-
import clsx from "clsx";
|
|
5
|
-
import SvgIconLandscape from "../../icons/components/IconLandscape.js";
|
|
6
|
-
import SvgIconMic from "../../icons/components/IconMic.js";
|
|
7
|
-
import SvgIconTextPage from "../../icons/components/IconTextPage.js";
|
|
8
|
-
import SvgIconVideo from "../../icons/components/IconVideo.js";
|
|
9
|
-
import FileIcon from "./FileIcon.js";
|
|
10
|
-
import useThumbnail from "../../../hooks/useThumbnail/useThumbnail.js";
|
|
11
|
-
import Card from "../../../components/Card/Card.js";
|
|
12
|
-
const roleMappings = {
|
|
13
|
-
csv: {
|
|
14
|
-
icon: ".CSV",
|
|
15
|
-
color: "bg-orange-200"
|
|
16
|
-
},
|
|
17
|
-
xls: {
|
|
18
|
-
icon: ".XLS",
|
|
19
|
-
color: "bg-green-200"
|
|
20
|
-
},
|
|
21
|
-
doc: {
|
|
22
|
-
icon: ".DOC",
|
|
23
|
-
color: "bg-blue-200"
|
|
24
|
-
},
|
|
25
|
-
txt: {
|
|
26
|
-
icon: ".TXT",
|
|
27
|
-
color: "bg-blue-200"
|
|
28
|
-
},
|
|
29
|
-
pdf: {
|
|
30
|
-
icon: ".PDF",
|
|
31
|
-
color: "bg-red-200"
|
|
32
|
-
},
|
|
33
|
-
audio: {
|
|
34
|
-
icon: /* @__PURE__ */ jsx(SvgIconMic, { width: 22, height: 22 }),
|
|
35
|
-
color: "bg-red-200"
|
|
36
|
-
},
|
|
37
|
-
ppt: {
|
|
38
|
-
icon: ".PPT",
|
|
39
|
-
color: "bg-red-200"
|
|
40
|
-
},
|
|
41
|
-
img: {
|
|
42
|
-
icon: /* @__PURE__ */ jsx(SvgIconLandscape, { width: 22, height: 22 }),
|
|
43
|
-
color: "bg-green-200"
|
|
44
|
-
},
|
|
45
|
-
video: {
|
|
46
|
-
icon: /* @__PURE__ */ jsx(SvgIconVideo, { width: 22, height: 22 }),
|
|
47
|
-
color: "bg-purple-200"
|
|
48
|
-
},
|
|
49
|
-
zip: {
|
|
50
|
-
icon: ".ZIP",
|
|
51
|
-
color: "bg-gray-300"
|
|
52
|
-
},
|
|
53
|
-
md: {
|
|
54
|
-
icon: ".MD",
|
|
55
|
-
color: "bg-blue-200"
|
|
56
|
-
},
|
|
57
|
-
unknown: {
|
|
58
|
-
icon: /* @__PURE__ */ jsx(SvgIconTextPage, { width: 22, height: 22 }),
|
|
59
|
-
color: "bg-gray-300"
|
|
60
|
-
}
|
|
61
|
-
};
|
|
62
|
-
function getRoleMap(type, customIcon, customColor) {
|
|
63
|
-
return customIcon !== void 0 || customColor !== void 0 ? {
|
|
64
|
-
icon: customIcon || /* @__PURE__ */ jsx(SvgIconTextPage, { width: 22, height: 22 }),
|
|
65
|
-
color: customColor || "bg-gray-300",
|
|
66
|
-
hasShadow: !1
|
|
67
|
-
} : roleMappings[type] ?? roleMappings.unknown;
|
|
68
|
-
}
|
|
69
|
-
const NextcloudFileCard = ({
|
|
70
|
-
doc,
|
|
71
|
-
userId,
|
|
72
|
-
isClickable = !0,
|
|
73
|
-
isSelectable = !1,
|
|
74
|
-
isSelected = !1,
|
|
75
|
-
onClick,
|
|
76
|
-
className,
|
|
77
|
-
onSelect,
|
|
78
|
-
isFocused,
|
|
79
|
-
app,
|
|
80
|
-
customIcon,
|
|
81
|
-
customColor
|
|
82
|
-
}) => {
|
|
83
|
-
const ref = useRef(null), type = DocumentHelper.role(doc.contentType, !1), roleMap = getRoleMap(type ?? "unknown", customIcon, customColor), file = clsx("file position-relative rounded", (roleMap == null ? void 0 : roleMap.color) ?? "bg-yellow-200"), mediaSrc = type === "img" ? odeServices.nextcloud().getFileUrl(userId, doc) : null, hasThumbnail = useThumbnail(mediaSrc, {
|
|
84
|
-
ref
|
|
85
|
-
}), imageStyles = hasThumbnail && {
|
|
86
|
-
backgroundImage: `url(${mediaSrc})`,
|
|
87
|
-
backgroundSize: "cover"
|
|
88
|
-
};
|
|
89
|
-
return /* @__PURE__ */ jsx(Card, { className: clsx("card-file", className), isClickable, isSelectable, isSelected, onClick, app, isFocused, onSelect, children: /* @__PURE__ */ jsxs(Card.Body, { space: "8", children: [
|
|
90
|
-
/* @__PURE__ */ jsx("div", { ref, className: file, style: {
|
|
91
|
-
aspectRatio: "16/10",
|
|
92
|
-
...imageStyles
|
|
93
|
-
}, children: type !== "img" || !hasThumbnail ? /* @__PURE__ */ jsx(FileIcon, { type, roleMap }) : null }),
|
|
94
|
-
/* @__PURE__ */ jsxs("div", { className: "mt-4", children: [
|
|
95
|
-
/* @__PURE__ */ jsx(Card.Text, { children: doc.name }),
|
|
96
|
-
/* @__PURE__ */ jsx(Card.Text, { className: "text-black-50", children: doc == null ? void 0 : doc.ownerDisplayName })
|
|
97
|
-
] })
|
|
98
|
-
] }) });
|
|
99
|
-
};
|
|
100
|
-
export {
|
|
101
|
-
NextcloudFileCard as default
|
|
102
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const Nextcloud: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { odeServices } from "@edifice.io/client";
|
|
3
|
-
import { useMediaLibraryContext } from "../MediaLibraryContext.js";
|
|
4
|
-
import useUser from "../../../../hooks/useUser/useUser.js";
|
|
5
|
-
import Nextcloud$1 from "../../Nextcloud/Nextcloud.js";
|
|
6
|
-
const Nextcloud = () => {
|
|
7
|
-
const {
|
|
8
|
-
type,
|
|
9
|
-
setResultCounter,
|
|
10
|
-
setResult,
|
|
11
|
-
setPreSuccess,
|
|
12
|
-
multiple
|
|
13
|
-
} = useMediaLibraryContext(), {
|
|
14
|
-
user
|
|
15
|
-
} = useUser();
|
|
16
|
-
function getDocumentRoleFilter() {
|
|
17
|
-
switch (type) {
|
|
18
|
-
case "image":
|
|
19
|
-
return "img";
|
|
20
|
-
case "audio":
|
|
21
|
-
return "audio";
|
|
22
|
-
case "video":
|
|
23
|
-
return "video";
|
|
24
|
-
default:
|
|
25
|
-
return null;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
function handleSelect(result) {
|
|
29
|
-
setResultCounter(result.length), result.length ? (setResult(result), setPreSuccess(() => () => user != null && user.userId ? odeServices.nextcloud().copyDocumentToWorkspace(user.userId, result.map((doc) => doc.path)) : Promise.resolve([]))) : (setResult(), setPreSuccess(void 0));
|
|
30
|
-
}
|
|
31
|
-
return /* @__PURE__ */ jsx(Nextcloud$1, { roles: getDocumentRoleFilter(), onSelect: handleSelect, multiple, className: "border rounded overflow-y-auto" });
|
|
32
|
-
};
|
|
33
|
-
export {
|
|
34
|
-
Nextcloud
|
|
35
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { NextcloudDocument, Role } from '@edifice.io/client';
|
|
2
|
-
/**
|
|
3
|
-
* Nextcloud component properties
|
|
4
|
-
*/
|
|
5
|
-
export interface NextcloudProps {
|
|
6
|
-
/**
|
|
7
|
-
* Notify parent when media elements are successfully selected.
|
|
8
|
-
*/
|
|
9
|
-
onSelect: (result: NextcloudDocument[]) => void;
|
|
10
|
-
/**
|
|
11
|
-
* Boolean to know if we can select 1 or many files.
|
|
12
|
-
*/
|
|
13
|
-
multiple?: boolean | undefined;
|
|
14
|
-
/**
|
|
15
|
-
* Document roles to filter files by; null (default) shows all roles.
|
|
16
|
-
*/
|
|
17
|
-
roles?: Role | Role[] | null;
|
|
18
|
-
/**
|
|
19
|
-
* Optional class for styling purpose
|
|
20
|
-
*/
|
|
21
|
-
className?: string;
|
|
22
|
-
}
|
|
23
|
-
declare const Nextcloud: ({ onSelect, multiple, roles, className, }: NextcloudProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
export default Nextcloud;
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useRef, useState, useCallback, useEffect, useMemo } from "react";
|
|
3
|
-
import { DocumentHelper } from "@edifice.io/client";
|
|
4
|
-
import clsx from "clsx";
|
|
5
|
-
import { useTranslation } from "react-i18next";
|
|
6
|
-
import { findNodeById } from "../../../components/Tree/utilities/tree.js";
|
|
7
|
-
import SvgIconSortAscendingLetters from "../../icons/components/IconSortAscendingLetters.js";
|
|
8
|
-
import SvgIconSortDescendingLetters from "../../icons/components/IconSortDescendingLetters.js";
|
|
9
|
-
import SvgIconSortTime from "../../icons/components/IconSortTime.js";
|
|
10
|
-
import illuNoContentInFolder from "@edifice.io/bootstrap/dist/images/emptyscreen/illu-no-content-in-folder.svg";
|
|
11
|
-
import illuTrash from "@edifice.io/bootstrap/dist/images/emptyscreen/illu-trash.svg";
|
|
12
|
-
import useUser from "../../../hooks/useUser/useUser.js";
|
|
13
|
-
import useNextcloudSearch from "../../../hooks/useNextcloudSearch/useNextcloudSearch.js";
|
|
14
|
-
import LoadingScreen from "../../../components/LoadingScreen/LoadingScreen.js";
|
|
15
|
-
import Flex from "../../../components/Flex/Flex.js";
|
|
16
|
-
import EmptyScreen from "../../../components/EmptyScreen/EmptyScreen.js";
|
|
17
|
-
import Button from "../../../components/Button/Button.js";
|
|
18
|
-
import { Grid } from "../../../components/Grid/Grid.js";
|
|
19
|
-
import Tree from "../../../components/Tree/components/Tree.js";
|
|
20
|
-
import SearchBar from "../../../components/SearchBar/SearchBar.js";
|
|
21
|
-
import Dropdown from "../../../components/Dropdown/Dropdown.js";
|
|
22
|
-
import NextcloudFileCard from "../FileCard/NextcloudFileCard.js";
|
|
23
|
-
const ROOT_ID = "root";
|
|
24
|
-
function compare(a, b) {
|
|
25
|
-
return a ? b ? a.localeCompare(b) : 1 : -1;
|
|
26
|
-
}
|
|
27
|
-
const Nextcloud = ({
|
|
28
|
-
onSelect,
|
|
29
|
-
multiple = !0,
|
|
30
|
-
roles,
|
|
31
|
-
className
|
|
32
|
-
}) => {
|
|
33
|
-
const {
|
|
34
|
-
t
|
|
35
|
-
} = useTranslation(), {
|
|
36
|
-
user
|
|
37
|
-
} = useUser(), {
|
|
38
|
-
root,
|
|
39
|
-
needsAuth,
|
|
40
|
-
isCheckingAuth,
|
|
41
|
-
refetchAuthStatus,
|
|
42
|
-
loadContent
|
|
43
|
-
} = useNextcloudSearch(ROOT_ID, t("nextcloud"), user == null ? void 0 : user.userId), popupRef = useRef(null), [currentNodeId, setCurrentNodeId] = useState(ROOT_ID), currentNode = findNodeById(root, currentNodeId) ?? root, [searchTerm, setSearchTerm] = useState(null), [sortOrder, setSortOrder] = useState(["modified", "desc"]), [selectedDocuments, setSelectedDocuments] = useState([]), handleTreeItemChange = useCallback((nodeId) => {
|
|
44
|
-
setCurrentNodeId(nodeId), loadContent(nodeId);
|
|
45
|
-
}, [loadContent]);
|
|
46
|
-
useEffect(() => {
|
|
47
|
-
needsAuth || loadContent(ROOT_ID);
|
|
48
|
-
}, [loadContent, needsAuth]);
|
|
49
|
-
const documents = useMemo(() => {
|
|
50
|
-
if (!currentNode.files) return;
|
|
51
|
-
const matchesRole = (doc) => {
|
|
52
|
-
if (!roles) return !0;
|
|
53
|
-
const role = DocumentHelper.role(doc.contentType, !1);
|
|
54
|
-
return Array.isArray(roles) ? roles.includes(role) : roles === role;
|
|
55
|
-
}, list = currentNode.files.filter((f) => (!searchTerm || f.name.indexOf(searchTerm) >= 0) && matchesRole(f));
|
|
56
|
-
let sortFunction;
|
|
57
|
-
return sortOrder[0] === "name" ? sortFunction = sortOrder[1] === "asc" ? (a, b) => compare(a.name, b.name) : (a, b) => compare(b.name, a.name) : sortFunction = (a, b) => compare(b.lastModified, a.lastModified), list.sort(sortFunction);
|
|
58
|
-
}, [currentNode, searchTerm, sortOrder, roles]), selectedPaths = useMemo(() => new Set(selectedDocuments.map((d) => d.path)), [selectedDocuments]), handleSearchChange = useCallback((e) => {
|
|
59
|
-
setSearchTerm(e.target.value);
|
|
60
|
-
}, [setSearchTerm]);
|
|
61
|
-
function getSortOrderLabel() {
|
|
62
|
-
return sortOrder[0] === "name" ? sortOrder[1] === "asc" ? t("sort.order.alpha.asc") : t("sort.order.alpha.desc") : t("sort.order.modify.desc");
|
|
63
|
-
}
|
|
64
|
-
function handleSelectDoc(doc) {
|
|
65
|
-
let currentDocuments = [...selectedDocuments];
|
|
66
|
-
multiple ? currentDocuments.includes(doc) ? currentDocuments = currentDocuments.filter((selectedDocument) => selectedDocument.path !== doc.path) : currentDocuments = [...currentDocuments, doc] : currentDocuments = [doc], setSelectedDocuments(currentDocuments), onSelect(currentDocuments);
|
|
67
|
-
}
|
|
68
|
-
const nextcloud = clsx("workspace flex-grow-1 gap-0", className), openLoginPopup = () => {
|
|
69
|
-
popupRef.current = window.open(`${window.location.origin}/nextcloud/user/oauth2/init`, "", "popup, height=600, width=400");
|
|
70
|
-
};
|
|
71
|
-
return useEffect(() => {
|
|
72
|
-
function handleMessage(event) {
|
|
73
|
-
var _a;
|
|
74
|
-
event.origin !== window.location.origin || ((_a = event.data) == null ? void 0 : _a.type) !== "nextcloud-connected" || (popupRef.current && !popupRef.current.closed && popupRef.current.close(), refetchAuthStatus());
|
|
75
|
-
}
|
|
76
|
-
return window.addEventListener("message", handleMessage), () => window.removeEventListener("message", handleMessage);
|
|
77
|
-
}, [refetchAuthStatus]), isCheckingAuth ? /* @__PURE__ */ jsx(LoadingScreen, {}) : needsAuth ? /* @__PURE__ */ jsxs(Flex, { direction: "column", gap: "12", className: "h-full w-100", justify: "center", align: "center", children: [
|
|
78
|
-
/* @__PURE__ */ jsxs(Flex, { direction: "column", gap: "8", justify: "center", align: "center", children: [
|
|
79
|
-
/* @__PURE__ */ jsx(EmptyScreen, { imageSrc: illuNoContentInFolder }),
|
|
80
|
-
/* @__PURE__ */ jsx("h2", { className: "h2 text-secondary mb-8", children: "Connectez vos Documents Synchronisés" }),
|
|
81
|
-
/* @__PURE__ */ jsx("div", { className: "text", children: "Connectez-vous pour parcourir vos Documents Synchronisés et les insérer ici." })
|
|
82
|
-
] }),
|
|
83
|
-
/* @__PURE__ */ jsx(Button, { onClick: openLoginPopup, children: "Se connecter" })
|
|
84
|
-
] }) : /* @__PURE__ */ jsxs(Grid, { className: nextcloud, children: [
|
|
85
|
-
/* @__PURE__ */ jsx(Grid.Col, { sm: "12", md: "3", xl: "4", className: "workspace-folders p-12 pt-0 gap-12", children: /* @__PURE__ */ jsx("div", { style: {
|
|
86
|
-
position: "sticky",
|
|
87
|
-
top: 0,
|
|
88
|
-
paddingTop: "1.2rem"
|
|
89
|
-
}, children: /* @__PURE__ */ jsx(Tree, { nodes: root, selectedNodeId: currentNodeId, showIcon: !0, onTreeItemClick: handleTreeItemChange, onTreeItemUnfold: handleTreeItemChange }) }) }),
|
|
90
|
-
/* @__PURE__ */ jsx(Grid.Col, { sm: "12", md: "5", xl: "8", children: /* @__PURE__ */ jsxs(Grid, { className: "flex-grow-1 gap-0", children: [
|
|
91
|
-
/* @__PURE__ */ jsxs(Grid.Col, { sm: "4", md: "8", xl: "12", children: [
|
|
92
|
-
/* @__PURE__ */ jsx("div", { className: "workspace-search px-16 py-8 ", children: /* @__PURE__ */ jsx(SearchBar, { isVariant: !0, className: "gap-16", onChange: handleSearchChange }) }),
|
|
93
|
-
/* @__PURE__ */ jsxs(Flex, { className: "px-8 py-4", align: "center", justify: "end", children: [
|
|
94
|
-
/* @__PURE__ */ jsx("small", { className: "text-muted", children: t("workspace.search.order") }),
|
|
95
|
-
/* @__PURE__ */ jsxs(Dropdown, { children: [
|
|
96
|
-
/* @__PURE__ */ jsx(Dropdown.Trigger, { size: "sm", label: getSortOrderLabel(), variant: "ghost" }),
|
|
97
|
-
/* @__PURE__ */ jsxs(Dropdown.Menu, { children: [
|
|
98
|
-
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortTime, {}), onClick: () => setSortOrder(["modified", "desc"]), children: t("sort.order.modify.desc") }),
|
|
99
|
-
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortAscendingLetters, {}), onClick: () => setSortOrder(["name", "asc"]), children: t("sort.order.alpha.asc") }),
|
|
100
|
-
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortDescendingLetters, {}), onClick: () => setSortOrder(["name", "desc"]), children: t("sort.order.alpha.desc") })
|
|
101
|
-
] })
|
|
102
|
-
] })
|
|
103
|
-
] })
|
|
104
|
-
] }),
|
|
105
|
-
/* @__PURE__ */ jsx(Grid.Col, { sm: "4", md: "8", xl: "12", className: "p-8 gap-8", children: documents ? documents.length !== 0 ? /* @__PURE__ */ jsx("div", { className: "grid grid-workspace", children: documents.map((doc) => {
|
|
106
|
-
const isSelected = selectedPaths.has(doc.path);
|
|
107
|
-
return /* @__PURE__ */ jsx(NextcloudFileCard, { doc, userId: user.userId, isSelected, onClick: () => handleSelectDoc(doc) }, doc.path);
|
|
108
|
-
}) }) : /* @__PURE__ */ jsx(EmptyScreen, { imageSrc: illuTrash, text: t("workspace.empty.docSpace"), title: t("explorer.emptyScreen.trash.title") }) : /* @__PURE__ */ jsx(LoadingScreen, {}) })
|
|
109
|
-
] }) })
|
|
110
|
-
] });
|
|
111
|
-
};
|
|
112
|
-
export {
|
|
113
|
-
Nextcloud as default
|
|
114
|
-
};
|