mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Rename files
This commit is contained in:
62
ts/components/WarningIdlePrimaryDeviceDialog.dom.tsx
Normal file
62
ts/components/WarningIdlePrimaryDeviceDialog.dom.tsx
Normal file
@@ -0,0 +1,62 @@
|
||||
// Copyright 2025 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
LeftPaneDialog,
|
||||
LeftPaneDialogIcon,
|
||||
LeftPaneDialogIconBackground,
|
||||
} from './LeftPaneDialog.dom.js';
|
||||
import { WidthBreakpoint } from './_util.std.js';
|
||||
import type { LocalizerType } from '../types/I18N.std.js';
|
||||
import { openLinkInWebBrowser } from '../util/openLinkInWebBrowser.dom.js';
|
||||
|
||||
export type Props = {
|
||||
containerWidthBreakpoint: WidthBreakpoint;
|
||||
i18n: LocalizerType;
|
||||
};
|
||||
|
||||
const SUPPORT_PAGE =
|
||||
'https://support.signal.org/hc/articles/9021007554074-Open-Signal-on-your-phone-to-keep-your-account-active';
|
||||
|
||||
export function WarningIdlePrimaryDeviceDialog({
|
||||
containerWidthBreakpoint,
|
||||
i18n,
|
||||
handleClose,
|
||||
}: Props & { handleClose?: VoidFunction }): JSX.Element {
|
||||
return (
|
||||
<LeftPaneDialog
|
||||
containerWidthBreakpoint={containerWidthBreakpoint}
|
||||
type="info"
|
||||
icon={
|
||||
<LeftPaneDialogIconBackground type="warning">
|
||||
<LeftPaneDialogIcon type="error" />
|
||||
</LeftPaneDialogIconBackground>
|
||||
}
|
||||
{...(containerWidthBreakpoint === WidthBreakpoint.Narrow
|
||||
? {
|
||||
onClick: () => openLinkInWebBrowser(SUPPORT_PAGE),
|
||||
clickLabel: i18n('icu:IdlePrimaryDevice__learnMore'),
|
||||
hasAction: false,
|
||||
}
|
||||
: { hasAction: false })}
|
||||
{...(handleClose == null
|
||||
? { hasXButton: false }
|
||||
: {
|
||||
hasXButton: true,
|
||||
onClose: handleClose,
|
||||
closeLabel: i18n('icu:close'),
|
||||
})}
|
||||
>
|
||||
{i18n('icu:IdlePrimaryDevice__body')}
|
||||
{containerWidthBreakpoint !== WidthBreakpoint.Narrow ? (
|
||||
<div>
|
||||
<a href={SUPPORT_PAGE} rel="noreferrer" target="_blank">
|
||||
{i18n('icu:IdlePrimaryDevice__learnMore')}
|
||||
</a>
|
||||
</div>
|
||||
) : null}
|
||||
</LeftPaneDialog>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user