summaryrefslogtreecommitdiffstats
path: root/webapp/components/new_channel_modal/index.js
blob: 770084fbb43a429197a059846f6583a6bb4a71ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {connect} from 'react-redux';
import {getBool} from 'mattermost-redux/selectors/entities/preferences';
import {isCurrentUserSystemAdmin} from 'mattermost-redux/selectors/entities/users';
import {isCurrentUserCurrentTeamAdmin} from 'mattermost-redux/selectors/entities/teams';
import {Preferences} from 'mattermost-redux/constants';

import NewChannelModal from './new_channel_modal.jsx';

function mapStateToProps(state, ownProps) {
    return {
        ...ownProps,
        ctrlSend: getBool(state, Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
        isTeamAdmin: isCurrentUserCurrentTeamAdmin(state),
        isSystemAdmin: isCurrentUserSystemAdmin(state)
    };
}

export default connect(mapStateToProps)(NewChannelModal);