| 12345678910111213141516171819202122232425262728 |
- import type { Nullable } from '@growi/core';
- export const SidebarContentsType = {
- CUSTOM: 'custom',
- RECENT: 'recent',
- TREE: 'tree',
- TAG: 'tag',
- BOOKMARKS: 'bookmarks',
- } as const;
- export const AllSidebarContentsType = Object.values(SidebarContentsType);
- export type SidebarContentsType = typeof SidebarContentsType[keyof typeof SidebarContentsType];
- export type ICustomTabContent = {
- Content?: () => JSX.Element,
- i18n?: string,
- Icon?: () => JSX.Element,
- isLinkEnabled?: boolean | ((content: ICustomTabContent) => boolean),
- };
- export type ICustomNavTabMappings = { [key: string]: ICustomTabContent };
- export type OnDeletedFunction = (idOrPaths: string | string[], isRecursively: Nullable<true>, isCompletely: Nullable<true>) => void;
- export type OnRenamedFunction = (path: string) => void;
- export type OnDuplicatedFunction = (fromPath: string, toPath: string) => void;
- export type OnPutBackedFunction = (path: string) => void;
- export type onDeletedBookmarkFolderFunction = (bookmarkFolderId: string) => void;
|