blob: 99256d7d4f208205c0e8bda9bf5f17c3646e3101 (
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
|
// 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';
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();
}
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>
);
}
}
|