signal-desktop/ts/state/smart/UnsupportedOSDialog.tsx

32 lines
925 B
TypeScript
Raw Normal View History

2023-01-18 23:31:10 +00:00
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { useSelector } from 'react-redux';
import { UnsupportedOSDialog } from '../../components/UnsupportedOSDialog';
import { getIntl } from '../selectors/user';
import { getExpirationTimestamp } from '../selectors/expiration';
import type { WidthBreakpoint } from '../../components/_util';
import OS from '../../util/os/osMain';
2023-01-18 23:31:10 +00:00
export type PropsType = Readonly<{
type: 'warning' | 'error';
containerWidthBreakpoint: WidthBreakpoint;
}>;
export function SmartUnsupportedOSDialog(ownProps: PropsType): JSX.Element {
const i18n = useSelector(getIntl);
const expirationTimestamp = useSelector(getExpirationTimestamp);
const osName = OS.getName();
2023-01-18 23:31:10 +00:00
return (
<UnsupportedOSDialog
{...ownProps}
i18n={i18n}
expirationTimestamp={expirationTimestamp}
OS={osName}
2023-01-18 23:31:10 +00:00
/>
);
}