-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFileManager.tsx
More file actions
1393 lines (1306 loc) · 45 KB
/
FileManager.tsx
File metadata and controls
1393 lines (1306 loc) · 45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { mergeClasses } from '@/utils/merge-classes';
import {
type FC,
type ReactNode,
useMemo,
useCallback,
useState,
useRef,
type Ref,
useImperativeHandle,
type RefObject,
} from 'react';
import type { CellClickedEvent, ColDef, GridApi } from 'ag-grid-community';
import {
containerBaseClassName,
mainGridClassName,
toolbarBaseClassName,
treeBaseClassName,
contentGridClassName,
sidebarWidth,
sidebarTitleDefault,
gridBaseClassName,
FOLDERS_TREE_PANEL_MIN_WIDTH,
FOLDERS_TREE_PANEL_MAX_WIDTH,
COMPACT_VIEW_HEADER_HEIGHT,
COMPACT_VIEW_FILE_ROW_HEIGHT,
DEFAULT_COMPACT_VIEW_WIDTH_BREAKPOINT,
actionsColumnButtonClassName,
DEFAULT_VISIBLE_COLUMN,
} from './constants';
import { findNodeByPath, isFileAccepted } from './utils';
import { DialCollapsibleSidebar } from '@/components/CollapsibleSidebar/CollapsibleSidebar';
import type { DialFile, DialRootFolder } from '@/models/file';
import { DialFileNodeType, DialFilePermission } from '@/models/file';
import {
DialFoldersTree,
type DialFoldersTreeProps,
} from './components/FoldersTree/FoldersTree';
import {
DialFileManagerNavigationPanel,
type DialFileManagerNavigationPanelProps,
} from './components/FileManagerNavigationPanel/FileManagerNavigationPanel';
import { DialGrid, type DialGridProps } from '@/components/Grid/Grid';
import {
DialFileManagerToolbar,
type DialFileManagerToolbarProps,
} from './components/FileManagerToolbar/DialFileManagerToolbar';
import {
DialFileManagerBulkActionsToolbar,
type DialFileManagerBulkActionsToolbarProps,
} from './components/FileManagerBulkActionsToolbar/FileManagerBulkActionsToolbar';
import type { DropdownItem } from '@/models/dropdown';
import {
type DialCopiedItem,
type DialDeletedItem,
type DialUploadFileItem,
type DialFileManagerActionsRef,
type DialFileAcceptType,
} from '@/models/file-manager';
import {
IconCopy,
IconDownload,
IconExternalLink,
IconFileDescription,
IconPencilMinus,
IconTrashX,
IconUserX,
} from '@tabler/icons-react';
import CopyToIcon from '@/assets/icons/copy-to.svg?react';
import MoveToIcon from '@/assets/icons/move-to.svg?react';
import AddChild from '@/assets/icons/add-child.svg?react';
import AddSibling from '@/assets/icons/add-sibling.svg?react';
import { BASE_ICON_PROPS } from '@/constants/icon';
import { FileManagerProvider } from './FileManagerProvider';
import { useFileManagerContext } from './hooks/use-file-manager-context';
import type { FileManagerGridRow } from './FileManagerContext';
import { FileManagerDeleteConfirmationPopup } from './components/FileManagerDeleteConfirmationPopup/FileManagerDeleteConfirmationPopup';
import {
DialDestinationFolderPopup,
type DestinationFolderPopupProps,
} from './components/DestinationFolderPopup/DestinationFolderPopup';
import { useBulkActions } from './hooks/use-bulk-actions';
import { useGridContextMenu } from './hooks/use-grid-context-menu';
import type {
FileUploadValidationResult,
FileUploadValidationMessages,
} from '@/components/FileManager/hooks/use-file-upload';
import classNames from 'classnames';
import {
DestinationFolderMode,
DialFileManagerActions,
FileManagerRenameTriggerView,
} from '@/types/file-manager';
import type { FolderCreationValidationMessages } from '@/components/FileManager/hooks/use-folder-creation';
import {
ConflictResolutionPopup,
type ConflictResolutionPopupProps,
} from '@/components/FileManager/components/ConflictResolutionPopup/ConflictResolutionPopup';
import { DialConditionalResizableContainer } from '@/components/ResizableContainer/ConditionalResizableContainer';
import type { RenameValidationMessages } from '@/components/FileManager/hooks/use-item-renaming';
import { useWidthBreakpoint } from '@/hooks/use-width-breakpoint';
import { useGridActionsColumn } from '@/components/FileManager/hooks/use-grid-actions-column';
import { FileManagerColumnKey } from '@/types/file-manager';
import { useTriggerViewRename } from '@/components/FileManager/hooks/use-trigger-view-rename';
import { FileMetadataPopup } from './components/FileMetadataPopup/FileMetadataPopup';
import IconUnshare from '@/assets/icons/unshare.svg?react';
import { DialNoDataContent } from '../NoDataContent/NoDataContent';
import { DropdownItemType } from '@/types/dropdown';
import {
useFileManagerColumns,
type FileManagerGridContext,
} from './hooks/use-file-manager-columns';
import { GridSelectionMode } from '@/models/selection-mode.ts';
type GridRow = FileManagerGridRow;
export type DialFileManagerConflictResolutionPopupOptions = Omit<
ConflictResolutionPopupProps,
'open' | 'onClose' | 'onReplace' | 'onDuplicate' | 'conflictingFiles'
>;
export type DialFileManagerDestinationFolderPopupOptions = Pick<
DestinationFolderPopupProps,
| 'setDestinationFolderPath'
| 'destinationFolderPath'
| 'addFolderLabel'
| 'copyLabel'
| 'moveLabel'
| 'hiddenFilesSwitcherLabel'
| 'header'
| 'onCreateFolder'
| 'onCreateFolderValidate'
| 'folderCreationValidationMessages'
| 'disabledPathTooltip'
> & {
getCopyHeader?: (itemsCount: number, itemName?: string) => string;
getMoveHeader?: (itemsCount: number, itemName?: string) => string;
};
export interface FileMetadataPopupOptions {
fileMetadata?: DialFile;
loading?: boolean;
clearMetadata?: () => void;
header?: ReactNode;
nameLabel?: string;
pathLabel?: string;
modifiedDateLabel?: string;
sizeLabel?: string;
authorLabel?: string;
}
export interface FileTreeOptions
extends Omit<DialFoldersTreeProps, 'items' | 'selectedPath' | 'onItemClick'> {
width?: number;
header?: ReactNode;
containerClassName?: string;
additionalButtons?: ReactNode;
collapsed?: boolean;
onCollapseChange?: (collapsed: boolean) => void;
expandedPaths?: Set<string>;
loadedPaths?: Set<string>;
onExpandedPathsChange?: (expandedPaths: Set<string>) => void;
actionLabels?: {
[DialFileManagerActions.AddSibling]?: string;
[DialFileManagerActions.AddChild]?: string;
[DialFileManagerActions.Duplicate]?: string;
[DialFileManagerActions.Copy]?: string;
[DialFileManagerActions.Rename]?: string;
[DialFileManagerActions.Download]?: string;
[DialFileManagerActions.Delete]?: string;
[DialFileManagerActions.Move]?: string;
[DialFileManagerActions.Unshare]?: string;
[DialFileManagerActions.ManagePermissions]?: string;
[DialFileManagerActions.RemoveAccess]?: string;
};
}
export interface DeleteConfirmationOptions {
cancelLabel?: string;
titleRenderer?: (fileNames: string[]) => ReactNode;
confirmLabel?: string;
contentRenderer?: (fileNames: string[]) => ReactNode;
}
export type NavigationPanelOptions = Omit<
DialFileManagerNavigationPanelProps,
'path' | 'makeHref' | 'onItemClick'
>;
export interface GridOptions
extends Omit<DialGridProps<GridRow>, 'rowData' | 'columnDefs'> {
columnDefs?: (
| ColDef<GridRow>
| ((
dateLocale: Intl.LocalesArgument,
dateOptions: Intl.DateTimeFormatOptions | undefined,
isCompactView: boolean,
) => ColDef<GridRow, unknown>)
)[];
filterable?: boolean;
dateLocale?: Intl.LocalesArgument;
dateOptions?: Intl.DateTimeFormatOptions;
showFiles?: boolean;
showFolders?: boolean;
visibleColumns?: FileManagerColumnKey[];
selectionMode?: GridSelectionMode;
wrapCustomCellRenderers?: boolean;
actionLabels?: {
[DialFileManagerActions.AddSibling]?: string;
[DialFileManagerActions.AddChild]?: string;
[DialFileManagerActions.Duplicate]?: string;
[DialFileManagerActions.Copy]?: string;
[DialFileManagerActions.Rename]?: string;
[DialFileManagerActions.Download]?: string;
[DialFileManagerActions.Delete]?: string;
[DialFileManagerActions.Move]?: string;
[DialFileManagerActions.Info]?: string;
[DialFileManagerActions.Unshare]?: string;
[DialFileManagerActions.ManagePermissions]?: string;
[DialFileManagerActions.Preview]?: string;
[DialFileManagerActions.RemoveAccess]?: string;
};
}
export type NewAction = Pick<DropdownItem, 'label' | 'icon'>;
export type ToolbarOptions = Omit<
DialFileManagerToolbarProps,
'areHiddenFilesVisible' | 'onToggleHiddenFiles'
> & {
newActions?: {
uploadFiles?: NewAction;
newFolder?: NewAction;
uploadArchive?: NewAction;
};
showHiddenFilesToggle?: boolean;
};
export type BulkActionsToolbarOptions = Omit<
DialFileManagerBulkActionsToolbarProps,
'onClearSelection' | 'actions' | 'selectedCount'
> & {
actionLabels?: {
[DialFileManagerActions.Duplicate]?: string;
[DialFileManagerActions.Copy]?: string;
[DialFileManagerActions.Download]?: string;
[DialFileManagerActions.Delete]?: string;
[DialFileManagerActions.Move]?: string;
[DialFileManagerActions.Unshare]?: string;
[DialFileManagerActions.RemoveAccess]?: string;
};
};
export interface CreateFolderValidationMessages {
emptyName?: string;
duplicateName?: string;
forbiddenChars?: string;
}
export interface DialFileManagerProps {
path?: string;
defaultPath?: string;
className?: string;
managerLabel?: ReactNode;
gridClassName?: string;
allowedFileTypes?: DialFileAcceptType[];
items?: DialFile[];
rootItem?: DialRootFolder;
filesLoading?: boolean;
sharedByMePaths?: Set<string>;
maxSelectableFileSize?: number;
selectedPaths?: Set<string>;
defaultSelectedPaths?: Set<string>;
onSelectedPathsChange?: (paths: Set<string>) => void;
showHiddenFiles?: boolean;
onShowHiddenFilesChange?: (value: boolean) => void;
treeOptions?: FileTreeOptions;
toolbarOptions?: ToolbarOptions;
showNavigationPanel?: boolean;
navigationPanelOptions?: NavigationPanelOptions;
gridOptions?: GridOptions;
bulkActionsToolbarOptions?: BulkActionsToolbarOptions;
deleteConfirmationOptions?: DeleteConfirmationOptions;
destinationFolderPopupOptions?: DialFileManagerDestinationFolderPopupOptions;
conflictResolutionPopupOptions?: DialFileManagerConflictResolutionPopupOptions;
compactViewWidthBreakpoint?: number;
customBreakpointRef?: RefObject<HTMLElement | null>;
onPathChange?: (nextPath?: string) => void;
onTableFileClick?: (file: GridRow) => void;
handleSelectionClick?: (file: GridRow[]) => void;
onGridApiChange?: (api: GridApi) => void;
onCopyFiles?: (items: DialCopiedItem[], destinationFolder: string) => void;
onMoveToFiles?: (
items: DialCopiedItem[],
sourceFolder: string,
destinationFolder: string,
) => void;
onDeleteFiles?: (items: DialDeletedItem[], sourceFolder: string) => void;
onDownloadFiles?: (items: DialFile[]) => void;
onAddSibling?: (items: DialFile[]) => void;
onAddChild?: (items: DialFile[]) => void;
onRenameValidate?: (value: string, item: DialFile) => string | null;
renameValidationMessages?: RenameValidationMessages;
onCreateFolder?: (
file: DialUploadFileItem,
folderPath: string,
fileId: string,
) => void | Promise<void>;
onCreateFolderValidate?: (
name: string,
parentFolder: DialFile,
) => string | null;
folderCreationValidationMessages?: FolderCreationValidationMessages;
onUploadFiles?: (
files: DialUploadFileItem[],
destinationFolder: string,
) => void;
onValidateUpload?: (
files: DialUploadFileItem[],
existingFiles: DialFile[],
destinationFolder: string,
) => FileUploadValidationResult | Promise<FileUploadValidationResult>;
maxFileSize?: number;
uploadValidationMessages?: FileUploadValidationMessages;
onUploadArchive?: (
file: File,
name: string,
destinationFolder: string,
) => void;
uploadEnabled?: boolean;
fileMetadataPopupOptions?: FileMetadataPopupOptions;
onGetInfo?: (file: DialFile) => void | Promise<void>;
onUnshareFiles?: (files: DialFile[]) => void | Promise<void>;
onRemoveFilesAccess?: (files: DialFile[]) => void | Promise<void>;
actionsRef?: Ref<DialFileManagerActionsRef>;
onSearchFiles?: (folder: string, query: string) => void;
searchInProgress?: boolean;
searchResults?: DialFile[];
clearSearchResults?: () => void;
emptyStateIcon?: ReactNode;
emptyStateTitle?: string;
emptyStateDescription?: string;
sharedWithMeIds?: string[];
onFolderPopupPathChange?: (newPath?: string) => void;
onManagePermissions?: (path?: string) => void;
onPreview?: (path?: string) => void;
previewExtensions?: string[];
isRenameFileAvailable?: boolean;
customUploadFileAction?: (
currentPath?: string,
currentFolder?: DialFile,
) => void;
}
/**
* File Manager layout with a collapsible folders tree, breadcrumb/search header, and a data grid.
*
* Features:
* - Global `path` drives both the breadcrumb trail and the visible folder in the grid.
* - The grid shows children of the current folder. When a search query is present, it scans all nested descendants.
* - Pluggable tree, navigation panel, and grid behaviors via `treeOptions`, `navigationPanelOptions`, and `gridOptions`.
* - Optional filters toggle via `gridOptions.filterable` (default `true`).
* - Supports bulk actions toolbar when items are selected.
*
* @example
* ```tsx
* // Minimal usage
* <DialFileManager items={files} path="/All files" />
*
* // With loading state
* <DialFileManager items={files} path="/All files" filesLoading={true} />
*
* // With controlled search and disabled grid filters
* const [query, setQuery] = useState('');
* <DialFileManager
* items={files}
* path="/All files/Design"
* navigationPanelOptions={{
* searchable: true,
* value: query,
* onSearchChange: setQuery,
* }}
* gridOptions={{ filterable: false }}
* />
*
* // With custom tree width and title
* <DialFileManager
* items={files}
* treeOptions={{ width: 300, title: 'Explorer', showFiles: true }}
* />
*
* // With explicit provider (advanced apps)
* <FileManagerProvider items={files} path="/All files">
* <MyCustomHeader />
* <DialFileManagerView /> // internal view
* <MyCustomFooter />
* </FileManagerProvider>
* ```
*
* @param [path] - Absolute path of the current location (e.g. "/All files/Design/Icons")
* @param [defaultPath] - Initial path used in uncontrolled mode (applied only on first render)
* @param [className] - Additional classes for the root container
* @param [gridClassName] - Additional classes for the grid container
* @param [items] - Full hierarchical list of files and folders used by both tree and grid
* @param [rootItem] - Optional root folder item to represent the top-level container in the tree
* @param [filesLoading=false] - When true, shows skeleton loading state in the grid
* @param [selectedPaths] - Controlled set of selected item paths
* @param [defaultSelectedPaths] - Initial selected paths used in uncontrolled mode
*
* @param [treeOptions] - Options that configure the collapsible sidebar and folders tree
* @param [showNavigationPanel] - Determines whether to display the navigation panel.
* @param [navigationPanelOptions] - Options for the breadcrumb and search panel (value/onSearchChange for controlled search)
* @param [toolbarOptions] - Options for the file manager toolbar
* @param [gridOptions] - Options forwarded to `DialGrid`; supports `columnDefs` override and `filterable` flag and date locale/options
* @param [bulkActionsToolbarOptions] - Options for the bulk actions toolbar shown when items are selected
* @param [deleteConfirmationOptions] - Options for the delete confirmation popup
*
* @param [compactViewWidthBreakpoint=DEFAULT_COMPACT_VIEW_WIDTH_BREAKPOINT] - Width (px) below which the component switches to compact view.
*
* @param [onPathChange] - Callback fired when user navigates via tree or breadcrumb
* @param [onSelectedPathsChange] - Callback fired when the selected paths change
* @param [onTableFileClick] - Callback fired when a file row is clicked in the grid
*
* @param [onCopyFiles] - Callback fired when files copy-paste
* @param [onMoveToFiles] - Callback fired when files cut-paste or rename
* @param [onDeleteFiles] - Callback fired when files are deleted
* @param [onAddSibling] - Callback fired when when a new folder is added as a sibling to the selected folder
* @param [onAddChild] - Callback fired when when a new folder is added as a child to the selected folder
*
* @param [onDownloadFiles] - Callback fired when files are downloaded
*
* @param [onUploadArchive] - Callback fired when archive files are uploaded
* @param [onUploadFiles] - Callback fired when files are uploaded
* @param [onValidateUpload] - Callback to validate files before upload
* @param [maxFileSize] - Maximum allowed file size for uploads in bytes
* @param [uploadValidationMessages] - Custom validation messages for file uploads
* @param [uploadEnabled=true] - Whether files uploads are enabled
*
* @param [sharedByMePaths] - Set of items paths that the user has shared with others. Enables UI indicators (icons/badges) in the tree and grid.
*
* @param [actionsRef] - Ref exposing a limited set of imperative File Manager actions (e.g., creating a folder). Allows parent components to trigger internal behaviors programmatically. This ref is not a DOM ref and should be used only for invoking the component’s public actions API.
*
* @param [allowedFileTypes] - Allowed file types (same format as the HTML `<input accept>` attribute). Controls upload filtering and which items are disabled in the File Manager UI. Supports MIME types, wildcards (e.g. `image/*`), and extensions (e.g. `.svg`).
*
* @param [maxSelectableFileSize] - Maximum allowed file size for selection in bytes
*
* @param [emptyStateIcon] - Optional icon for empty state
* @param [emptyStateTitle] - Optional title text displayed when there are no files.
* @param [emptyStateDescription] - Optional description text displayed below the empty state title.
*
* @param [sharedWithMeIds] - Optional list of file IDs that are shared with the current user.
*/
export const DialFileManager: FC<DialFileManagerProps> = (props) => {
return (
<FileManagerProvider {...props}>
<DialFileManagerView />
</FileManagerProvider>
);
};
/**
* Internal view-only component.
* Reads all data from FileManagerContext and renders the actual layout.
* This is what apps can reuse if they want to control the provider manually.
*/
export const DialFileManagerView: FC = () => {
const {
managerLabel,
className,
items,
rootItem,
filesLoading,
treeOptions,
showNavigationPanel,
navigationPanelOptions,
gridOptions,
toolbarOptions,
bulkActionsToolbarOptions,
deleteConfirmationOptions,
destinationFolderPopupOptions,
conflictResolutionPopupOptions,
compactViewWidthBreakpoint = DEFAULT_COMPACT_VIEW_WIDTH_BREAKPOINT,
customBreakpointRef,
sharedByMePaths,
allowedFileTypes,
maxSelectableFileSize,
areHiddenFilesVisible,
toggleHiddenFilesVisibility,
isTreeCollapsed,
toggleTreeCollapse,
currentPath,
gridRows,
selectedPaths,
selectedFiles,
clearSelection,
setSelectedPaths: selectedPathsChangeHandler,
effectiveSearchValue,
handleBreadcrumbItemClick,
handleSearchChange,
handleTreeItemClick,
handleTableRowClick,
handleSelectionClick,
onGridApiChange,
handleOpenDestinationFolderPopup,
handleCloseDestinationFolderPopup,
openDestinationFolderPopup,
destinationFolderMode,
handleSetCopiedFiles,
handleSetMovedFiles,
handleDuplicate,
handleCopyTo,
handleMoveTo,
handleAddSibling,
handleAddChild,
handleDownloadFiles,
openDeleteConfirmation,
closeDeleteConfirmation,
confirmDelete,
deleteConfirmationOpen,
itemsToDelete,
renamedPath,
renamedItem,
onRename,
onRenameSave,
onRenameCancel,
onRenameValidate,
getDisplayName,
isDragging,
isDraggingOverWindow,
handleDragEnter,
handleDragLeave,
handleDragOver,
handleDrop,
onUploadFiles,
onValidateUpload,
maxFileSize,
newActions,
isNewButtonVisible,
isNewButtonDisabled,
newFolderTempId,
cancelFolderCreation,
saveFolderCreation,
validateFolderName,
startFolderCreation,
conflictingFiles,
conflictResolutionOpen,
handleConflictReplace,
handleConflictDuplicate,
handleConflictCancel,
handleConflictDecideForEach,
uploadConflictingFiles,
uploadConflictResolutionOpen,
handleUploadConflictReplace,
handleUploadConflictDuplicate,
handleUploadConflictCancel,
handleUploadConflictDecideForEach,
openMetadataPopup,
fileMetadataPopupOptions,
isMetadataPopupOpen,
selectedFileForMetadata,
closeMetadataPopup,
onUnshareFiles,
onRemoveFilesAccess,
actionsRef,
searchInProgress,
isSearchMode,
emptyStateIcon,
emptyStateTitle = "You don't have any files",
emptyStateDescription = 'Upload or drag and drop files',
sharedWithMeIds,
onFolderPopupPathChange,
onManagePermissions,
onPreview,
previewExtensions,
isRenameFileAvailable,
gridClassName,
} = useFileManagerContext();
const {
width = sidebarWidth,
header = sidebarTitleDefault,
containerClassName = treeBaseClassName,
additionalButtons,
...forwardedTreeProps
} = treeOptions ?? {};
const [sidebarCurrentWidth, setSidebarCurrentWidth] = useState(width);
const { renameTriggerView, onGridRename, onTreeRename } =
useTriggerViewRename({ onRename });
const sidebarThrottledRef = useRef<number | null>(null);
const sidebarResizingHandler = (width: number) => {
if (sidebarThrottledRef.current === null) {
sidebarThrottledRef.current = requestAnimationFrame(() => {
setSidebarCurrentWidth(width);
sidebarThrottledRef.current = null;
});
}
};
const {
columnDefs: userColumnDefs,
filterable = true,
dateLocale,
dateOptions,
selectionMode,
wrapCustomCellRenderers,
visibleColumns = DEFAULT_VISIBLE_COLUMN,
...forwardedGridOptions
} = gridOptions ?? {};
const { containerRef, isBelowBreakpoint: isCompactView } = useWidthBreakpoint(
compactViewWidthBreakpoint,
customBreakpointRef,
);
const effectiveVisibleColumns = useMemo(() => {
return isSearchMode
? [
FileManagerColumnKey.Name,
FileManagerColumnKey.Path,
FileManagerColumnKey.Actions,
]
: visibleColumns;
}, [isSearchMode, visibleColumns]);
const isRowDisabled = useCallback(
(
row: FileManagerGridRow,
allowedFileTypes?: DialFileAcceptType[],
maxSelectableFileSize?: number,
) => {
const isFileSizeAccepted =
row.nodeType === DialFileNodeType.FOLDER ||
!row.contentLength ||
typeof maxSelectableFileSize !== 'number' ||
row.contentLength <= maxSelectableFileSize;
const isFileTypeAccepted =
row.nodeType === DialFileNodeType.FOLDER ||
!row.contentType ||
isFileAccepted(allowedFileTypes, row.contentType, row.name);
return !isFileTypeAccepted || !isFileSizeAccepted;
},
[],
);
const getTreeContextMenuItems = useCallback(
(file: DialFile): DropdownItem[] => {
const items: DropdownItem[] = [];
const elements: DropdownItem[] = [];
const isRootNode = !file.parentPath;
if (treeOptions?.actionLabels) {
if (
treeOptions.actionLabels[DialFileManagerActions.AddSibling] &&
typeof handleAddSibling === 'function' &&
file.nodeType === DialFileNodeType.FOLDER &&
!isRootNode
) {
items.push({
key: 'addSibling',
label: treeOptions.actionLabels[DialFileManagerActions.AddSibling],
icon: (
<AddSibling
width={BASE_ICON_PROPS.size}
height={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => handleAddSibling([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.AddChild] &&
typeof handleAddChild === 'function' &&
file.nodeType === DialFileNodeType.FOLDER
) {
items.push({
key: 'addChild',
label: treeOptions.actionLabels[DialFileManagerActions.AddChild],
icon: (
<AddChild
width={BASE_ICON_PROPS.size}
height={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => handleAddChild([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Duplicate] &&
!isRootNode
) {
elements.push({
key: 'duplicate',
label: treeOptions.actionLabels[DialFileManagerActions.Duplicate],
icon: <IconCopy {...BASE_ICON_PROPS} className="text-secondary" />,
onClick: () => handleDuplicate([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Copy] &&
!isRootNode
) {
elements.push({
key: DestinationFolderMode.Copy,
label: treeOptions.actionLabels[DialFileManagerActions.Copy],
icon: (
<CopyToIcon
width={BASE_ICON_PROPS.size}
height={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => {
handleSetCopiedFiles([file]);
handleOpenDestinationFolderPopup(DestinationFolderMode.Copy);
},
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Move] &&
!isRootNode
) {
elements.push({
key: DestinationFolderMode.Move,
label: treeOptions.actionLabels[DialFileManagerActions.Move],
icon: (
<MoveToIcon
width={BASE_ICON_PROPS.size}
height={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => {
handleSetMovedFiles([file]);
handleOpenDestinationFolderPopup(DestinationFolderMode.Move);
},
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Download] &&
!isRootNode
) {
elements.push({
key: 'download',
label: treeOptions.actionLabels[DialFileManagerActions.Download],
icon: (
<IconDownload {...BASE_ICON_PROPS} className="text-secondary" />
),
onClick: () => handleDownloadFiles([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Rename] &&
!isRootNode
) {
elements.push({
key: 'rename',
label: treeOptions.actionLabels[DialFileManagerActions.Rename],
icon: (
<IconPencilMinus
{...BASE_ICON_PROPS}
className="text-secondary"
/>
),
onClick: () => onTreeRename(file.path),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Unshare] &&
sharedWithMeIds?.includes(file.path) &&
!isRootNode
) {
elements.push({
key: 'unshare',
label: treeOptions.actionLabels[DialFileManagerActions.Unshare],
icon: (
<IconUnshare
width={BASE_ICON_PROPS.size}
height={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => onUnshareFiles?.([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.RemoveAccess] &&
sharedByMePaths?.has(file.path) &&
!isRootNode
) {
elements.push({
key: DialFileManagerActions.RemoveAccess,
label:
treeOptions.actionLabels[DialFileManagerActions.RemoveAccess],
icon: (
<IconUserX
size={BASE_ICON_PROPS.size}
className="text-secondary"
/>
),
onClick: () => onRemoveFilesAccess?.([file]),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.ManagePermissions] &&
typeof onManagePermissions === 'function' &&
file.nodeType === DialFileNodeType.FOLDER &&
!isRootNode
) {
elements.push({
key: DialFileManagerActions.ManagePermissions,
label:
treeOptions.actionLabels[
DialFileManagerActions.ManagePermissions
],
icon: (
<IconExternalLink
{...BASE_ICON_PROPS}
className="text-secondary"
/>
),
onClick: () => onManagePermissions?.(file.path),
});
}
if (
treeOptions.actionLabels[DialFileManagerActions.Delete] &&
file.permissions?.includes(DialFilePermission.WRITE) &&
!isRootNode
) {
elements.push({
key: 'delete',
label: treeOptions.actionLabels[DialFileManagerActions.Delete],
icon: (
<IconTrashX {...BASE_ICON_PROPS} className="text-secondary" />
),
onClick: () =>
openDeleteConfirmation([file], file.parentPath ?? ''),
});
}
}
if (!items.length) {
return elements;
}
if (!elements.length) {
return items;
}
return [
...items,
{
key: 'divider',
type: DropdownItemType.Divider,
},
...elements,
];
},
[
treeOptions?.actionLabels,
handleAddSibling,
handleAddChild,
handleDuplicate,
handleSetCopiedFiles,
handleOpenDestinationFolderPopup,
handleSetMovedFiles,
handleDownloadFiles,
onTreeRename,
onUnshareFiles,
onRemoveFilesAccess,
sharedWithMeIds,
sharedByMePaths,
openDeleteConfirmation,
onManagePermissions,
],
);
const selectedGridRowsIds = useMemo(() => {
const data = new Set<string>();
selectedFiles.forEach((_file, id) => data.add(id));
return data;
}, [selectedFiles]);
const disabledGridRowIds = useMemo(() => {
const ids = new Set<string>();
gridRows
.filter((row) =>
isRowDisabled(row, allowedFileTypes, maxSelectableFileSize),
)
.forEach((row) => ids.add(row.path));
return ids;
}, [allowedFileTypes, maxSelectableFileSize, gridRows, isRowDisabled]);
const handleSelectionChange = useCallback(
(selectedRowsIds: Set<string>, selectedRows: GridRow[]) => {
selectedPathsChangeHandler(selectedRowsIds);
handleSelectionClick?.(selectedRows);
},
[handleSelectionClick, selectedPathsChangeHandler],
);
const bulkActions = useBulkActions({
selectedFiles,
actionLabels: bulkActionsToolbarOptions?.actionLabels,
onDuplicate: handleDuplicate,
onCopy: (files) => {
handleSetCopiedFiles(files);
handleOpenDestinationFolderPopup(DestinationFolderMode.Copy);
},
onMove: (files) => {
handleSetMovedFiles(files);
handleOpenDestinationFolderPopup(DestinationFolderMode.Move);
},
onDownload: handleDownloadFiles,
onRename: onGridRename,
onDelete: openDeleteConfirmation,
onUnshare: onUnshareFiles,
onRemoveAccess: onRemoveFilesAccess,
getCurrentFolderPath: () => currentPath ?? '/',
sharedWithMeIds,
sharedByMePaths,
onClearSelection: clearSelection,
});
const renderToolbar = useCallback(() => {
if (toolbarOptions && selectedPaths.size === 0) {
return (
<div
className={toolbarBaseClassName}
role="toolbar"
aria-label="File Manager Toolbar"
>
{managerLabel}
<DialFileManagerToolbar
{...toolbarOptions}
areHiddenFilesVisible={areHiddenFilesVisible}
onToggleHiddenFiles={toggleHiddenFilesVisibility}
isNewButtonVisible={isNewButtonVisible}
isNewButtonDisabled={isNewButtonDisabled}
newButtonDropdownItems={newActions}
/>
</div>
);
}
if (selectedPaths.size > 0 && bulkActionsToolbarOptions) {
return (
<div
className={toolbarBaseClassName}
role="toolbar"
aria-label="File Manager Toolbar"
>
<DialFileManagerBulkActionsToolbar
{...bulkActionsToolbarOptions}
selectedCount={selectedPaths.size}
onClearSelection={clearSelection}
actions={bulkActions}
/>