update from RIFT as of 696b75d2fe9fb046261b08c616f1bcf6c0b54a9b third try
[osm/UI.git] / skyquake / plugins / redundancy / src / dashboard / dashboard.jsx
1 /*
2  *
3  *   Copyright 2016 RIFT.IO Inc
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License");
6  *   you may not use this file except in compliance with the License.
7  *   You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS,
13  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *   See the License for the specific language governing permissions and
15  *   limitations under the License.
16  *
17  */
18
19 import React from 'react';
20 import AppHeader from 'widgets/header/header.jsx';
21 import RedundancyStore from './redundancyStore.js';
22 import SkyquakeComponent from 'widgets/skyquake_container/skyquakeComponent.jsx';
23 import {SkyquakeRBAC, isRBACValid} from 'widgets/skyquake_rbac/skyquakeRBAC.jsx';
24 import ROLES from 'utils/roleConstants.js';
25
26
27 const PROJECT_ROLES = ROLES.PROJECT;
28 const PLATFORM = ROLES.PLATFORM;
29
30 //Delete this line after testing is done
31 // PROJECT_ROLES.ACCOUNT_ADMIN = '';
32 import 'style/layout.scss';
33
34 class AccountsDashboard extends React.Component {
35     constructor(props) {
36         super(props);
37         this.Store = this.props.flux.stores.hasOwnProperty('RedundancyStore') ? this.props.flux.stores.RedundancyStore : this.props.flux.createStore(RedundancyStore, "RedundancyStore");
38         this.state = this.Store.getState();
39     }
40     componentWillMount() {
41         this.Store.listen(this.updateState);
42     }
43     componentWillUnmount() {
44         this.Store.unlisten(this.updateState);
45     }
46     updateState = (state) => {
47         this.setState(state);
48     }
49     render() {
50         let self = this;
51         let html;
52         let READONLY = !isRBACValid(this.context.userProfile, [PROJECT_ROLES.ACCOUNT_ADMIN, PROJECT_ROLES.PROJECT_ADMIN]);
53         html = (<div className="launchpad-account-dashboard content-wrapper">
54                 <AppHeader nav={[{ name: 'SITES', onClick: this.context.router.push.bind(this, { pathname: '/sites' })  }, { name: 'CONFIG', onClick: this.context.router.push.bind(this, { pathname: '/config' }) }, { name: 'STATUS', onClick: this.context.router.push.bind(this, { pathname: '/status' }) }]} />
55                     <div className="flex">
56                       <div>
57                         { this.props.children ? React.cloneElement(this.props.children, {readonly: READONLY, store: self.Store, ...self.state}) : 'Edit or Create New Accounts'
58                         }
59                       </div>
60                     </div>
61               </div>);
62         return html;
63     }
64 }
65 AccountsDashboard.contextTypes = {
66     router: React.PropTypes.object,
67     userProfile: React.PropTypes.object
68 };
69
70 export default SkyquakeComponent(AccountsDashboard);