34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import type { StateType } from '../reducer';
|
|
import type { PropsType } from '../../components/conversation/conversation-details/GroupV2Permissions';
|
|
import { GroupV2Permissions } from '../../components/conversation/conversation-details/GroupV2Permissions';
|
|
import { getConversationSelector } from '../selectors/conversations';
|
|
import { getIntl } from '../selectors/user';
|
|
|
|
export type SmartGroupV2PermissionsProps = {
|
|
conversationId: string;
|
|
setAccessControlAttributesSetting: (value: number) => void;
|
|
setAccessControlMembersSetting: (value: number) => void;
|
|
setAnnouncementsOnly: (value: boolean) => void;
|
|
};
|
|
|
|
const mapStateToProps = (
|
|
state: StateType,
|
|
props: SmartGroupV2PermissionsProps
|
|
): PropsType => {
|
|
const conversation = getConversationSelector(state)(props.conversationId);
|
|
|
|
return {
|
|
...props,
|
|
conversation,
|
|
i18n: getIntl(state),
|
|
};
|
|
};
|
|
|
|
const smart = connect(mapStateToProps);
|
|
|
|
export const SmartGroupV2Permissions = smart(GroupV2Permissions);
|