|
@@ -1,10 +1,3 @@
|
|
|
-export const ARCHIVE_SECTION = -1;
|
|
|
-export const TRASH_SECTION = -2;
|
|
|
-export const DUMMY_UNCATEGORIZED_COLLECTION = -3;
|
|
|
-export const HIDDEN_ITEMS_SECTION = -4;
|
|
|
-export const ALL_SECTION = 0;
|
|
|
-export const DEFAULT_HIDDEN_COLLECTION_USER_FACING_NAME = "Hidden";
|
|
|
-
|
|
|
export enum CollectionType {
|
|
|
folder = "folder",
|
|
|
favorites = "favorites",
|
|
@@ -29,72 +22,3 @@ export enum CollectionSummaryType {
|
|
|
hiddenItems = "hiddenItems",
|
|
|
pinned = "pinned",
|
|
|
}
|
|
|
-export enum COLLECTION_LIST_SORT_BY {
|
|
|
- NAME,
|
|
|
- CREATION_TIME_ASCENDING,
|
|
|
- UPDATION_TIME_DESCENDING,
|
|
|
-}
|
|
|
-
|
|
|
-export const COLLECTION_SHARE_DEFAULT_VALID_DURATION =
|
|
|
- 10 * 24 * 60 * 60 * 1000 * 1000;
|
|
|
-export const COLLECTION_SHARE_DEFAULT_DEVICE_LIMIT = 4;
|
|
|
-
|
|
|
-export const COLLECTION_SORT_ORDER = new Map([
|
|
|
- [CollectionSummaryType.all, 0],
|
|
|
- [CollectionSummaryType.hiddenItems, 0],
|
|
|
- [CollectionSummaryType.uncategorized, 1],
|
|
|
- [CollectionSummaryType.favorites, 2],
|
|
|
- [CollectionSummaryType.pinned, 3],
|
|
|
- [CollectionSummaryType.album, 4],
|
|
|
- [CollectionSummaryType.folder, 4],
|
|
|
- [CollectionSummaryType.incomingShareViewer, 4],
|
|
|
- [CollectionSummaryType.incomingShareCollaborator, 4],
|
|
|
- [CollectionSummaryType.outgoingShare, 4],
|
|
|
- [CollectionSummaryType.sharedOnlyViaLink, 4],
|
|
|
- [CollectionSummaryType.archived, 4],
|
|
|
- [CollectionSummaryType.archive, 5],
|
|
|
- [CollectionSummaryType.trash, 6],
|
|
|
- [CollectionSummaryType.defaultHidden, 7],
|
|
|
-]);
|
|
|
-
|
|
|
-export const SYSTEM_COLLECTION_TYPES = new Set([
|
|
|
- CollectionSummaryType.all,
|
|
|
- CollectionSummaryType.archive,
|
|
|
- CollectionSummaryType.trash,
|
|
|
- CollectionSummaryType.uncategorized,
|
|
|
- CollectionSummaryType.hiddenItems,
|
|
|
- CollectionSummaryType.defaultHidden,
|
|
|
-]);
|
|
|
-
|
|
|
-export const ADD_TO_NOT_ALLOWED_COLLECTION = new Set([
|
|
|
- CollectionSummaryType.all,
|
|
|
- CollectionSummaryType.archive,
|
|
|
- CollectionSummaryType.incomingShareViewer,
|
|
|
- CollectionSummaryType.trash,
|
|
|
- CollectionSummaryType.uncategorized,
|
|
|
- CollectionSummaryType.defaultHidden,
|
|
|
- CollectionSummaryType.hiddenItems,
|
|
|
-]);
|
|
|
-
|
|
|
-export const MOVE_TO_NOT_ALLOWED_COLLECTION = new Set([
|
|
|
- CollectionSummaryType.all,
|
|
|
- CollectionSummaryType.archive,
|
|
|
- CollectionSummaryType.incomingShareViewer,
|
|
|
- CollectionSummaryType.incomingShareCollaborator,
|
|
|
- CollectionSummaryType.trash,
|
|
|
- CollectionSummaryType.uncategorized,
|
|
|
- CollectionSummaryType.defaultHidden,
|
|
|
- CollectionSummaryType.hiddenItems,
|
|
|
-]);
|
|
|
-
|
|
|
-export const OPTIONS_NOT_HAVING_COLLECTION_TYPES = new Set([
|
|
|
- CollectionSummaryType.all,
|
|
|
- CollectionSummaryType.archive,
|
|
|
-]);
|
|
|
-
|
|
|
-export const HIDE_FROM_COLLECTION_BAR_TYPES = new Set([
|
|
|
- CollectionSummaryType.trash,
|
|
|
- CollectionSummaryType.archive,
|
|
|
- CollectionSummaryType.uncategorized,
|
|
|
- CollectionSummaryType.defaultHidden,
|
|
|
-]);
|