import React from 'react'; import { Dialogs } from '../types/Dialogs'; import { Intl } from './Intl'; import { LocalizerType } from '../types/Util'; export interface PropsType { ackRender: () => void; dialogType: Dialogs; didSnooze: boolean; dismissDialog: () => void; hasNetworkDialog: boolean; i18n: LocalizerType; showEventsCount: number; snoozeUpdate: () => void; startUpdate: () => void; } export const UpdateDialog = ({ ackRender, dialogType, didSnooze, dismissDialog, hasNetworkDialog, i18n, snoozeUpdate, startUpdate, }: PropsType): JSX.Element | null => { React.useEffect(() => { ackRender(); }); if (hasNetworkDialog) { return null; } if (dialogType === Dialogs.None) { return null; } if (dialogType === Dialogs.Cannot_Update) { return (