be5d0837f8
Co-authored-by: scott@signal.org Co-authored-by: ken@signal.org
31 lines
901 B
TypeScript
31 lines
901 B
TypeScript
import { connect } from 'react-redux';
|
|
import { mapDispatchToProps } from '../actions';
|
|
import { StickerManager } from '../../components/stickers/StickerManager';
|
|
import { StateType } from '../reducer';
|
|
|
|
import { getIntl } from '../selectors/user';
|
|
import {
|
|
getBlessedStickerPacks,
|
|
getInstalledStickerPacks,
|
|
getKnownStickerPacks,
|
|
getReceivedStickerPacks,
|
|
} from '../selectors/stickers';
|
|
|
|
const mapStateToProps = (state: StateType) => {
|
|
const blessedPacks = getBlessedStickerPacks(state);
|
|
const receivedPacks = getReceivedStickerPacks(state);
|
|
const installedPacks = getInstalledStickerPacks(state);
|
|
const knownPacks = getKnownStickerPacks(state);
|
|
|
|
return {
|
|
blessedPacks,
|
|
receivedPacks,
|
|
installedPacks,
|
|
knownPacks,
|
|
i18n: getIntl(state),
|
|
};
|
|
};
|
|
|
|
const smart = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export const SmartStickerManager = smart(StickerManager);
|