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