@zextras/carbonio-shell-ui 6.0.0 → 7.0.0
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/lib/boot/app/app-context-provider.d.ts +7 -0
- package/lib/boot/app/app-context-provider.js +17 -0
- package/lib/boot/app/app-context-provider.js.map +1 -0
- package/lib/boot/app/app-error-catcher.d.ts +3 -0
- package/lib/boot/app/app-error-catcher.js +41 -0
- package/lib/boot/app/app-error-catcher.js.map +1 -0
- package/lib/boot/app/app-loader-functions.d.ts +37 -0
- package/lib/boot/app/app-loader-functions.js +121 -0
- package/lib/boot/app/app-loader-functions.js.map +1 -0
- package/lib/boot/app/app-loader-setters.d.ts +38 -0
- package/lib/boot/app/app-loader-setters.js +46 -0
- package/lib/boot/app/app-loader-setters.js.map +1 -0
- package/lib/boot/matomo.d.ts +12 -0
- package/lib/boot/matomo.js +22 -0
- package/lib/boot/matomo.js.map +1 -0
- package/lib/boot/module-i18next-provider.d.ts +7 -0
- package/lib/boot/module-i18next-provider.js +22 -0
- package/lib/boot/module-i18next-provider.js.map +1 -0
- package/lib/boot/tracker.d.ts +11 -0
- package/lib/boot/tracker.js +57 -0
- package/lib/boot/tracker.js.map +1 -0
- package/lib/constants/index.d.ts +146 -0
- package/lib/constants/index.js +160 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/locales.d.ts +83 -0
- package/lib/constants/locales.js +86 -0
- package/lib/constants/locales.js.map +1 -0
- package/lib/history/hooks.d.ts +12 -0
- package/lib/history/hooks.js +69 -0
- package/lib/history/hooks.js.map +1 -0
- package/lib/lib.d.ts +74 -0
- package/lib/lib.js +134 -0
- package/lib/lib.js.map +1 -0
- package/lib/network/edit-settings.d.ts +14 -0
- package/lib/network/edit-settings.js +144 -0
- package/lib/network/edit-settings.js.map +1 -0
- package/lib/network/fetch.d.ts +4 -0
- package/lib/network/fetch.js +175 -0
- package/lib/network/fetch.js.map +1 -0
- package/lib/network/tags.d.ts +27 -0
- package/lib/network/tags.js +31 -0
- package/lib/network/tags.js.map +1 -0
- package/lib/network/user-agent.d.ts +1 -0
- package/lib/network/user-agent.js +15 -0
- package/lib/network/user-agent.js.map +1 -0
- package/lib/network/utils.d.ts +2 -0
- package/lib/network/utils.js +17 -0
- package/lib/network/utils.js.map +1 -0
- package/lib/notification/NotificationManager.d.ts +22 -0
- package/lib/notification/NotificationManager.js +153 -0
- package/lib/notification/NotificationManager.js.map +1 -0
- package/lib/reporting/functions.d.ts +2 -0
- package/lib/reporting/functions.js +14 -0
- package/lib/reporting/functions.js.map +1 -0
- package/lib/reporting/store.d.ts +8 -0
- package/lib/reporting/store.js +43 -0
- package/lib/reporting/store.js.map +1 -0
- package/lib/search/run-search.d.ts +2 -0
- package/lib/search/run-search.js +17 -0
- package/lib/search/run-search.js.map +1 -0
- package/lib/search/search-store.d.ts +2 -0
- package/lib/search/search-store.js +20 -0
- package/lib/search/search-store.js.map +1 -0
- package/lib/search/useSearchModule.d.ts +3 -0
- package/lib/search/useSearchModule.js +21 -0
- package/lib/search/useSearchModule.js.map +1 -0
- package/lib/settings/components/settings-header.d.ts +9 -0
- package/lib/settings/components/settings-header.js +86 -0
- package/lib/settings/components/settings-header.js.map +1 -0
- package/lib/shell/hooks/useIsMobile.d.ts +4 -0
- package/lib/shell/hooks/useIsMobile.js +22 -0
- package/lib/shell/hooks/useIsMobile.js.map +1 -0
- package/lib/shell/hooks/useLocalStorage.d.ts +14 -0
- package/lib/shell/hooks/useLocalStorage.js +77 -0
- package/lib/shell/hooks/useLocalStorage.js.map +1 -0
- package/lib/shell/shell-context.d.ts +4 -0
- package/lib/shell/shell-context.js +11 -0
- package/lib/shell/shell-context.js.map +1 -0
- package/lib/store/account/hooks.d.ts +14 -0
- package/lib/store/account/hooks.js +51 -0
- package/lib/store/account/hooks.js.map +1 -0
- package/lib/store/account/index.d.ts +2 -0
- package/lib/store/account/index.js +24 -0
- package/lib/store/account/index.js.map +1 -0
- package/lib/store/account/store.d.ts +2 -0
- package/lib/store/account/store.js +23 -0
- package/lib/store/account/store.js.map +1 -0
- package/lib/store/app/hooks.d.ts +14 -0
- package/lib/store/app/hooks.js +41 -0
- package/lib/store/app/hooks.js.map +1 -0
- package/lib/store/app/index.d.ts +2 -0
- package/lib/store/app/index.js +24 -0
- package/lib/store/app/index.js.map +1 -0
- package/lib/store/app/store.d.ts +44 -0
- package/lib/store/app/store.js +265 -0
- package/lib/store/app/store.js.map +1 -0
- package/lib/store/app/utils.d.ts +10 -0
- package/lib/store/app/utils.js +123 -0
- package/lib/store/app/utils.js.map +1 -0
- package/lib/store/boards/hooks.d.ts +31 -0
- package/lib/store/boards/hooks.js +82 -0
- package/lib/store/boards/hooks.js.map +1 -0
- package/lib/store/boards/index.d.ts +2 -0
- package/lib/store/boards/index.js +24 -0
- package/lib/store/boards/index.js.map +1 -0
- package/lib/store/boards/store.d.ts +23 -0
- package/lib/store/boards/store.js +124 -0
- package/lib/store/boards/store.js.map +1 -0
- package/lib/store/context-bridge.d.ts +11 -0
- package/lib/store/context-bridge.js +34 -0
- package/lib/store/context-bridge.js.map +1 -0
- package/lib/store/folder/hooks.d.ts +21 -0
- package/lib/store/folder/hooks.js +77 -0
- package/lib/store/folder/hooks.js.map +1 -0
- package/lib/store/folder/index.d.ts +2 -0
- package/lib/store/folder/index.js +24 -0
- package/lib/store/folder/index.js.map +1 -0
- package/lib/store/folder/store.d.ts +2 -0
- package/lib/store/folder/store.js +20 -0
- package/lib/store/folder/store.js.map +1 -0
- package/lib/store/folder/utils.d.ts +16 -0
- package/lib/store/folder/utils.js +53 -0
- package/lib/store/folder/utils.js.map +1 -0
- package/lib/store/i18n/hooks.d.ts +4 -0
- package/lib/store/i18n/hooks.js +21 -0
- package/lib/store/i18n/hooks.js.map +1 -0
- package/lib/store/i18n/store.d.ts +13 -0
- package/lib/store/i18n/store.js +104 -0
- package/lib/store/i18n/store.js.map +1 -0
- package/lib/store/integrations/composer.d.ts +49 -0
- package/lib/store/integrations/composer.js +233 -0
- package/lib/store/integrations/composer.js.map +1 -0
- package/lib/store/integrations/getters.d.ts +9 -0
- package/lib/store/integrations/getters.js +41 -0
- package/lib/store/integrations/getters.js.map +1 -0
- package/lib/store/integrations/hooks.d.ts +9 -0
- package/lib/store/integrations/hooks.js +42 -0
- package/lib/store/integrations/hooks.js.map +1 -0
- package/lib/store/integrations/store.d.ts +41 -0
- package/lib/store/integrations/store.js +65 -0
- package/lib/store/integrations/store.js.map +1 -0
- package/lib/store/integrations/utils.d.ts +8 -0
- package/lib/store/integrations/utils.js +50 -0
- package/lib/store/integrations/utils.js.map +1 -0
- package/lib/store/login/getters.d.ts +2 -0
- package/lib/store/login/getters.js +18 -0
- package/lib/store/login/getters.js.map +1 -0
- package/lib/store/login/store.d.ts +12 -0
- package/lib/store/login/store.js +18 -0
- package/lib/store/login/store.js.map +1 -0
- package/lib/store/network/hooks.d.ts +3 -0
- package/lib/store/network/hooks.js +14 -0
- package/lib/store/network/hooks.js.map +1 -0
- package/lib/store/network/index.d.ts +2 -0
- package/lib/store/network/index.js +24 -0
- package/lib/store/network/index.js.map +1 -0
- package/lib/store/network/store.d.ts +2 -0
- package/lib/store/network/store.js +15 -0
- package/lib/store/network/store.js.map +1 -0
- package/lib/store/network/utils.d.ts +13 -0
- package/lib/store/network/utils.js +94 -0
- package/lib/store/network/utils.js.map +1 -0
- package/lib/store/tags/hooks.d.ts +3 -0
- package/lib/store/tags/hooks.js +15 -0
- package/lib/store/tags/hooks.js.map +1 -0
- package/lib/store/tags/index.d.ts +2 -0
- package/lib/store/tags/index.js +24 -0
- package/lib/store/tags/index.js.map +1 -0
- package/lib/store/tags/store.d.ts +2 -0
- package/lib/store/tags/store.js +18 -0
- package/lib/store/tags/store.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib/types/account/index.d.ts +140 -0
- package/lib/types/account/index.js +8 -0
- package/lib/types/account/index.js.map +1 -0
- package/lib/types/apps/index.d.ts +120 -0
- package/lib/types/apps/index.js +9 -0
- package/lib/types/apps/index.js.map +1 -0
- package/lib/types/boards/index.d.ts +10 -0
- package/lib/types/boards/index.js +3 -0
- package/lib/types/boards/index.js.map +1 -0
- package/lib/types/folder/index.d.ts +29 -0
- package/lib/types/folder/index.js +8 -0
- package/lib/types/folder/index.js.map +1 -0
- package/lib/types/integrations/index.d.ts +8 -0
- package/lib/types/integrations/index.js +8 -0
- package/lib/types/integrations/index.js.map +1 -0
- package/lib/types/misc/index.d.ts +156 -0
- package/lib/types/misc/index.js +8 -0
- package/lib/types/misc/index.js.map +1 -0
- package/lib/types/network/entities.d.ts +47 -0
- package/lib/types/network/entities.js +3 -0
- package/lib/types/network/entities.js.map +1 -0
- package/lib/types/network/index.d.ts +171 -0
- package/lib/types/network/index.js +23 -0
- package/lib/types/network/index.js.map +1 -0
- package/lib/types/network/soap.d.ts +102 -0
- package/lib/types/network/soap.js +8 -0
- package/lib/types/network/soap.js.map +1 -0
- package/lib/types/search/index.d.ts +11 -0
- package/lib/types/search/index.js +23 -0
- package/lib/types/search/index.js.map +1 -0
- package/lib/types/search/items.d.ts +6 -0
- package/lib/types/search/items.js +3 -0
- package/lib/types/search/items.js.map +1 -0
- package/lib/types/tags/index.d.ts +12 -0
- package/lib/types/tags/index.js +9 -0
- package/lib/types/tags/index.js.map +1 -0
- package/lib/types/workers/index.d.ts +17 -0
- package/lib/types/workers/index.js +3 -0
- package/lib/types/workers/index.js.map +1 -0
- package/lib/ui-extras/app-link.d.ts +6 -0
- package/lib/ui-extras/app-link.js +40 -0
- package/lib/ui-extras/app-link.js.map +1 -0
- package/lib/ui-extras/nav-guard.d.ts +9 -0
- package/lib/ui-extras/nav-guard.js +96 -0
- package/lib/ui-extras/nav-guard.js.map +1 -0
- package/lib/ui-extras/spinner.d.ts +2 -0
- package/lib/ui-extras/spinner.js +18 -0
- package/lib/ui-extras/spinner.js.map +1 -0
- package/lib/utils/typeUtils.d.ts +14 -0
- package/lib/utils/typeUtils.js +3 -0
- package/lib/utils/typeUtils.js.map +1 -0
- package/lib/utils/utils.d.ts +20 -0
- package/lib/utils/utils.js +39 -0
- package/lib/utils/utils.js.map +1 -0
- package/lib/workers/index.d.ts +2 -0
- package/lib/workers/index.js +15 -0
- package/lib/workers/index.js.map +1 -0
- package/package.json +34 -37
- package/dist/20d012c938e8d0dcc703.mp3 +0 -0
- package/dist/2d9c9ae572663301cb7d.js +0 -75391
- package/dist/CHANGELOG.md +0 -701
- package/dist/carbonio-head.svg +0 -200
- package/dist/carbonio.svg +0 -10
- package/dist/commit +0 -1
- package/dist/component.json +0 -13
- package/dist/favicon.png +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-300-normal.woff +0 -0
- package/dist/files/roboto-greek-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-400-normal.woff +0 -0
- package/dist/files/roboto-greek-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-500-normal.woff +0 -0
- package/dist/files/roboto-greek-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-700-normal.woff +0 -0
- package/dist/files/roboto-greek-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-300-normal.woff +0 -0
- package/dist/files/roboto-latin-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-400-normal.woff +0 -0
- package/dist/files/roboto-latin-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-500-normal.woff +0 -0
- package/dist/files/roboto-latin-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-700-normal.woff +0 -0
- package/dist/files/roboto-latin-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff2 +0 -0
- package/dist/i18n/ar.json +0 -1
- package/dist/i18n/de.json +0 -438
- package/dist/i18n/en-US.json +0 -1
- package/dist/i18n/en.json +0 -438
- package/dist/i18n/es-419.json +0 -1
- package/dist/i18n/es.json +0 -438
- package/dist/i18n/fa.json +0 -1
- package/dist/i18n/fi.json +0 -12
- package/dist/i18n/fr.json +0 -438
- package/dist/i18n/hi.json +0 -438
- package/dist/i18n/hr.json +0 -1
- package/dist/i18n/hu.json +0 -31
- package/dist/i18n/id.json +0 -438
- package/dist/i18n/it.json +0 -438
- package/dist/i18n/ja.json +0 -438
- package/dist/i18n/ky.json +0 -6
- package/dist/i18n/nl.json +0 -438
- package/dist/i18n/pl.json +0 -438
- package/dist/i18n/pt-PT.json +0 -1
- package/dist/i18n/pt.json +0 -438
- package/dist/i18n/pt_BR.json +0 -438
- package/dist/i18n/ro.json +0 -9
- package/dist/i18n/ru.json +0 -438
- package/dist/i18n/th.json +0 -438
- package/dist/i18n/tr.json +0 -438
- package/dist/i18n/uk.json +0 -186
- package/dist/i18n/vi.json +0 -396
- package/dist/i18n/zh_Hans.json +0 -412
- package/dist/index.html +0 -25
- package/dist/notification.mp3 +0 -0
- package/dist/package/PKGBUILD +0 -45
- package/dist/plugins/help/js/i18n/keynav/de.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/en.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/es.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/fr_FR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/hi.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/it.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ja.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/nl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pt_BR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ro.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ru.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/th_TH.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/tr.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/vi.js +0 -90
- package/dist/skins/content/dark/content.css +0 -59
- package/dist/skins/content/dark/content.min.css +0 -8
- package/dist/skins/content/default/content.css +0 -49
- package/dist/skins/content/default/content.min.css +0 -8
- package/dist/skins/content/document/content.css +0 -53
- package/dist/skins/content/document/content.min.css +0 -8
- package/dist/skins/content/writer/content.css +0 -50
- package/dist/skins/content/writer/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.css +0 -615
- package/dist/skins/ui/oxide/content.inline.css +0 -608
- package/dist/skins/ui/oxide/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.mobile.css +0 -29
- package/dist/skins/ui/oxide/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide/skin.css +0 -2884
- package/dist/skins/ui/oxide/skin.min.css +0 -8
- package/dist/skins/ui/oxide/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide/skin.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.css +0 -596
- package/dist/skins/ui/oxide-dark/content.inline.css +0 -608
- package/dist/skins/ui/oxide-dark/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.mobile.css +0 -29
- package/dist/skins/ui/oxide-dark/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide-dark/skin.css +0 -2884
- package/dist/skins/ui/oxide-dark/skin.min.css +0 -8
- package/dist/skins/ui/oxide-dark/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide-dark/skin.mobile.min.css +0 -8
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css +0 -21
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css.map +0 -1
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js +0 -13399
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js.map +0 -1
- package/dist/src_workers_folder_ts.2df69eae.chunk.js +0 -537
- package/dist/src_workers_folder_ts.2df69eae.chunk.js.map +0 -1
- package/dist/src_workers_tag_ts.59a752d7.chunk.js +0 -113
- package/dist/src_workers_tag_ts.59a752d7.chunk.js.map +0 -1
- package/dist/style.a7eb9e6c.css +0 -389
- package/dist/style.a7eb9e6c.css.map +0 -1
- package/dist/tinymce/langs/de.js +0 -1
- package/dist/tinymce/langs/es.js +0 -1
- package/dist/tinymce/langs/fr_FR.js +0 -1
- package/dist/tinymce/langs/hi.js +0 -1
- package/dist/tinymce/langs/it.js +0 -1
- package/dist/tinymce/langs/ja.js +0 -1
- package/dist/tinymce/langs/nl.js +0 -1
- package/dist/tinymce/langs/pl.js +0 -1
- package/dist/tinymce/langs/pt_BR.js +0 -1
- package/dist/tinymce/langs/ro.js +0 -1
- package/dist/tinymce/langs/ru.js +0 -1
- package/dist/tinymce/langs/th_TH.js +0 -1
- package/dist/tinymce/langs/tr.js +0 -1
- package/dist/tinymce/langs/vi.js +0 -1
- package/dist/tinymce/langs/zh-Hans.js +0 -1
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js +0 -412
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js +0 -787
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js +0 -693
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js +0 -685
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js +0 -644
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js +0 -741
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js +0 -531
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js +0 -703
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js +0 -638
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js +0 -623
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js +0 -682
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js +0 -678
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js +0 -670
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js +0 -707
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js +0 -672
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js +0 -677
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js +0 -765
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js +0 -521
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js.map +0 -1
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js +0 -19112
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js +0 -219343
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css +0 -4104
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map +0 -1
- package/dist/yap.json +0 -11
- package/dist/zapp-shell.bundle.js +0 -30430
- package/dist/zapp-shell.bundle.js.map +0 -1
- package/types/account/index.d.ts +0 -179
- package/types/apps/index.d.ts +0 -198
- package/types/boards/index.d.ts +0 -31
- package/types/exports/index.d.ts +0 -256
- package/types/folder/index.d.ts +0 -33
- package/types/i18n/index.d.ts +0 -19
- package/types/index.d.ts +0 -20
- package/types/integrations/index.d.ts +0 -41
- package/types/loginConfig/index.d.ts +0 -17
- package/types/misc/index.d.ts +0 -309
- package/types/network/entities.d.ts +0 -106
- package/types/network/index.d.ts +0 -239
- package/types/network/soap.d.ts +0 -106
- package/types/notification/index.d.ts +0 -31
- package/types/search/index.d.ts +0 -18
- package/types/search/items.d.ts +0 -13
- package/types/settings/index.d.ts +0 -10
- package/types/styled-components.d.ts +0 -18
- package/types/tags/index.d.ts +0 -21
- package/types/theme/index.d.ts +0 -9
- package/types/workers/index.d.ts +0 -24
|
@@ -1,537 +0,0 @@
|
|
|
1
|
-
/******/ (() => { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
|
-
/******/ var __webpack_modules__ = ({
|
|
4
|
-
|
|
5
|
-
/***/ "./src/utils/utils.ts":
|
|
6
|
-
/*!****************************!*\
|
|
7
|
-
!*** ./src/utils/utils.ts ***!
|
|
8
|
-
\****************************/
|
|
9
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10
|
-
|
|
11
|
-
__webpack_require__.r(__webpack_exports__);
|
|
12
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13
|
-
/* harmony export */ createExportForTestOnly: () => (/* binding */ createExportForTestOnly),
|
|
14
|
-
/* harmony export */ setElementSizeAndPosition: () => (/* binding */ setElementSizeAndPosition),
|
|
15
|
-
/* harmony export */ setGlobalCursor: () => (/* binding */ setGlobalCursor),
|
|
16
|
-
/* harmony export */ stopPropagation: () => (/* binding */ stopPropagation),
|
|
17
|
-
/* harmony export */ testFolderIsChecked: () => (/* binding */ testFolderIsChecked)
|
|
18
|
-
/* harmony export */ });
|
|
19
|
-
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ "./node_modules/core-js/modules/es.array.push.js");
|
|
20
|
-
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
21
|
-
/* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js");
|
|
22
|
-
/* harmony import */ var lodash__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(lodash__WEBPACK_IMPORTED_MODULE_1__);
|
|
23
|
-
|
|
24
|
-
/*
|
|
25
|
-
* SPDX-FileCopyrightText: 2023 Zextras <https://www.zextras.com>
|
|
26
|
-
*
|
|
27
|
-
* SPDX-License-Identifier: AGPL-3.0-only
|
|
28
|
-
*/
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
const testFolderIsChecked = ({
|
|
32
|
-
string
|
|
33
|
-
}) => /#/.test(string || '');
|
|
34
|
-
function setGlobalCursor(cursor) {
|
|
35
|
-
// remove previously set cursor
|
|
36
|
-
const cursors = [];
|
|
37
|
-
document.body.classList.forEach(item => {
|
|
38
|
-
if (item.startsWith('global-cursor-')) {
|
|
39
|
-
cursors.push(item);
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
document.body.classList.remove(...cursors);
|
|
43
|
-
if (cursor) {
|
|
44
|
-
document.body.classList.add(`global-cursor-${cursor}`);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
function setElementSizeAndPosition(element, key, value) {
|
|
48
|
-
// eslint-disable-next-line no-param-reassign
|
|
49
|
-
element.style[key] = value !== undefined ? `${value}px` : '';
|
|
50
|
-
}
|
|
51
|
-
function stopPropagation(event) {
|
|
52
|
-
event.stopPropagation();
|
|
53
|
-
}
|
|
54
|
-
function createExportForTestOnly(objToExport) {
|
|
55
|
-
return false ? 0 : (0,lodash__WEBPACK_IMPORTED_MODULE_1__.reduce)(objToExport, (accumulator, value, key) => {
|
|
56
|
-
accumulator[key] = undefined;
|
|
57
|
-
return accumulator;
|
|
58
|
-
}, {});
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/***/ }),
|
|
62
|
-
|
|
63
|
-
/***/ "./src/workers/folder.ts":
|
|
64
|
-
/*!*******************************!*\
|
|
65
|
-
!*** ./src/workers/folder.ts ***!
|
|
66
|
-
\*******************************/
|
|
67
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
68
|
-
|
|
69
|
-
__webpack_require__.r(__webpack_exports__);
|
|
70
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
71
|
-
/* harmony export */ handleFolderCreated: () => (/* binding */ handleFolderCreated),
|
|
72
|
-
/* harmony export */ handleFolderDeleted: () => (/* binding */ handleFolderDeleted),
|
|
73
|
-
/* harmony export */ handleFolderModified: () => (/* binding */ handleFolderModified),
|
|
74
|
-
/* harmony export */ handleFolderNotify: () => (/* binding */ handleFolderNotify),
|
|
75
|
-
/* harmony export */ handleLinkCreated: () => (/* binding */ handleLinkCreated)
|
|
76
|
-
/* harmony export */ });
|
|
77
|
-
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ "./node_modules/core-js/modules/es.array.push.js");
|
|
78
|
-
/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
79
|
-
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/utils */ "./src/utils/utils.ts");
|
|
80
|
-
|
|
81
|
-
/*
|
|
82
|
-
* SPDX-FileCopyrightText: 2022 Zextras <https://www.zextras.com>
|
|
83
|
-
*
|
|
84
|
-
* SPDX-License-Identifier: AGPL-3.0-only
|
|
85
|
-
*/
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
const IM_LOGS = '14';
|
|
89
|
-
const ROOT_NAME = 'USER_ROOT';
|
|
90
|
-
const DEFAULT_ROOT = 'USER';
|
|
91
|
-
const folders = {};
|
|
92
|
-
const roots = {};
|
|
93
|
-
const searches = {};
|
|
94
|
-
const omit = ({
|
|
95
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
96
|
-
link: _1,
|
|
97
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
98
|
-
folder: _2,
|
|
99
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
100
|
-
search: _3,
|
|
101
|
-
...obj
|
|
102
|
-
}) => obj;
|
|
103
|
-
const hasId = (f, id) => f.id.split(':').includes(id);
|
|
104
|
-
const normalize = (f, p) => ({
|
|
105
|
-
id: f.id,
|
|
106
|
-
uuid: f.uuid,
|
|
107
|
-
name: f.name,
|
|
108
|
-
absFolderPath: f.absFolderPath,
|
|
109
|
-
l: f.l,
|
|
110
|
-
luuid: f.luuid,
|
|
111
|
-
checked: (0,_utils_utils__WEBPACK_IMPORTED_MODULE_1__.testFolderIsChecked)({
|
|
112
|
-
string: f.f
|
|
113
|
-
}),
|
|
114
|
-
f: f.f,
|
|
115
|
-
color: f.color || p?.color,
|
|
116
|
-
rgb: f.rgb,
|
|
117
|
-
u: f.u,
|
|
118
|
-
i4u: f.i4u,
|
|
119
|
-
view: f.view,
|
|
120
|
-
rev: f.rev,
|
|
121
|
-
ms: f.ms,
|
|
122
|
-
md: f.md,
|
|
123
|
-
n: f.n,
|
|
124
|
-
i4n: f.i4n,
|
|
125
|
-
s: f.s,
|
|
126
|
-
i4ms: f.i4ms,
|
|
127
|
-
i4next: f.i4next,
|
|
128
|
-
url: f.url,
|
|
129
|
-
activesyncdisabled: !!f.activesyncdisabled,
|
|
130
|
-
webOfflineSyncDays: f.webOfflineSyncDays,
|
|
131
|
-
perm: f.perm,
|
|
132
|
-
recursive: !!f.recursive,
|
|
133
|
-
rest: f.rest,
|
|
134
|
-
deletable: !!f.deletable,
|
|
135
|
-
meta: f.meta,
|
|
136
|
-
acl: f.acl,
|
|
137
|
-
retentionPolicy: f.retentionPolicy
|
|
138
|
-
});
|
|
139
|
-
const normalizeSearch = s => ({
|
|
140
|
-
...normalize(s),
|
|
141
|
-
query: s.query,
|
|
142
|
-
sortBy: s.sortBy,
|
|
143
|
-
types: s.types
|
|
144
|
-
});
|
|
145
|
-
const normalizeLink = (l, p) => ({
|
|
146
|
-
...normalize(l, p),
|
|
147
|
-
owner: l.owner,
|
|
148
|
-
zid: l.zid,
|
|
149
|
-
rid: l.rid,
|
|
150
|
-
ruuid: l.ruuid,
|
|
151
|
-
oname: l.oname,
|
|
152
|
-
reminder: !!l.reminder,
|
|
153
|
-
broken: !!l.broken
|
|
154
|
-
});
|
|
155
|
-
const processSearch = (soapSearch, parent) => {
|
|
156
|
-
const search = {
|
|
157
|
-
...normalizeSearch(soapSearch),
|
|
158
|
-
parent,
|
|
159
|
-
isLink: parent?.isLink
|
|
160
|
-
};
|
|
161
|
-
searches[search.id] = search;
|
|
162
|
-
};
|
|
163
|
-
const processLink = (soapLink, depth, parent) => {
|
|
164
|
-
const link = {
|
|
165
|
-
...normalizeLink(soapLink, parent),
|
|
166
|
-
isLink: true,
|
|
167
|
-
children: [],
|
|
168
|
-
parent,
|
|
169
|
-
depth
|
|
170
|
-
};
|
|
171
|
-
// eslint-disable-next-line no-param-reassign
|
|
172
|
-
folders[soapLink.id] = link;
|
|
173
|
-
if (link.oname === ROOT_NAME) {
|
|
174
|
-
roots[link.owner ?? 'unknown'] = link;
|
|
175
|
-
}
|
|
176
|
-
soapLink?.folder?.forEach(f => {
|
|
177
|
-
if (!hasId(f, IM_LOGS)) {
|
|
178
|
-
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
179
|
-
const child = processFolder(f, depth + 1, link);
|
|
180
|
-
link.children.push(child);
|
|
181
|
-
}
|
|
182
|
-
});
|
|
183
|
-
soapLink?.link?.forEach(l => {
|
|
184
|
-
if (!hasId(l, IM_LOGS)) {
|
|
185
|
-
const child = processLink(l, depth + 1, link);
|
|
186
|
-
link.children.push(child);
|
|
187
|
-
}
|
|
188
|
-
});
|
|
189
|
-
soapLink?.search?.forEach(s => {
|
|
190
|
-
processSearch(s, link);
|
|
191
|
-
});
|
|
192
|
-
return link;
|
|
193
|
-
};
|
|
194
|
-
const processFolder = (soapFolder, depth, parent) => {
|
|
195
|
-
const folder = {
|
|
196
|
-
...normalize(soapFolder, parent),
|
|
197
|
-
isLink: false,
|
|
198
|
-
children: [],
|
|
199
|
-
parent,
|
|
200
|
-
depth
|
|
201
|
-
};
|
|
202
|
-
folders[soapFolder.id] = folder;
|
|
203
|
-
if (folder.name === ROOT_NAME) {
|
|
204
|
-
roots[DEFAULT_ROOT] = folder;
|
|
205
|
-
}
|
|
206
|
-
soapFolder?.folder?.forEach(f => {
|
|
207
|
-
if (!hasId(f, IM_LOGS)) {
|
|
208
|
-
const child = processFolder(f, depth + 1, folder);
|
|
209
|
-
folder.children.push(child);
|
|
210
|
-
}
|
|
211
|
-
});
|
|
212
|
-
soapFolder?.link?.forEach(l => {
|
|
213
|
-
if (!hasId(l, IM_LOGS)) {
|
|
214
|
-
const child = processLink(l, depth + 1, folder);
|
|
215
|
-
folder.children.push(child);
|
|
216
|
-
}
|
|
217
|
-
});
|
|
218
|
-
soapFolder?.search?.forEach(s => {
|
|
219
|
-
processSearch(s, folder);
|
|
220
|
-
});
|
|
221
|
-
return folder;
|
|
222
|
-
};
|
|
223
|
-
const handleFolderRefresh = soapFolders => processFolder(soapFolders[0], 0);
|
|
224
|
-
const handleFolderCreated = created => created.forEach(val => {
|
|
225
|
-
if (val.id && val.l) {
|
|
226
|
-
const parent = folders[val.l];
|
|
227
|
-
const folder = {
|
|
228
|
-
...normalize(val, parent),
|
|
229
|
-
isLink: false,
|
|
230
|
-
children: [],
|
|
231
|
-
parent,
|
|
232
|
-
depth: parent?.depth ? parent.depth + 1 : 0
|
|
233
|
-
};
|
|
234
|
-
folders[val.id] = folder;
|
|
235
|
-
parent.children.push(folder);
|
|
236
|
-
}
|
|
237
|
-
});
|
|
238
|
-
const handleLinkCreated = created => created.forEach(val => {
|
|
239
|
-
if (val.id && val.l) {
|
|
240
|
-
const parent = folders[val.l];
|
|
241
|
-
const folder = {
|
|
242
|
-
...normalizeLink(val, parent),
|
|
243
|
-
isLink: true,
|
|
244
|
-
children: [],
|
|
245
|
-
parent,
|
|
246
|
-
depth: parent?.depth ? parent.depth + 1 : 0
|
|
247
|
-
};
|
|
248
|
-
folders[val.id] = folder;
|
|
249
|
-
parent.children.push(folder);
|
|
250
|
-
}
|
|
251
|
-
});
|
|
252
|
-
const handleFolderModified = modified => modified.forEach(val => {
|
|
253
|
-
if (val.id) {
|
|
254
|
-
const folder = folders[val.id];
|
|
255
|
-
if (folder) {
|
|
256
|
-
Object.assign(folder, omit(val));
|
|
257
|
-
if (typeof val.f !== 'undefined') {
|
|
258
|
-
folder.checked = (0,_utils_utils__WEBPACK_IMPORTED_MODULE_1__.testFolderIsChecked)({
|
|
259
|
-
string: val.f
|
|
260
|
-
});
|
|
261
|
-
}
|
|
262
|
-
if (val.l) {
|
|
263
|
-
const oldParent = folders[val.id].parent;
|
|
264
|
-
const newParent = folders[val.l];
|
|
265
|
-
if (oldParent) {
|
|
266
|
-
oldParent.children = oldParent.children.filter(f => f.id !== val.id);
|
|
267
|
-
newParent.children.push(folder);
|
|
268
|
-
}
|
|
269
|
-
folder.parent = newParent;
|
|
270
|
-
}
|
|
271
|
-
folders[val.id] = folder;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
});
|
|
275
|
-
const handleFolderDeleted = deleted => deleted.forEach(val => {
|
|
276
|
-
const folder = folders[val];
|
|
277
|
-
if (folder) {
|
|
278
|
-
if (folder.parent) {
|
|
279
|
-
folder.parent.children = folder.parent.children.filter(f => f.id !== val);
|
|
280
|
-
}
|
|
281
|
-
delete folders[val];
|
|
282
|
-
delete roots[val];
|
|
283
|
-
delete searches[val];
|
|
284
|
-
}
|
|
285
|
-
});
|
|
286
|
-
const handleFolderNotify = notify => {
|
|
287
|
-
handleFolderCreated(notify.created?.folder ?? []);
|
|
288
|
-
handleLinkCreated(notify.created?.link ?? []);
|
|
289
|
-
handleFolderModified(notify.modified?.folder ?? notify.modified?.link ?? []);
|
|
290
|
-
handleFolderDeleted(notify.deleted ?? []);
|
|
291
|
-
};
|
|
292
|
-
onmessage = ({
|
|
293
|
-
data
|
|
294
|
-
}) => {
|
|
295
|
-
if (data.op === 'refresh' && data.folder) {
|
|
296
|
-
handleFolderRefresh(data.folder);
|
|
297
|
-
}
|
|
298
|
-
if (data.op === 'notify') {
|
|
299
|
-
handleFolderNotify(data.notify);
|
|
300
|
-
}
|
|
301
|
-
postMessage({
|
|
302
|
-
folders,
|
|
303
|
-
roots,
|
|
304
|
-
searches
|
|
305
|
-
});
|
|
306
|
-
};
|
|
307
|
-
|
|
308
|
-
/***/ })
|
|
309
|
-
|
|
310
|
-
/******/ });
|
|
311
|
-
/************************************************************************/
|
|
312
|
-
/******/ // The module cache
|
|
313
|
-
/******/ var __webpack_module_cache__ = {};
|
|
314
|
-
/******/
|
|
315
|
-
/******/ // The require function
|
|
316
|
-
/******/ function __webpack_require__(moduleId) {
|
|
317
|
-
/******/ // Check if module is in cache
|
|
318
|
-
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
319
|
-
/******/ if (cachedModule !== undefined) {
|
|
320
|
-
/******/ return cachedModule.exports;
|
|
321
|
-
/******/ }
|
|
322
|
-
/******/ // Create a new module (and put it into the cache)
|
|
323
|
-
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
324
|
-
/******/ id: moduleId,
|
|
325
|
-
/******/ loaded: false,
|
|
326
|
-
/******/ exports: {}
|
|
327
|
-
/******/ };
|
|
328
|
-
/******/
|
|
329
|
-
/******/ // Execute the module function
|
|
330
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
331
|
-
/******/
|
|
332
|
-
/******/ // Flag the module as loaded
|
|
333
|
-
/******/ module.loaded = true;
|
|
334
|
-
/******/
|
|
335
|
-
/******/ // Return the exports of the module
|
|
336
|
-
/******/ return module.exports;
|
|
337
|
-
/******/ }
|
|
338
|
-
/******/
|
|
339
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
340
|
-
/******/ __webpack_require__.m = __webpack_modules__;
|
|
341
|
-
/******/
|
|
342
|
-
/******/ // the startup function
|
|
343
|
-
/******/ __webpack_require__.x = () => {
|
|
344
|
-
/******/ // Load entry module and return exports
|
|
345
|
-
/******/ // This entry module depends on other loaded chunks and execution need to be delayed
|
|
346
|
-
/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js"], () => (__webpack_require__("./src/workers/folder.ts")))
|
|
347
|
-
/******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
|
|
348
|
-
/******/ return __webpack_exports__;
|
|
349
|
-
/******/ };
|
|
350
|
-
/******/
|
|
351
|
-
/************************************************************************/
|
|
352
|
-
/******/ /* webpack/runtime/chunk loaded */
|
|
353
|
-
/******/ (() => {
|
|
354
|
-
/******/ var deferred = [];
|
|
355
|
-
/******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
|
|
356
|
-
/******/ if(chunkIds) {
|
|
357
|
-
/******/ priority = priority || 0;
|
|
358
|
-
/******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
|
|
359
|
-
/******/ deferred[i] = [chunkIds, fn, priority];
|
|
360
|
-
/******/ return;
|
|
361
|
-
/******/ }
|
|
362
|
-
/******/ var notFulfilled = Infinity;
|
|
363
|
-
/******/ for (var i = 0; i < deferred.length; i++) {
|
|
364
|
-
/******/ var [chunkIds, fn, priority] = deferred[i];
|
|
365
|
-
/******/ var fulfilled = true;
|
|
366
|
-
/******/ for (var j = 0; j < chunkIds.length; j++) {
|
|
367
|
-
/******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {
|
|
368
|
-
/******/ chunkIds.splice(j--, 1);
|
|
369
|
-
/******/ } else {
|
|
370
|
-
/******/ fulfilled = false;
|
|
371
|
-
/******/ if(priority < notFulfilled) notFulfilled = priority;
|
|
372
|
-
/******/ }
|
|
373
|
-
/******/ }
|
|
374
|
-
/******/ if(fulfilled) {
|
|
375
|
-
/******/ deferred.splice(i--, 1)
|
|
376
|
-
/******/ var r = fn();
|
|
377
|
-
/******/ if (r !== undefined) result = r;
|
|
378
|
-
/******/ }
|
|
379
|
-
/******/ }
|
|
380
|
-
/******/ return result;
|
|
381
|
-
/******/ };
|
|
382
|
-
/******/ })();
|
|
383
|
-
/******/
|
|
384
|
-
/******/ /* webpack/runtime/compat get default export */
|
|
385
|
-
/******/ (() => {
|
|
386
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
387
|
-
/******/ __webpack_require__.n = (module) => {
|
|
388
|
-
/******/ var getter = module && module.__esModule ?
|
|
389
|
-
/******/ () => (module['default']) :
|
|
390
|
-
/******/ () => (module);
|
|
391
|
-
/******/ __webpack_require__.d(getter, { a: getter });
|
|
392
|
-
/******/ return getter;
|
|
393
|
-
/******/ };
|
|
394
|
-
/******/ })();
|
|
395
|
-
/******/
|
|
396
|
-
/******/ /* webpack/runtime/define property getters */
|
|
397
|
-
/******/ (() => {
|
|
398
|
-
/******/ // define getter functions for harmony exports
|
|
399
|
-
/******/ __webpack_require__.d = (exports, definition) => {
|
|
400
|
-
/******/ for(var key in definition) {
|
|
401
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
402
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
403
|
-
/******/ }
|
|
404
|
-
/******/ }
|
|
405
|
-
/******/ };
|
|
406
|
-
/******/ })();
|
|
407
|
-
/******/
|
|
408
|
-
/******/ /* webpack/runtime/ensure chunk */
|
|
409
|
-
/******/ (() => {
|
|
410
|
-
/******/ __webpack_require__.f = {};
|
|
411
|
-
/******/ // This file contains only the entry chunk.
|
|
412
|
-
/******/ // The chunk loading function for additional chunks
|
|
413
|
-
/******/ __webpack_require__.e = (chunkId) => {
|
|
414
|
-
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
415
|
-
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
416
|
-
/******/ return promises;
|
|
417
|
-
/******/ }, []));
|
|
418
|
-
/******/ };
|
|
419
|
-
/******/ })();
|
|
420
|
-
/******/
|
|
421
|
-
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
422
|
-
/******/ (() => {
|
|
423
|
-
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
|
424
|
-
/******/ __webpack_require__.u = (chunkId) => {
|
|
425
|
-
/******/ // return url for filenames based on template
|
|
426
|
-
/******/ return "" + chunkId + "." + "8ced7511" + ".chunk.js";
|
|
427
|
-
/******/ };
|
|
428
|
-
/******/ })();
|
|
429
|
-
/******/
|
|
430
|
-
/******/ /* webpack/runtime/get mini-css chunk filename */
|
|
431
|
-
/******/ (() => {
|
|
432
|
-
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
|
433
|
-
/******/ __webpack_require__.miniCssF = (chunkId) => {
|
|
434
|
-
/******/ // return url for filenames based on template
|
|
435
|
-
/******/ return undefined;
|
|
436
|
-
/******/ };
|
|
437
|
-
/******/ })();
|
|
438
|
-
/******/
|
|
439
|
-
/******/ /* webpack/runtime/global */
|
|
440
|
-
/******/ (() => {
|
|
441
|
-
/******/ __webpack_require__.g = (function() {
|
|
442
|
-
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
443
|
-
/******/ try {
|
|
444
|
-
/******/ return this || new Function('return this')();
|
|
445
|
-
/******/ } catch (e) {
|
|
446
|
-
/******/ if (typeof window === 'object') return window;
|
|
447
|
-
/******/ }
|
|
448
|
-
/******/ })();
|
|
449
|
-
/******/ })();
|
|
450
|
-
/******/
|
|
451
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
452
|
-
/******/ (() => {
|
|
453
|
-
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
454
|
-
/******/ })();
|
|
455
|
-
/******/
|
|
456
|
-
/******/ /* webpack/runtime/make namespace object */
|
|
457
|
-
/******/ (() => {
|
|
458
|
-
/******/ // define __esModule on exports
|
|
459
|
-
/******/ __webpack_require__.r = (exports) => {
|
|
460
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
461
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
462
|
-
/******/ }
|
|
463
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
464
|
-
/******/ };
|
|
465
|
-
/******/ })();
|
|
466
|
-
/******/
|
|
467
|
-
/******/ /* webpack/runtime/node module decorator */
|
|
468
|
-
/******/ (() => {
|
|
469
|
-
/******/ __webpack_require__.nmd = (module) => {
|
|
470
|
-
/******/ module.paths = [];
|
|
471
|
-
/******/ if (!module.children) module.children = [];
|
|
472
|
-
/******/ return module;
|
|
473
|
-
/******/ };
|
|
474
|
-
/******/ })();
|
|
475
|
-
/******/
|
|
476
|
-
/******/ /* webpack/runtime/publicPath */
|
|
477
|
-
/******/ (() => {
|
|
478
|
-
/******/ __webpack_require__.p = "/static/iris/carbonio-shell-ui/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8/";
|
|
479
|
-
/******/ })();
|
|
480
|
-
/******/
|
|
481
|
-
/******/ /* webpack/runtime/importScripts chunk loading */
|
|
482
|
-
/******/ (() => {
|
|
483
|
-
/******/ // no baseURI
|
|
484
|
-
/******/
|
|
485
|
-
/******/ // object to store loaded chunks
|
|
486
|
-
/******/ // "1" means "already loaded"
|
|
487
|
-
/******/ var installedChunks = {
|
|
488
|
-
/******/ "src_workers_folder_ts": 1
|
|
489
|
-
/******/ };
|
|
490
|
-
/******/
|
|
491
|
-
/******/ // importScripts chunk loading
|
|
492
|
-
/******/ var installChunk = (data) => {
|
|
493
|
-
/******/ var [chunkIds, moreModules, runtime] = data;
|
|
494
|
-
/******/ for(var moduleId in moreModules) {
|
|
495
|
-
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
496
|
-
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
497
|
-
/******/ }
|
|
498
|
-
/******/ }
|
|
499
|
-
/******/ if(runtime) runtime(__webpack_require__);
|
|
500
|
-
/******/ while(chunkIds.length)
|
|
501
|
-
/******/ installedChunks[chunkIds.pop()] = 1;
|
|
502
|
-
/******/ parentChunkLoadingFunction(data);
|
|
503
|
-
/******/ };
|
|
504
|
-
/******/ __webpack_require__.f.i = (chunkId, promises) => {
|
|
505
|
-
/******/ // "1" is the signal for "already loaded"
|
|
506
|
-
/******/ if(!installedChunks[chunkId]) {
|
|
507
|
-
/******/ if(true) { // all chunks have JS
|
|
508
|
-
/******/ importScripts(__webpack_require__.p + __webpack_require__.u(chunkId));
|
|
509
|
-
/******/ }
|
|
510
|
-
/******/ }
|
|
511
|
-
/******/ };
|
|
512
|
-
/******/
|
|
513
|
-
/******/ var chunkLoadingGlobal = self["webpackChunk_zextras_carbonio_shell_ui"] = self["webpackChunk_zextras_carbonio_shell_ui"] || [];
|
|
514
|
-
/******/ var parentChunkLoadingFunction = chunkLoadingGlobal.push.bind(chunkLoadingGlobal);
|
|
515
|
-
/******/ chunkLoadingGlobal.push = installChunk;
|
|
516
|
-
/******/
|
|
517
|
-
/******/ // no HMR
|
|
518
|
-
/******/
|
|
519
|
-
/******/ // no HMR manifest
|
|
520
|
-
/******/ })();
|
|
521
|
-
/******/
|
|
522
|
-
/******/ /* webpack/runtime/startup chunk dependencies */
|
|
523
|
-
/******/ (() => {
|
|
524
|
-
/******/ var next = __webpack_require__.x;
|
|
525
|
-
/******/ __webpack_require__.x = () => {
|
|
526
|
-
/******/ return __webpack_require__.e("vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js").then(next);
|
|
527
|
-
/******/ };
|
|
528
|
-
/******/ })();
|
|
529
|
-
/******/
|
|
530
|
-
/************************************************************************/
|
|
531
|
-
/******/
|
|
532
|
-
/******/ // run startup
|
|
533
|
-
/******/ var __webpack_exports__ = __webpack_require__.x();
|
|
534
|
-
/******/
|
|
535
|
-
/******/ })()
|
|
536
|
-
;
|
|
537
|
-
//# sourceMappingURL=src_workers_folder_ts.2df69eae.chunk.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"src_workers_folder_ts.2df69eae.chunk.js","mappings":"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AAK,SAAS,IAAID,IAAI,CAAClF,MAAM,EAAE;IACzCgE,mBAAmB,CAACkB,IAAI,CAAClF,MAAM,CAAC;EACjC;EACA,IAAIkF,IAAI,CAACC,EAAE,KAAK,QAAQ,EAAE;IACzBJ,kBAAkB,CAACG,IAAI,CAACF,MAAM,CAAC;EAChC;EACAI,WAAW,CAAC;IAAE1F,OAAO;IAAEC,KAAK;IAAEC;EAAS,CAAC,CAAC;AAC1C,CAAC;;;;;;UCxPD;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;;;;WCrCA;WACA;WACA;WACA;WACA,+BAA+B,wCAAwC;WACvE;WACA;WACA;WACA;WACA,iBAAiB,qBAAqB;WACtC;WACA;WACA,kBAAkB,qBAAqB;WACvC;WACA;WACA,KAAK;WACL;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;;;;WC3BA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;;;;;WCRA;WACA;WACA;WACA;WACA;;;;;WCJA;WACA;WACA;WACA;WACA;;;;;WCJA;WACA;WACA;WACA;WACA,GAAG;WACH;WACA;WACA,CAAC;;;;;WCPD;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;WACA;WACA;WACA;WACA;;;;;WCJA;;;;;WCAA;;WAEA;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,aAAa;WACb;WACA;WACA;WACA;;WAEA;WACA;WACA;;WAEA;;WAEA;;;;;WCpCA;WACA;WACA;WACA;;;;;UEHA;UACA","sources":["webpack://@zextras/carbonio-shell-ui/./src/utils/utils.ts","webpack://@zextras/carbonio-shell-ui/./src/workers/folder.ts","webpack://@zextras/carbonio-shell-ui/webpack/bootstrap","webpack://@zextras/carbonio-shell-ui/webpack/runtime/chunk loaded","webpack://@zextras/carbonio-shell-ui/webpack/runtime/compat get default export","webpack://@zextras/carbonio-shell-ui/webpack/runtime/define property getters","webpack://@zextras/carbonio-shell-ui/webpack/runtime/ensure chunk","webpack://@zextras/carbonio-shell-ui/webpack/runtime/get javascript chunk filename","webpack://@zextras/carbonio-shell-ui/webpack/runtime/get mini-css chunk filename","webpack://@zextras/carbonio-shell-ui/webpack/runtime/global","webpack://@zextras/carbonio-shell-ui/webpack/runtime/hasOwnProperty shorthand","webpack://@zextras/carbonio-shell-ui/webpack/runtime/make namespace object","webpack://@zextras/carbonio-shell-ui/webpack/runtime/node module decorator","webpack://@zextras/carbonio-shell-ui/webpack/runtime/publicPath","webpack://@zextras/carbonio-shell-ui/webpack/runtime/importScripts chunk loading","webpack://@zextras/carbonio-shell-ui/webpack/runtime/startup chunk dependencies","webpack://@zextras/carbonio-shell-ui/webpack/before-startup","webpack://@zextras/carbonio-shell-ui/webpack/startup","webpack://@zextras/carbonio-shell-ui/webpack/after-startup"],"sourcesContent":["/*\n * SPDX-FileCopyrightText: 2023 Zextras <https://www.zextras.com>\n *\n * SPDX-License-Identifier: AGPL-3.0-only\n */\nimport React, { CSSProperties } from 'react';\n\nimport { reduce } from 'lodash';\n\nexport type ElementPosition = {\n\ttop: number;\n\tleft: number;\n};\n\nexport type ElementSize = {\n\twidth: number;\n\theight: number;\n};\n\nexport type SizeAndPosition = ElementPosition & ElementSize;\n\nexport const testFolderIsChecked = ({ string }: { string: string | undefined }): boolean =>\n\t/#/.test(string || '');\n\nexport function setGlobalCursor(cursor: CSSProperties['cursor']): void {\n\t// remove previously set cursor\n\tconst cursors: string[] = [];\n\tdocument.body.classList.forEach((item) => {\n\t\tif (item.startsWith('global-cursor-')) {\n\t\t\tcursors.push(item);\n\t\t}\n\t});\n\tdocument.body.classList.remove(...cursors);\n\tif (cursor) {\n\t\tdocument.body.classList.add(`global-cursor-${cursor}`);\n\t}\n}\n\nexport function setElementSizeAndPosition(\n\telement: HTMLElement,\n\tkey: keyof SizeAndPosition,\n\tvalue: number | undefined\n): void {\n\t// eslint-disable-next-line no-param-reassign\n\telement.style[key] = value !== undefined ? `${value}px` : '';\n}\n\nexport function stopPropagation(event: Event | React.SyntheticEvent): void {\n\tevent.stopPropagation();\n}\n\nexport function createExportForTestOnly<TObj extends Record<string, unknown>>(\n\tobjToExport: TObj\n): { [K in keyof TObj]: TObj[K] | undefined } {\n\treturn process.env.NODE_ENV === 'test'\n\t\t? objToExport\n\t\t: reduce(\n\t\t\t\tobjToExport,\n\t\t\t\t(accumulator, value, key) => {\n\t\t\t\t\taccumulator[key as keyof TObj] = undefined;\n\t\t\t\t\treturn accumulator;\n\t\t\t\t},\n\t\t\t\t{} as Record<keyof TObj, undefined>\n\t\t\t);\n}\n","/*\n * SPDX-FileCopyrightText: 2022 Zextras <https://www.zextras.com>\n *\n * SPDX-License-Identifier: AGPL-3.0-only\n */\n\nimport {\n\tBaseFolder,\n\tUserFolder,\n\tFolderMessage,\n\tFolders,\n\tLinkFolder,\n\tLinkFolderFields,\n\tRoots,\n\tSearches,\n\tSearchFolderFields,\n\tSoapFolder,\n\tSoapLink,\n\tSoapNotify,\n\tSoapSearchFolder,\n\tFolder\n} from '../../types';\nimport { testFolderIsChecked } from '../utils/utils';\n\nconst IM_LOGS = '14';\nconst ROOT_NAME = 'USER_ROOT';\nconst DEFAULT_ROOT = 'USER';\n\nconst folders: Folders = {};\nconst roots: Roots = {};\nconst searches: Searches = {};\n\nconst omit = ({\n\t// eslint-disable-next-line @typescript-eslint/no-unused-vars\n\tlink: _1,\n\t// eslint-disable-next-line @typescript-eslint/no-unused-vars\n\tfolder: _2,\n\t// eslint-disable-next-line @typescript-eslint/no-unused-vars\n\tsearch: _3,\n\t...obj\n}: Partial<SoapFolder>): Partial<SoapFolder> => obj;\n\nconst hasId = (f: SoapFolder, id: string): boolean => f.id.split(':').includes(id);\nconst normalize = (f: SoapFolder, p?: Folder): BaseFolder => ({\n\tid: f.id,\n\tuuid: f.uuid,\n\tname: f.name,\n\tabsFolderPath: f.absFolderPath,\n\tl: f.l,\n\tluuid: f.luuid,\n\tchecked: testFolderIsChecked({ string: f.f }),\n\tf: f.f,\n\tcolor: f.color || p?.color,\n\trgb: f.rgb,\n\tu: f.u,\n\ti4u: f.i4u,\n\tview: f.view,\n\trev: f.rev,\n\tms: f.ms,\n\tmd: f.md,\n\tn: f.n,\n\ti4n: f.i4n,\n\ts: f.s,\n\ti4ms: f.i4ms,\n\ti4next: f.i4next,\n\turl: f.url,\n\tactivesyncdisabled: !!f.activesyncdisabled,\n\twebOfflineSyncDays: f.webOfflineSyncDays,\n\tperm: f.perm,\n\trecursive: !!f.recursive,\n\trest: f.rest,\n\tdeletable: !!f.deletable,\n\tmeta: f.meta,\n\tacl: f.acl,\n\tretentionPolicy: f.retentionPolicy\n});\n\nconst normalizeSearch = (s: SoapSearchFolder): BaseFolder & SearchFolderFields => ({\n\t...normalize(s),\n\tquery: s.query,\n\tsortBy: s.sortBy,\n\ttypes: s.types\n});\n\nconst normalizeLink = (l: SoapLink, p?: Folder): BaseFolder & LinkFolderFields => ({\n\t...normalize(l, p),\n\towner: l.owner,\n\tzid: l.zid,\n\trid: l.rid,\n\truuid: l.ruuid,\n\toname: l.oname,\n\treminder: !!l.reminder,\n\tbroken: !!l.broken\n});\n\nconst processSearch = (soapSearch: SoapSearchFolder, parent: Folder): void => {\n\tconst search = {\n\t\t...normalizeSearch(soapSearch),\n\t\tparent,\n\t\tisLink: parent?.isLink\n\t};\n\tsearches[search.id] = search;\n};\n\nconst processLink = (soapLink: SoapLink, depth: number, parent?: Folder): LinkFolder => {\n\tconst link = {\n\t\t...normalizeLink(soapLink, parent),\n\t\tisLink: true,\n\t\tchildren: [],\n\t\tparent,\n\t\tdepth\n\t} as LinkFolder;\n\t// eslint-disable-next-line no-param-reassign\n\tfolders[soapLink.id] = link;\n\tif (link.oname === ROOT_NAME) {\n\t\troots[link.owner ?? 'unknown'] = link;\n\t}\n\tsoapLink?.folder?.forEach((f) => {\n\t\tif (!hasId(f, IM_LOGS)) {\n\t\t\t// eslint-disable-next-line @typescript-eslint/no-use-before-define\n\t\t\tconst child = processFolder(f, depth + 1, link);\n\t\t\tlink.children.push(child);\n\t\t}\n\t});\n\tsoapLink?.link?.forEach((l) => {\n\t\tif (!hasId(l, IM_LOGS)) {\n\t\t\tconst child = processLink(l, depth + 1, link);\n\t\t\tlink.children.push(child);\n\t\t}\n\t});\n\tsoapLink?.search?.forEach((s) => {\n\t\tprocessSearch(s, link);\n\t});\n\n\treturn link;\n};\n\nconst processFolder = (soapFolder: SoapFolder, depth: number, parent?: Folder): UserFolder => {\n\tconst folder: UserFolder = {\n\t\t...normalize(soapFolder, parent),\n\t\tisLink: false,\n\t\tchildren: [],\n\t\tparent,\n\t\tdepth\n\t};\n\tfolders[soapFolder.id] = folder;\n\tif (folder.name === ROOT_NAME) {\n\t\troots[DEFAULT_ROOT] = folder;\n\t}\n\tsoapFolder?.folder?.forEach((f) => {\n\t\tif (!hasId(f, IM_LOGS)) {\n\t\t\tconst child = processFolder(f, depth + 1, folder);\n\t\t\tfolder.children.push(child);\n\t\t}\n\t});\n\tsoapFolder?.link?.forEach((l) => {\n\t\tif (!hasId(l, IM_LOGS)) {\n\t\t\tconst child = processLink(l, depth + 1, folder);\n\t\t\tfolder.children.push(child);\n\t\t}\n\t});\n\tsoapFolder?.search?.forEach((s) => {\n\t\tprocessSearch(s, folder);\n\t});\n\treturn folder;\n};\n\nconst handleFolderRefresh = (soapFolders: Array<SoapFolder>): UserFolder =>\n\tprocessFolder(soapFolders[0], 0);\n\nexport const handleFolderCreated = (created: Array<SoapFolder>): void =>\n\tcreated.forEach((val: SoapFolder) => {\n\t\tif (val.id && val.l) {\n\t\t\tconst parent = folders[val.l];\n\t\t\tconst folder: UserFolder = {\n\t\t\t\t...normalize(val, parent),\n\t\t\t\tisLink: false,\n\t\t\t\tchildren: [],\n\t\t\t\tparent,\n\t\t\t\tdepth: parent?.depth ? parent.depth + 1 : 0\n\t\t\t};\n\t\t\tfolders[val.id] = folder;\n\t\t\tparent.children.push(folder);\n\t\t}\n\t});\nexport const handleLinkCreated = (created: Array<SoapLink>): void =>\n\tcreated.forEach((val: SoapLink) => {\n\t\tif (val.id && val.l) {\n\t\t\tconst parent = folders[val.l];\n\t\t\tconst folder: LinkFolder = {\n\t\t\t\t...normalizeLink(val, parent),\n\t\t\t\tisLink: true,\n\t\t\t\tchildren: [],\n\t\t\t\tparent,\n\t\t\t\tdepth: parent?.depth ? parent.depth + 1 : 0\n\t\t\t};\n\t\t\tfolders[val.id] = folder;\n\t\t\tparent.children.push(folder);\n\t\t}\n\t});\nexport const handleFolderModified = (modified: Array<Partial<UserFolder>>): void =>\n\tmodified.forEach((val: Partial<SoapFolder>): void => {\n\t\tif (val.id) {\n\t\t\tconst folder = folders[val.id];\n\t\t\tif (folder) {\n\t\t\t\tObject.assign(folder, omit(val));\n\t\t\t\tif (typeof val.f !== 'undefined') {\n\t\t\t\t\tfolder.checked = testFolderIsChecked({ string: val.f });\n\t\t\t\t}\n\t\t\t\tif (val.l) {\n\t\t\t\t\tconst oldParent = folders[val.id].parent;\n\t\t\t\t\tconst newParent = folders[val.l];\n\t\t\t\t\tif (oldParent) {\n\t\t\t\t\t\toldParent.children = oldParent.children.filter((f) => f.id !== val.id);\n\t\t\t\t\t\tnewParent.children.push(folder);\n\t\t\t\t\t}\n\t\t\t\t\tfolder.parent = newParent;\n\t\t\t\t}\n\t\t\t\tfolders[val.id] = folder;\n\t\t\t}\n\t\t}\n\t});\nexport const handleFolderDeleted = (deleted: string[]): void =>\n\tdeleted.forEach((val) => {\n\t\tconst folder = folders[val];\n\t\tif (folder) {\n\t\t\tif (folder.parent) {\n\t\t\t\tfolder.parent.children = folder.parent.children.filter((f) => f.id !== val);\n\t\t\t}\n\t\t\tdelete folders[val];\n\t\t\tdelete roots[val];\n\t\t\tdelete searches[val];\n\t\t}\n\t});\nexport const handleFolderNotify = (notify: SoapNotify): void => {\n\thandleFolderCreated(notify.created?.folder ?? []);\n\thandleLinkCreated(notify.created?.link ?? []);\n\thandleFolderModified(notify.modified?.folder ?? notify.modified?.link ?? []);\n\thandleFolderDeleted(notify.deleted ?? []);\n};\nonmessage = ({ data }: FolderMessage): void => {\n\tif (data.op === 'refresh' && data.folder) {\n\t\thandleFolderRefresh(data.folder);\n\t}\n\tif (data.op === 'notify') {\n\t\thandleFolderNotify(data.notify);\n\t}\n\tpostMessage({ folders, roots, searches });\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n// the startup function\n__webpack_require__.x = () => {\n\t// Load entry module and return exports\n\t// This entry module depends on other loaded chunks and execution need to be delayed\n\tvar __webpack_exports__ = __webpack_require__.O(undefined, [\"vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js\"], () => (__webpack_require__(\"./src/workers/folder.ts\")))\n\t__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n\treturn __webpack_exports__;\n};\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks and sibling chunks for the entrypoint\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".\" + \"8ced7511\" + \".chunk.js\";\n};","// This function allow to reference async chunks and sibling chunks for the entrypoint\n__webpack_require__.miniCssF = (chunkId) => {\n\t// return url for filenames based on template\n\treturn undefined;\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.p = \"/static/iris/carbonio-shell-ui/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8/\";","// no baseURI\n\n// object to store loaded chunks\n// \"1\" means \"already loaded\"\nvar installedChunks = {\n\t\"src_workers_folder_ts\": 1\n};\n\n// importScripts chunk loading\nvar installChunk = (data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\tfor(var moduleId in moreModules) {\n\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t}\n\t}\n\tif(runtime) runtime(__webpack_require__);\n\twhile(chunkIds.length)\n\t\tinstalledChunks[chunkIds.pop()] = 1;\n\tparentChunkLoadingFunction(data);\n};\n__webpack_require__.f.i = (chunkId, promises) => {\n\t// \"1\" is the signal for \"already loaded\"\n\tif(!installedChunks[chunkId]) {\n\t\tif(true) { // all chunks have JS\n\t\t\timportScripts(__webpack_require__.p + __webpack_require__.u(chunkId));\n\t\t}\n\t}\n};\n\nvar chunkLoadingGlobal = self[\"webpackChunk_zextras_carbonio_shell_ui\"] = self[\"webpackChunk_zextras_carbonio_shell_ui\"] || [];\nvar parentChunkLoadingFunction = chunkLoadingGlobal.push.bind(chunkLoadingGlobal);\nchunkLoadingGlobal.push = installChunk;\n\n// no HMR\n\n// no HMR manifest","var next = __webpack_require__.x;\n__webpack_require__.x = () => {\n\treturn __webpack_require__.e(\"vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js\").then(next);\n};","","// run startup\nvar __webpack_exports__ = __webpack_require__.x();\n",""],"names":["reduce","testFolderIsChecked","string","test","setGlobalCursor","cursor","cursors","document","body","classList","forEach","item","startsWith","push","remove","add","setElementSizeAndPosition","element","key","value","style","undefined","stopPropagation","event","createExportForTestOnly","objToExport","process","env","NODE_ENV","accumulator","IM_LOGS","ROOT_NAME","DEFAULT_ROOT","folders","roots","searches","omit","link","_1","folder","_2","search","_3","obj","hasId","f","id","split","includes","normalize","p","uuid","name","absFolderPath","l","luuid","checked","color","rgb","u","i4u","view","rev","ms","md","n","i4n","s","i4ms","i4next","url","activesyncdisabled","webOfflineSyncDays","perm","recursive","rest","deletable","meta","acl","retentionPolicy","normalizeSearch","query","sortBy","types","normalizeLink","owner","zid","rid","ruuid","oname","reminder","broken","processSearch","soapSearch","parent","isLink","processLink","soapLink","depth","children","child","processFolder","soapFolder","handleFolderRefresh","soapFolders","handleFolderCreated","created","val","handleLinkCreated","handleFolderModified","modified","Object","assign","oldParent","newParent","filter","handleFolderDeleted","deleted","handleFolderNotify","notify","onmessage","data","op","postMessage"],"sourceRoot":""}
|