import type { FC } from 'react'; import React, { useState } from 'react'; import { LoadingSpinner } from '@growi/ui/dist/components'; import { useAtomValue } from 'jotai'; import { useTranslation } from 'next-i18next'; import { apiv3Put } from '~/client/util/apiv3-client'; import { InAppNotificationStatuses } from '~/interfaces/in-app-notification'; import { showPageLimitationXLAtom } from '~/states/server-configurations'; import { useSWRxInAppNotificationStatus, useSWRxInAppNotifications, } from '~/stores/in-app-notification'; import CustomNavAndContents from '../CustomNavigation/CustomNavAndContents'; import PaginationWrapper from '../PaginationWrapper'; import InAppNotificationList from './InAppNotificationList'; type InAppNotificationCategoryByStatusProps = { status?: InAppNotificationStatuses; }; const EmptyIcon: FC = () => { return null; }; const InAppNotificationCategoryByStatus: FC< InAppNotificationCategoryByStatusProps > = ({ status }) => { const { t } = useTranslation('commons'); const showPageLimitationXL = useAtomValue(showPageLimitationXLAtom); const limit = showPageLimitationXL != null ? showPageLimitationXL : 20; const [activePage, setActivePage] = useState(1); const offset = (activePage - 1) * limit; const categoryStatus = status === InAppNotificationStatuses.STATUS_UNOPENED ? InAppNotificationStatuses.STATUS_UNOPENED : undefined; const { data: notificationData, mutate: mutateNotificationData } = useSWRxInAppNotifications(limit, offset, categoryStatus); const { mutate: mutateAllNotificationData } = useSWRxInAppNotifications( limit, offset, undefined, ); const { mutate: mutateNotificationCount } = useSWRxInAppNotificationStatus(); const setAllNotificationPageNumber = (selectedPageNumber: number): void => { setActivePage(selectedPageNumber); }; if (notificationData == null) { return (