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

29 lines
964 B
TypeScript
Raw Normal View History

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
import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { DialogUpdate } from '../../components/DialogUpdate';
import type { StateType } from '../reducer';
import { getIntl } from '../selectors/user';
2023-01-18 23:31:10 +00:00
import { getExpirationTimestamp } from '../selectors/expiration';
import type { WidthBreakpoint } from '../../components/_util';
2023-01-18 23:31:10 +00:00
import { getName as getOSName } from '../../OS';
type PropsType = Readonly<{ containerWidthBreakpoint: WidthBreakpoint }>;
const mapStateToProps = (state: StateType, ownProps: PropsType) => {
return {
...state.updates,
i18n: getIntl(state),
2021-11-11 22:46:16 +00:00
currentVersion: window.getVersion(),
2023-01-18 23:31:10 +00:00
expirationTimestamp: getExpirationTimestamp(state),
OS: getOSName(),
...ownProps,
};
};
const smart = connect(mapStateToProps, mapDispatchToProps);
export const SmartUpdateDialog = smart(DialogUpdate);