| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- import { RefObject } from 'react';
- import {
- useSWRConfig, SWRResponse, Key, Fetcher,
- } from 'swr';
- import useSWRImmutable from 'swr/immutable';
- import SimpleBar from 'simplebar-react';
- import { Breakpoint, addBreakpointListener } from '@growi/ui';
- import { pagePathUtils } from '@growi/core';
- import { SidebarContentsType } from '~/interfaces/ui';
- import loggerFactory from '~/utils/logger';
- import { useStaticSWR } from './use-static-swr';
- import {
- useCurrentPageId, useCurrentPagePath, useIsEditable, useIsTrashPage, useIsUserPage,
- useIsNotCreatable, useIsSharedUser, useNotFoundTargetPathOrId, useIsForbidden, useIsIdenticalPath, useIsNotFoundPermalink,
- } from './context';
- import { IFocusable } from '~/client/interfaces/focusable';
- import { Nullable } from '~/interfaces/common';
- import { UpdateDescCountData } from '~/interfaces/websocket';
- const { isSharedPage } = pagePathUtils;
- const logger = loggerFactory('growi:stores:ui');
- const isServer = typeof window === 'undefined';
- /** **********************************************************
- * Unions
- *********************************************************** */
- export const EditorMode = {
- View: 'view',
- Editor: 'editor',
- HackMD: 'hackmd',
- } as const;
- export type EditorMode = typeof EditorMode[keyof typeof EditorMode];
- /** **********************************************************
- * Storing RefObjects
- *********************************************************** */
- export const useSidebarScrollerRef = (initialData?: RefObject<SimpleBar>): SWRResponse<RefObject<SimpleBar>, Error> => {
- return useStaticSWR<RefObject<SimpleBar>, Error>('sidebarScrollerRef', initialData);
- };
- /** **********************************************************
- * SWR Hooks
- * for switching UI
- *********************************************************** */
- export const useIsMobile = (): SWRResponse<boolean, Error> => {
- const key = isServer ? null : 'isMobile';
- let configuration;
- if (!isServer) {
- const userAgent = window.navigator.userAgent.toLowerCase();
- configuration = {
- fallbackData: /iphone|ipad|android/.test(userAgent),
- };
- }
- return useStaticSWR<boolean, Error>(key, undefined, configuration);
- };
- const updateBodyClassesByEditorMode = (newEditorMode: EditorMode) => {
- switch (newEditorMode) {
- case EditorMode.View:
- $('body').removeClass('on-edit');
- $('body').removeClass('builtin-editor');
- $('body').removeClass('hackmd');
- $('body').removeClass('pathname-sidebar');
- break;
- case EditorMode.Editor:
- $('body').addClass('on-edit');
- $('body').addClass('builtin-editor');
- $('body').removeClass('hackmd');
- // editing /Sidebar
- if (window.location.pathname === '/Sidebar') {
- $('body').addClass('pathname-sidebar');
- }
- break;
- case EditorMode.HackMD:
- $('body').addClass('on-edit');
- $('body').addClass('hackmd');
- $('body').removeClass('builtin-editor');
- $('body').removeClass('pathname-sidebar');
- break;
- }
- };
- const updateHashByEditorMode = (newEditorMode: EditorMode) => {
- const { pathname } = window.location;
- switch (newEditorMode) {
- case EditorMode.View:
- window.history.replaceState(null, '', pathname);
- break;
- case EditorMode.Editor:
- window.history.replaceState(null, '', `${pathname}#edit`);
- break;
- case EditorMode.HackMD:
- window.history.replaceState(null, '', `${pathname}#hackmd`);
- break;
- }
- };
- export const determineEditorModeByHash = (): EditorMode => {
- const { hash } = window.location;
- switch (hash) {
- case '#edit':
- return EditorMode.Editor;
- case '#hackmd':
- return EditorMode.HackMD;
- default:
- return EditorMode.View;
- }
- };
- let isEditorModeLoaded = false;
- export const useEditorMode = (): SWRResponse<EditorMode, Error> => {
- const { data: _isEditable } = useIsEditable();
- const editorModeByHash = determineEditorModeByHash();
- const isLoading = _isEditable === undefined;
- const isEditable = !isLoading && _isEditable;
- const initialData = isEditable ? editorModeByHash : EditorMode.View;
- const swrResponse = useSWRImmutable(
- isLoading ? null : ['editorMode', isEditable],
- null,
- { fallbackData: initialData },
- );
- // initial updating
- if (!isEditorModeLoaded && !isLoading && swrResponse.data != null) {
- if (isEditable) {
- updateBodyClassesByEditorMode(swrResponse.data);
- }
- isEditorModeLoaded = true;
- }
- return {
- ...swrResponse,
- // overwrite mutate
- mutate: (editorMode: EditorMode, shouldRevalidate?: boolean) => {
- if (!isEditable) {
- return Promise.resolve(EditorMode.View); // fixed if not editable
- }
- updateBodyClassesByEditorMode(editorMode);
- updateHashByEditorMode(editorMode);
- return swrResponse.mutate(editorMode, shouldRevalidate);
- },
- };
- };
- export const useIsDeviceSmallerThanMd = (): SWRResponse<boolean, Error> => {
- const key: Key = isServer ? null : 'isDeviceSmallerThanMd';
- const { cache, mutate } = useSWRConfig();
- if (!isServer) {
- const mdOrAvobeHandler = function(this: MediaQueryList): void {
- // sm -> md: matches will be true
- // md -> sm: matches will be false
- mutate(key, !this.matches);
- };
- const mql = addBreakpointListener(Breakpoint.MD, mdOrAvobeHandler);
- // initialize
- if (cache.get(key) == null) {
- document.addEventListener('DOMContentLoaded', () => {
- mutate(key, !mql.matches);
- });
- }
- }
- return useStaticSWR(key);
- };
- export const useIsDeviceSmallerThanLg = (): SWRResponse<boolean, Error> => {
- const key: Key = isServer ? null : 'isDeviceSmallerThanLg';
- const { cache, mutate } = useSWRConfig();
- if (!isServer) {
- const lgOrAvobeHandler = function(this: MediaQueryList): void {
- // md -> lg: matches will be true
- // lg -> md: matches will be false
- mutate(key, !this.matches);
- };
- const mql = addBreakpointListener(Breakpoint.LG, lgOrAvobeHandler);
- // initialize
- if (cache.get(key) == null) {
- document.addEventListener('DOMContentLoaded', () => {
- mutate(key, !mql.matches);
- });
- }
- }
- return useStaticSWR(key);
- };
- export const usePreferDrawerModeByUser = (initialData?: boolean): SWRResponse<boolean, Error> => {
- return useStaticSWR('preferDrawerModeByUser', initialData, { fallbackData: false });
- };
- export const usePreferDrawerModeOnEditByUser = (initialData?: boolean): SWRResponse<boolean, Error> => {
- return useStaticSWR('preferDrawerModeOnEditByUser', initialData, { fallbackData: true });
- };
- export const useSidebarCollapsed = (initialData?: boolean): SWRResponse<boolean, Error> => {
- return useStaticSWR('isSidebarCollapsed', initialData, { fallbackData: false });
- };
- export const useCurrentSidebarContents = (initialData?: SidebarContentsType): SWRResponse<SidebarContentsType, Error> => {
- return useStaticSWR('sidebarContents', initialData, { fallbackData: SidebarContentsType.TREE });
- };
- export const useCurrentProductNavWidth = (initialData?: number): SWRResponse<number, Error> => {
- return useStaticSWR('productNavWidth', initialData, { fallbackData: 320 });
- };
- export const useDrawerMode = (): SWRResponse<boolean, Error> => {
- const { data: editorMode } = useEditorMode();
- const { data: preferDrawerModeByUser } = usePreferDrawerModeByUser();
- const { data: preferDrawerModeOnEditByUser } = usePreferDrawerModeOnEditByUser();
- const { data: isDeviceSmallerThanMd } = useIsDeviceSmallerThanMd();
- const condition = editorMode != null || preferDrawerModeByUser != null || preferDrawerModeOnEditByUser != null || isDeviceSmallerThanMd != null;
- const calcDrawerMode: Fetcher<boolean> = (
- key: Key, editorMode: EditorMode, preferDrawerModeByUser: boolean, preferDrawerModeOnEditByUser: boolean, isDeviceSmallerThanMd: boolean,
- ): boolean => {
- // get preference on view or edit
- const preferDrawerMode = editorMode !== EditorMode.View ? preferDrawerModeOnEditByUser : preferDrawerModeByUser;
- return isDeviceSmallerThanMd || preferDrawerMode;
- };
- return useSWRImmutable(
- condition ? ['isDrawerMode', editorMode, preferDrawerModeByUser, preferDrawerModeOnEditByUser, isDeviceSmallerThanMd] : null,
- calcDrawerMode,
- {
- fallback: calcDrawerMode,
- },
- );
- };
- export const useDrawerOpened = (isOpened?: boolean): SWRResponse<boolean, Error> => {
- return useStaticSWR('isDrawerOpened', isOpened, { fallbackData: false });
- };
- export const useSidebarResizeDisabled = (isDisabled?: boolean): SWRResponse<boolean, Error> => {
- return useStaticSWR('isSidebarResizeDisabled', isDisabled, { fallbackData: false });
- };
- export const useSelectedGrant = (initialData?: Nullable<number>): SWRResponse<Nullable<number>, Error> => {
- return useStaticSWR<Nullable<number>, Error>('grant', initialData);
- };
- export const useSelectedGrantGroupId = (initialData?: Nullable<string>): SWRResponse<Nullable<string>, Error> => {
- return useStaticSWR<Nullable<string>, Error>('grantGroupId', initialData);
- };
- export const useSelectedGrantGroupName = (initialData?: Nullable<string>): SWRResponse<Nullable<string>, Error> => {
- return useStaticSWR<Nullable<string>, Error>('grantGroupName', initialData);
- };
- export const useGlobalSearchFormRef = (initialData?: RefObject<IFocusable>): SWRResponse<RefObject<IFocusable>, Error> => {
- return useStaticSWR('globalSearchTypeahead', initialData);
- };
- export const useIsAbleToShowPageManagement = (): SWRResponse<boolean, Error> => {
- const key = 'isAbleToShowPageManagement';
- const { data: currentPageId } = useCurrentPageId();
- const { data: isTrashPage } = useIsTrashPage();
- const { data: isSharedUser } = useIsSharedUser();
- const includesUndefined = [currentPageId, isTrashPage, isSharedUser].some(v => v === undefined);
- const isPageExist = currentPageId != null;
- return useSWRImmutable(
- includesUndefined ? null : key,
- () => isPageExist && !isTrashPage && !isSharedUser,
- );
- };
- export const useIsAbleToShowTagLabel = (): SWRResponse<boolean, Error> => {
- const key = 'isAbleToShowTagLabel';
- const { data: isUserPage } = useIsUserPage();
- const { data: currentPagePath } = useCurrentPagePath();
- const { data: isIdenticalPath } = useIsIdenticalPath();
- const { data: notFoundTargetPathOrId } = useNotFoundTargetPathOrId();
- const { data: editorMode } = useEditorMode();
- const includesUndefined = [isUserPage, currentPagePath, isIdenticalPath, notFoundTargetPathOrId, editorMode].some(v => v === undefined);
- const isViewMode = editorMode === EditorMode.View;
- const isNotFoundPage = notFoundTargetPathOrId != null;
- return useSWRImmutable(
- includesUndefined ? null : [key, editorMode],
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- () => !isUserPage && !isSharedPage(currentPagePath!) && !isIdenticalPath && !(isViewMode && isNotFoundPage),
- );
- };
- export const useIsAbleToShowPageEditorModeManager = (): SWRResponse<boolean, Error> => {
- const key = 'isAbleToShowPageEditorModeManager';
- const { data: isNotCreatable } = useIsNotCreatable();
- const { data: isForbidden } = useIsForbidden();
- const { data: isTrashPage } = useIsTrashPage();
- const { data: isSharedUser } = useIsSharedUser();
- const { data: isNotFoundPermalink } = useIsNotFoundPermalink();
- const includesUndefined = [isNotCreatable, isForbidden, isTrashPage, isSharedUser, isNotFoundPermalink].some(v => v === undefined);
- return useSWRImmutable(
- includesUndefined ? null : key,
- () => !isNotCreatable && !isForbidden && !isTrashPage && !isSharedUser && !isNotFoundPermalink,
- );
- };
- export const useIsAbleToShowPageAuthors = (): SWRResponse<boolean, Error> => {
- const key = 'isAbleToShowPageAuthors';
- const { data: currentPageId } = useCurrentPageId();
- const { data: isUserPage } = useIsUserPage();
- const includesUndefined = [currentPageId, isUserPage].some(v => v === undefined);
- const isPageExist = currentPageId != null;
- return useSWRImmutable(
- includesUndefined ? null : key,
- () => isPageExist && !isUserPage,
- );
- };
- type PageTreeDescCountMapUtils = {
- update(newData?: UpdateDescCountData): Promise<UpdateDescCountData | undefined>
- getDescCount(pageId?: string): number | null | undefined
- }
- export const usePageTreeDescCountMap = (initialData?: UpdateDescCountData): SWRResponse<UpdateDescCountData, Error> & PageTreeDescCountMapUtils => {
- const key = 'pageTreeDescCountMap';
- const swrResponse = useStaticSWR<UpdateDescCountData, Error>(key, initialData, { fallbackData: new Map() });
- return {
- ...swrResponse,
- getDescCount: (pageId?: string) => (pageId != null ? swrResponse.data?.get(pageId) : null),
- update: (newData: UpdateDescCountData) => swrResponse.mutate(new Map([...(swrResponse.data || new Map()), ...newData])),
- };
- };
|