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

38 lines
1.2 KiB
TypeScript
Raw Normal View History

// 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/GroupLinkManagement';
import { GroupLinkManagement } from '../../components/conversation/conversation-details/GroupLinkManagement';
import { getConversationSelector } from '../selectors/conversations';
import { getIntl } from '../selectors/user';
export type SmartGroupLinkManagementProps = {
changeHasGroupLink: (value: boolean) => void;
conversationId: string;
copyGroupLink: (groupLink: string) => void;
generateNewGroupLink: () => void;
setAccessControlAddFromInviteLinkSetting: (value: boolean) => void;
};
const mapStateToProps = (
state: StateType,
props: SmartGroupLinkManagementProps
): PropsType => {
const conversation = getConversationSelector(state)(props.conversationId);
2021-03-02 16:27:11 +00:00
const isAdmin = Boolean(conversation?.areWeAdmin);
return {
...props,
conversation,
i18n: getIntl(state),
2021-03-02 16:27:11 +00:00
isAdmin,
};
};
const smart = connect(mapStateToProps);
export const SmartGroupLinkManagement = smart(GroupLinkManagement);