| 1234567891011121314151617181920212223242526272829303132333435 |
- import React from 'react';
- import dynamic from 'next/dynamic';
- import { useIsNotFound } from '~/stores/page';
- import { OldRevisionAlert } from './OldRevisionAlert';
- import { PageGrantAlert } from './PageGrantAlert';
- import { PageRedirectedAlert } from './PageRedirectedAlert';
- import { PageStaleAlert } from './PageStaleAlert';
- import { WipPageAlert } from './WipPageAlert';
- const FixPageGrantAlert = dynamic(() => import('./FixPageGrantAlert').then(mod => mod.FixPageGrantAlert), { ssr: false });
- // dynamic import because TrashPageAlert uses localStorageMiddleware
- const TrashPageAlert = dynamic(() => import('./TrashPageAlert').then(mod => mod.TrashPageAlert), { ssr: false });
- export const PageAlerts = (): JSX.Element => {
- const { data: isNotFound } = useIsNotFound();
- return (
- <div className="row d-edit-none">
- <div className="col-sm-12">
- {/* alerts */}
- { !isNotFound && <FixPageGrantAlert /> }
- <WipPageAlert />
- <PageGrantAlert />
- <TrashPageAlert />
- <PageStaleAlert />
- <OldRevisionAlert />
- <PageRedirectedAlert />
- </div>
- </div>
- );
- };
|