summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/admin_console.jsx
blob: e5c5286144631397b92804eb5c39d2aaa6c5e6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import $ from 'jquery';
import React from 'react';

import AdminStore from 'stores/admin_store.jsx';
import * as AsyncClient from 'utils/async_client.jsx';

import AdminSidebar from './admin_sidebar.jsx';

export default class AdminConsole extends React.Component {
    static get propTypes() {
        return {
            children: React.PropTypes.node.isRequired
        };
    }

    constructor(props) {
        super(props);

        this.handleConfigChange = this.handleConfigChange.bind(this);

        this.state = {
            config: AdminStore.getConfig()
        };
    }

    componentWillMount() {
        AdminStore.addConfigChangeListener(this.handleConfigChange);
        AsyncClient.getConfig();
    }

    componentWillUnmount() {
        AdminStore.removeConfigChangeListener(this.handleConfigChange);
    }

    handleConfigChange() {
        this.setState({
            config: AdminStore.getConfig()
        });
    }

    render() {
        if ($.isEmptyObject(this.state.config)) {
            return <div className='admin-console'/>;
        }

        // not every page in the system console will need the config, but the vast majority will
        const children = React.cloneElement(this.props.children, {
            config: this.state.config
        });

        return (
            <div className='admin-console'>
                <AdminSidebar/>
                {children}
            </div>
        );
    }
}