2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-04-16 15:20:52 -04:00
|
|
|
import React from 'react';
|
|
|
|
|
2021-10-26 14:15:33 -05:00
|
|
|
import type { LocalizerType } from '../types/Util';
|
2021-10-12 18:59:08 -05:00
|
|
|
import type { WidthBreakpoint } from './_util';
|
2020-04-16 15:20:52 -04:00
|
|
|
|
2021-09-17 15:20:49 -07:00
|
|
|
import { LeftPaneDialog } from './LeftPaneDialog';
|
|
|
|
|
2021-01-14 12:07:05 -06:00
|
|
|
export type PropsType = {
|
2021-10-12 18:59:08 -05:00
|
|
|
containerWidthBreakpoint: WidthBreakpoint;
|
2020-04-16 15:20:52 -04:00
|
|
|
i18n: LocalizerType;
|
|
|
|
relinkDevice: () => void;
|
2021-01-14 12:07:05 -06:00
|
|
|
};
|
2020-04-16 15:20:52 -04:00
|
|
|
|
2022-11-17 16:45:19 -08:00
|
|
|
export function DialogRelink({
|
2021-10-12 18:59:08 -05:00
|
|
|
containerWidthBreakpoint,
|
2020-04-16 15:20:52 -04:00
|
|
|
i18n,
|
|
|
|
relinkDevice,
|
2022-11-17 16:45:19 -08:00
|
|
|
}: PropsType): JSX.Element | null {
|
2020-04-16 15:20:52 -04:00
|
|
|
return (
|
2021-09-17 15:20:49 -07:00
|
|
|
<LeftPaneDialog
|
2021-10-12 18:59:08 -05:00
|
|
|
containerWidthBreakpoint={containerWidthBreakpoint}
|
2021-09-17 15:20:49 -07:00
|
|
|
type="warning"
|
|
|
|
icon="relink"
|
2023-03-29 17:03:25 -07:00
|
|
|
clickLabel={i18n('icu:unlinkedWarning')}
|
2021-09-17 15:20:49 -07:00
|
|
|
onClick={relinkDevice}
|
2023-03-29 17:03:25 -07:00
|
|
|
title={i18n('icu:unlinked')}
|
2021-09-17 15:20:49 -07:00
|
|
|
hasAction
|
|
|
|
/>
|
2020-04-16 15:20:52 -04:00
|
|
|
);
|
2022-11-17 16:45:19 -08:00
|
|
|
}
|