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

24 lines
739 B
TypeScript
Raw Normal View History

2021-06-01 20:45:43 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { UniversalTimerNotification } from '../../components/conversation/UniversalTimerNotification';
import type { StateType } from '../reducer';
2021-06-01 20:45:43 +00:00
import { getIntl } from '../selectors/user';
import { getUniversalExpireTimer } from '../selectors/items';
const mapStateToProps = (state: StateType) => {
return {
...state.updates,
i18n: getIntl(state),
expireTimer: getUniversalExpireTimer(state),
};
};
const smart = connect(mapStateToProps, mapDispatchToProps);
export const SmartUniversalTimerNotification = smart(
UniversalTimerNotification
);