mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-06-06 06:45:52 +01:00
38e6bd911c
Co-authored-by: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com>
35 lines
908 B
TypeScript
35 lines
908 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { JSX } from 'react';
|
|
|
|
import type { LocalizerType } from '../types/Util.std.ts';
|
|
import type { WidthBreakpoint } from './_util.std.ts';
|
|
|
|
import { LeftPaneDialog } from './LeftPaneDialog.dom.tsx';
|
|
import { openLinkInWebBrowser } from '../util/openLinkInWebBrowser.dom.ts';
|
|
|
|
export type PropsType = {
|
|
containerWidthBreakpoint: WidthBreakpoint;
|
|
i18n: LocalizerType;
|
|
};
|
|
|
|
export function DialogExpiredBuild({
|
|
containerWidthBreakpoint,
|
|
i18n,
|
|
}: PropsType): JSX.Element | null {
|
|
return (
|
|
<LeftPaneDialog
|
|
containerWidthBreakpoint={containerWidthBreakpoint}
|
|
type="error"
|
|
onClick={() => {
|
|
openLinkInWebBrowser('https://signal.org/download/');
|
|
}}
|
|
clickLabel={i18n('icu:upgrade')}
|
|
hasAction
|
|
>
|
|
{i18n('icu:expiredWarning')}{' '}
|
|
</LeftPaneDialog>
|
|
);
|
|
}
|