-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSavedViewOptions.tsx
448 lines (393 loc) · 13.8 KB
/
SavedViewOptions.tsx
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
import { SvgAdd, SvgBlank, SvgCheckmarkSmall, SvgRename, SvgShare } from "@itwin/itwinui-icons-react";
import { Input, MenuItem, Text } from "@itwin/itwinui-react";
import Fuse from "fuse.js";
import { useMemo, useState, type ChangeEvent, type ComponentProps, type ReactElement, type ReactNode } from "react";
import { LayeredMenuItem } from "../LayeredDropdownMenu/LayeredDropdownMenu.js";
import type { SavedViewGroup, SavedView, SavedViewTag } from "../SavedView.js";
import { useSavedViewsContext } from "../SavedViewsContext.js";
import { trimInputString } from "../utils.js";
import { useSavedViewTileContext } from "./SavedViewTileContext.js";
import "./SavedViewOptions.css";
/**
* A collection of useful menu items for {@linkcode SavedViewTile}.
*
* @example
* <SavedViewTile
* savedView={savedView}
* options={(close) => [<SavedViewOptions.Rename key="rename" icon={<SvgBlank />} onClick={close} />]}
* onRename={handleRename}
* />
*/
export const SavedViewOptions = {
/**
* When activated, makes Saved View title enter editable state. Has no effect if the {@linkcode SavedViewTile} does
* not receive `onRename` prop.
*
* @example
* <SavedViewTile
* savedView={savedView}
* options={(close) => [<SavedViewOptions.Rename key="rename" icon={<SvgBlank />} onClick={close} />]}
* onRename={handleRename}
* />
*/
Rename,
/**
* Displays a control for moving Saved View to a group.
*
* @example
* <SavedViewOptions.MoveToGroup
* groups={groups}
* moveToGroup={handleMoveToGroup}
* moveToNewGroup={handleMoveTo}
* icon={<SvgBlank />}
* />
*/
MoveToGroup,
/**
* Displays a control for managing Saved View tags.
*
* @example
* <SavedViewOptions.ManageTags
* tags={tags}
* addTag={handleAddTag}
* addNewTag={handleAddNewTag}
* removeTag={handleRemoveTag}
* icon={<SvgBlank />}
* />
*/
ManageTags,
/**
* Displays option for Saved View deletion.
*
* @example
* <SavedViewOptions.Delete
* icon={<SvgBlank />}
* deleteSavedView={handleDeleteSavedView}
* />
*/
Delete,
};
export interface CreateSavedViewOptionsParams {
/** When `true`, the returned options contain a `Rename` entry. */
renameSavedView?: boolean | undefined;
/** When set, the returned options contain a `Move to group` entry. */
groupActions?: OmitCommonOptionProps<ComponentProps<typeof SavedViewOptions.MoveToGroup>>;
/** When set, the returned options contain a `Tags` entry. */
tagActions?: OmitCommonOptionProps<ComponentProps<typeof SavedViewOptions.ManageTags>>;
/** When set, the returned options contain a `Delete` entry. */
deleteSavedView?: ComponentProps<typeof SavedViewOptions.Delete>["deleteSavedView"];
}
type OmitCommonOptionProps<T> = Omit<T, "icon">;
/**
* Convenience function that returns an array populated with options to be used on {@linkcode SavedViewTile}. Available
* options are determined by what data is present in the {@linkcode args} argument.
*
* @example
* <SavedViewTile
* savedView={savedView}
* options={createSavedViewOptions({ tagActions, groupActions })}
* editable
* />
*/
export function createSavedViewOptions(args: CreateSavedViewOptionsParams): (close: () => void) => ReactElement[] {
return (close) => {
const options: ReactElement[] = [];
if (args.renameSavedView) {
options.push(<SavedViewOptions.Rename key="rename" icon={<SvgRename />} onClick={close} />);
}
if (args.groupActions && args.groupActions) {
options.push(
<SavedViewOptions.MoveToGroup
key="move"
groups={args.groupActions.groups}
moveToGroup={args.groupActions.moveToGroup}
moveToNewGroup={args.groupActions.moveToNewGroup}
icon={<SvgBlank />}
/>,
);
}
if (args.tagActions && args.tagActions) {
options.push(
<SavedViewOptions.ManageTags
key="tags"
tags={args.tagActions.tags}
addTag={args.tagActions.addTag}
addNewTag={args.tagActions.addNewTag}
removeTag={args.tagActions.removeTag}
icon={<SvgBlank />}
/>,
);
}
if (args.deleteSavedView) {
options.push(<SavedViewOptions.Delete key="delete" icon={<SvgBlank />} deleteSavedView={args.deleteSavedView} />);
}
return options;
};
}
interface RenameProps extends CommonOptionProps {
/** Invoked after triggering the rename action. Often used to close the tile dropdown menu. */
onClick?: (() => void) | undefined;
}
function Rename(props: RenameProps): ReactElement {
const { setEditingName } = useSavedViewTileContext();
const { localization } = useSavedViewsContext();
const handleClick = () => {
setEditingName(true);
props.onClick?.();
};
return (
<MenuItem className={props.className} startIcon={props.icon} onClick={handleClick}>
{localization.rename}
</MenuItem>
);
}
interface MoveToGroupProps extends CommonOptionProps {
/** Available Saved View groups to choose from. */
groups: SavedViewGroup[];
/**
* Invoked when user selects a group from the supplied {@linkcode groups} list.
* @param savedViewId Id of the associated Saved View.
* @param groupId Id of the user-selected group.
*/
moveToGroup: (savedViewId: string, groupId: string) => void;
/**
* When set, allows creation of new Saved View groups. Invoked when user submits a name for the new group.
* @param savedViewId Id of the associated Saved View.
* @param groupName User-submitted string for the new Saved View group.
*/
moveToNewGroup?: ((savedViewId: string, groupName: string) => void) | undefined;
}
function MoveToGroup(props: MoveToGroupProps): ReactElement {
const { savedView } = useSavedViewTileContext();
const { localization } = useSavedViewsContext();
return (
<LayeredMenuItem
className={props.className}
icon={<SvgBlank />}
content={
<MoveToGroupSubmenu
key="move"
savedView={savedView}
groups={props.groups}
moveToGroup={props.moveToGroup}
moveToNewGroup={props.moveToNewGroup}
/>
}
>
{localization.moveToGroupMenu.moveToGroup}
</LayeredMenuItem>
);
}
interface MoveToGroupSubmenuProps {
savedView: SavedView;
groups: SavedViewGroup[];
moveToGroup: (savedViewId: string, groupId: string) => void;
moveToNewGroup?: ((savedViewId: string, groupName: string) => void) | undefined;
}
function MoveToGroupSubmenu(props: MoveToGroupSubmenuProps): ReactElement {
const { localization: { moveToGroupMenu } } = useSavedViewsContext();
const handleMoveToGroup = (groupId: string) => {
props.moveToGroup(props.savedView.savedViewId, groupId);
};
const { moveToNewGroup } = props;
const handleCreate = moveToNewGroup && ((groupName: string) => {
moveToNewGroup(props.savedView.savedViewId, groupName);
});
return (
<SearchableSubmenu
collection={props.groups}
indexer="groupId"
placeholder={props.moveToNewGroup ? moveToGroupMenu.findOrCreateGroup : moveToGroupMenu.findGroup}
creationLabel={moveToGroupMenu.createGroup}
onCreate={handleCreate}
>
{(searchResults) =>
searchResults.map((group) => (
<MenuItem
key={group.groupId}
className="svr-searchable-submenu-item"
startIcon={group.shared ? <SvgShare /> : <SvgBlank />}
onClick={() => handleMoveToGroup(group.groupId)}
disabled={group.groupId === props.savedView.groupId}
>
{group.displayName}
{
group.groupId === props.savedView.groupId &&
<Text style={{ marginLeft: "var(--iui-size-xs)" }} as="span">{moveToGroupMenu.current}</Text>
}
</MenuItem>
))
}
</SearchableSubmenu>
);
}
interface ManageTagsProps extends CommonOptionProps {
/** Available Saved View tags to choose from. */
tags: SavedViewTag[];
/**
* Invoked when user selects a tag from the supplied {@linkcode tags} list.
* @param savedViewId Id of the associated Saved View.
* @param tagId Id of the user-selected tag.
*/
addTag: (savedViewId: string, tagId: string) => void;
/**
* When set, allows creation of new Saved View tags. Invoked when user submits a name for the new tag.
* @param savedViewId Id of the associated Saved View.
* @param tagName User-submitted string for the new Saved View tag.
*/
addNewTag?: ((savedViewId: string, tagName: string) => void) | undefined;
/**
* Invoked when user selects a tag from the supplied {@linkcode tags} list.
* @param savedViewId Id of the associated Saved View.
* @param tagId Id of the user-selected tag.
*/
removeTag: (savedViewId: string, tagId: string) => void;
}
function ManageTags(props: ManageTagsProps): ReactElement {
const { savedView } = useSavedViewTileContext();
const { localization } = useSavedViewsContext();
return (
<LayeredMenuItem
className={props.className}
icon={props.icon}
content={
<ManageTagsSubmenu
key="tags"
savedView={savedView}
tags={props.tags}
addTag={props.addTag}
addNewTag={props.addNewTag}
removeTag={props.removeTag}
/>
}
>
{localization.tagsMenu.tags}
</LayeredMenuItem>
);
}
interface ManageTagsSubmenuProps {
savedView: SavedView;
tags: SavedViewTag[];
addTag: (savedViewId: string, tagId: string) => void;
addNewTag?: ((savedViewId: string, tagName: string) => void) | undefined;
removeTag: (savedViewId: string, tagId: string) => void;
}
function ManageTagsSubmenu(props: ManageTagsSubmenuProps): ReactElement {
const { localization } = useSavedViewsContext();
const handleTagClick = (tagId: string) => {
if (props.savedView.tagIds?.includes(tagId)) {
props.removeTag(props.savedView.savedViewId, tagId);
} else {
props.addTag(props.savedView.savedViewId, tagId);
}
};
const { addNewTag } = props;
const handleCreate = addNewTag && ((tagName: string) => {
addNewTag(props.savedView.savedViewId, tagName);
});
return (
<SearchableSubmenu
collection={props.tags}
indexer="tagId"
placeholder={props.addNewTag ? localization.tagsMenu.findOrCreateTag : localization.tagsMenu.findTag}
creationLabel={localization.tagsMenu.createTag}
onCreate={handleCreate}
>
{(searchResults) =>
searchResults.map((tag) => (
<MenuItem
key={tag.tagId}
className="svr-searchable-submenu-item"
startIcon={props.savedView.tagIds?.includes(tag.tagId) ? <SvgCheckmarkSmall /> : <SvgBlank />}
onClick={() => handleTagClick(tag.tagId)}
>
{tag.displayName}
</MenuItem>
))
}
</SearchableSubmenu>
);
}
interface SearchableSubmenuProps<T extends string, U> {
collection: U[];
indexer: T;
placeholder: string;
creationLabel: string;
onCreate?: ((value: string) => void) | undefined;
children: (searchResult: U[]) => ReactNode[];
}
type Indexable<T extends string> = { [K in T]: string; } & { displayName: string; };
function SearchableSubmenu<Indexer extends string, Collection extends Indexable<Indexer>>(
props: SearchableSubmenuProps<Indexer, Collection>,
): ReactElement {
const { localization } = useSavedViewsContext();
const fuse = useMemo(
() => new Fuse(props.collection, { keys: [props.indexer], threshold: 0.5 }),
[props.collection, props.indexer],
);
const [inputValue, setInputValue] = useState("");
const searchResults = useMemo(
() => inputValue.length === 0 ? props.collection : fuse.search(inputValue, { limit: 6 }).map(({ item }) => item),
[inputValue, props.collection, fuse],
);
const handleSearchChange = (event: ChangeEvent<HTMLInputElement>) => {
setInputValue(event.target.value);
};
const { onCreate } = props;
const trimmedValue = trimInputString(inputValue);
const offerCreate = onCreate && trimmedValue && !searchResults.find((result) => result.displayName === trimmedValue);
const handleCreate = onCreate && (() => {
setInputValue("");
onCreate(trimmedValue);
});
return (
<div className="svr-searchable-submenu">
<Input
className="svr-searchable-submenu-item"
placeholder={props.placeholder}
value={inputValue}
onChange={handleSearchChange}
/>
<div>
{
offerCreate &&
<MenuItem className="svr-searchable-submenu-item" startIcon={<SvgAdd />} onClick={handleCreate}>
{props.creationLabel}
<Text className="svr-semibold" as="span">{trimmedValue}</Text>
</MenuItem>
}
{props.children(searchResults)}
{
searchResults.length === 0 &&
<MenuItem sublabel={localization.searchableMenu.noSearchResults} size="default" disabled />
}
</div>
</div>
);
}
interface DeleteProps extends CommonOptionProps {
deleteSavedView: (savedViewId: string) => void;
}
function Delete(props: DeleteProps): ReactElement {
const { savedView } = useSavedViewTileContext();
const { localization } = useSavedViewsContext();
return (
<MenuItem
className={props.className}
startIcon={props.icon}
onClick={() => props.deleteSavedView(savedView.savedViewId)}
>
{localization.delete}
</MenuItem>
);
}
interface CommonOptionProps {
/** Icon to the left of this menu item. */
icon?: ReactElement | undefined;
/** Forwarded to the wrapping component. */
className?: string | undefined;
}