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
|
2024-03-13 20:44:13 +00:00
|
|
|
import React, { memo } from 'react';
|
|
|
|
import { useSelector } from 'react-redux';
|
2021-08-24 20:59:44 +00:00
|
|
|
import { DialogRelink } from '../../components/DialogRelink';
|
2020-04-16 19:20:52 +00:00
|
|
|
import { getIntl } from '../selectors/user';
|
2021-10-12 23:59:08 +00:00
|
|
|
import type { WidthBreakpoint } from '../../components/_util';
|
2024-03-13 20:44:13 +00:00
|
|
|
import { useNetworkActions } from '../ducks/network';
|
2020-04-16 19:20:52 +00:00
|
|
|
|
2024-03-13 20:44:13 +00:00
|
|
|
type SmartRelinkDialogProps = Readonly<{
|
|
|
|
containerWidthBreakpoint: WidthBreakpoint;
|
|
|
|
}>;
|
2020-04-16 19:20:52 +00:00
|
|
|
|
2024-03-13 20:44:13 +00:00
|
|
|
export const SmartRelinkDialog = memo(function SmartRelinkDialog({
|
|
|
|
containerWidthBreakpoint,
|
|
|
|
}: SmartRelinkDialogProps) {
|
|
|
|
const i18n = useSelector(getIntl);
|
|
|
|
const { relinkDevice } = useNetworkActions();
|
|
|
|
return (
|
|
|
|
<DialogRelink
|
|
|
|
i18n={i18n}
|
|
|
|
containerWidthBreakpoint={containerWidthBreakpoint}
|
|
|
|
relinkDevice={relinkDevice}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
});
|