| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import { Nullable, withUtils, SWRResponseWithUtils } from '@growi/core';
- import useSWR, { SWRResponse } from 'swr';
- import useSWRImmutable from 'swr/immutable';
- import { apiGet } from '~/client/util/apiv1-client';
- import { apiv3Get, apiv3Put } from '~/client/util/apiv3-client';
- import { IEditorSettings } from '~/interfaces/editor-settings';
- import { SlackChannels } from '~/interfaces/user-trigger-notification';
- import {
- useCurrentUser, useDefaultIndentSize, useIsGuestUser,
- } from './context';
- import { localStorageMiddleware } from './middlewares/sync-to-storage';
- import { useSWRxTagsInfo } from './page';
- import { useStaticSWR } from './use-static-swr';
- type EditorSettingsOperation = {
- update: (updateData: Partial<IEditorSettings>) => void,
- turnOffAskingBeforeDownloadLargeFiles: () => void,
- }
- export const useEditorSettings = (): SWRResponseWithUtils<EditorSettingsOperation, IEditorSettings, Error> => {
- const { data: currentUser } = useCurrentUser();
- const { data: isGuestUser } = useIsGuestUser();
- const swrResult = useSWRImmutable<IEditorSettings>(
- isGuestUser ? null : ['/personal-setting/editor-settings', currentUser?.username],
- endpoint => apiv3Get(endpoint).then(result => result.data),
- { use: [localStorageMiddleware] }, // store to localStorage for initialization fastly
- );
- return withUtils<EditorSettingsOperation, IEditorSettings, Error>(swrResult, {
- update: (updateData) => {
- const { data, mutate } = swrResult;
- if (data == null) {
- return;
- }
- mutate({ ...data, ...updateData }, false);
- // invoke API
- apiv3Put('/personal-setting/editor-settings', updateData);
- },
- turnOffAskingBeforeDownloadLargeFiles: async() => {
- const { data, mutate } = swrResult;
- if (data == null) {
- return;
- }
- // invoke API
- await apiv3Put('/personal-setting/editor-settings', { textlintSettings: { neverAskBeforeDownloadLargeFiles: true } });
- // revalidate
- mutate();
- },
- });
- };
- export const useIsTextlintEnabled = (): SWRResponse<boolean, Error> => {
- return useStaticSWR<boolean, Error>('isTextlintEnabled', undefined, { fallbackData: false });
- };
- export const useCurrentIndentSize = (): SWRResponse<number, Error> => {
- const { data: defaultIndentSize } = useDefaultIndentSize();
- return useStaticSWR<number, Error>(
- defaultIndentSize == null ? null : 'currentIndentSize',
- undefined,
- { fallbackData: defaultIndentSize },
- );
- };
- /*
- * Slack Notification
- */
- export const useSWRxSlackChannels = (currentPagePath: Nullable<string>): SWRResponse<string[], Error> => {
- const shouldFetch: boolean = currentPagePath != null;
- return useSWR(
- shouldFetch ? ['/pages.updatePost', currentPagePath] : null,
- (endpoint, path) => apiGet(endpoint, { path }).then((response: SlackChannels) => response.updatePost),
- { fallbackData: [''] },
- );
- };
- export const useIsSlackEnabled = (): SWRResponse<boolean, Error> => {
- return useStaticSWR(
- 'isSlackEnabled',
- undefined,
- { fallbackData: false },
- );
- };
- export type IPageTagsForEditorsOption = {
- sync: (tags?: string[]) => void;
- }
- export const usePageTagsForEditors = (pageId: Nullable<string>): SWRResponse<string[], Error> & IPageTagsForEditorsOption => {
- const { data: tagsInfoData } = useSWRxTagsInfo(pageId);
- const swrResult = useStaticSWR<string[], Error>('pageTags', undefined);
- return {
- ...swrResult,
- sync: (): void => {
- const { mutate } = swrResult;
- mutate(tagsInfoData?.tags || [], false);
- },
- };
- };
- export const useIsEnabledUnsavedWarning = (): SWRResponse<boolean, Error> => {
- return useStaticSWR<boolean, Error>('isEnabledUnsavedWarning', undefined, { fallbackData: false });
- };
|