// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import IntegrationStore from 'stores/integration_store.jsx'; import UserStore from 'stores/user_store.jsx'; import {loadTeamCommands} from 'actions/integration_actions.jsx'; import PropTypes from 'prop-types'; import React from 'react'; export default class CommandsContainer extends React.Component { static get propTypes() { return { team: PropTypes.object, user: PropTypes.object, children: PropTypes.node.isRequired, isAdmin: PropTypes.bool }; } constructor(props) { super(props); this.handleIntegrationChange = this.handleIntegrationChange.bind(this); this.handleUserChange = this.handleUserChange.bind(this); const teamId = this.props.team ? this.props.team.id : ''; this.state = { commands: IntegrationStore.getCommands(teamId) || [], loading: !IntegrationStore.hasReceivedCommands(teamId), users: UserStore.getProfiles() }; } componentDidMount() { IntegrationStore.addChangeListener(this.handleIntegrationChange); UserStore.addChangeListener(this.handleUserChange); if (window.mm_config.EnableCommands === 'true') { loadTeamCommands((() => this.setState({loading: false}))); } } componentWillUnmount() { IntegrationStore.removeChangeListener(this.handleIntegrationChange); UserStore.removeChangeListener(this.handleUserChange); } handleIntegrationChange() { const teamId = this.props.team.id; this.setState({ commands: IntegrationStore.getCommands(teamId) }); } handleUserChange() { this.setState({users: UserStore.getProfiles()}); } render() { return (
{React.cloneElement(this.props.children, { commands: this.state.commands, users: this.state.users, loading: this.state.loading, team: this.props.team, user: this.props.user, isAdmin: this.props.isAdmin })}
); } }