summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/admin_console.jsx
blob: d00293f04c6094aa3a154597ba83b10ab3f290dd (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
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';
import 'bootstrap';

import ErrorBar from 'components/error_bar.jsx';
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() {
        const config = this.state.config;
        if (!config) {
            return <div/>;
        }
        if (config && Object.keys(config).length === 0 && config.constructor === 'Object') {
            return (
                <div className='admin-console__wrapper'>
                    <ErrorBar/>
                    <div className='admin-console'/>
                </div>
            );
        }

        // 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__wrapper'>
                <ErrorBar/>
                <div className='admin-console'>
                    <AdminSidebar/>
                    {children}
                </div>
            </div>
        );
    }
}