summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/admin_console.jsx
blob: 17670d6ab355d55641e65e1c5e0952807fd7cd50 (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
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';
import PropTypes from 'prop-types';
import 'bootstrap';

import AnnouncementBar from 'components/announcement_bar';
import AdminSidebar from './admin_sidebar.jsx';

import {reloadIfServerVersionChanged} from 'actions/global_actions.jsx';

export default class AdminConsole extends React.Component {
    static propTypes = {

        /*
         * Children components to render
         */
        children: PropTypes.node.isRequired,

        /*
         * Object representing the config file
         */
        config: PropTypes.object.isRequired,

        actions: PropTypes.shape({

            /*
             * Function to get the config file
             */
            getConfig: PropTypes.func.isRequired
        }).isRequired
    }

    componentWillMount() {
        this.props.actions.getConfig();
        reloadIfServerVersionChanged();
    }

    render() {
        const config = this.props.config;
        if (Object.keys(config).length === 0) {
            return <div/>;
        }
        if (config && Object.keys(config).length === 0 && config.constructor === 'Object') {
            return (
                <div className='admin-console__wrapper'>
                    <AnnouncementBar/>
                    <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
        });
        return (
            <div className='admin-console__wrapper'>
                <AnnouncementBar/>
                <div className='admin-console'>
                    <AdminSidebar/>
                    {children}
                </div>
            </div>
        );
    }
}