Universal Disappearing Messages
This commit is contained in:
parent
c63871d71b
commit
19f8042cd3
50 changed files with 1224 additions and 191 deletions
23
ts/state/smart/UniversalTimerNotification.tsx
Normal file
23
ts/state/smart/UniversalTimerNotification.tsx
Normal file
|
@ -0,0 +1,23 @@
|
|||
// 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 { StateType } from '../reducer';
|
||||
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
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue