Merge "RIFT-16181: Project switch must affect non-polling/non-socket based pages...
[osm/UI.git] / skyquake / plugins / composer / src / src / components / CatalogItemDetailsEditor.js
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 'use strict';
19
20 import React from 'react'
21 import PureRenderMixin from 'react-addons-pure-render-mixin'
22 import EditDescriptorModelProperties from './EditDescriptorModelProperties'
23 import {SkyquakeRBAC, isRBACValid} from 'widgets/skyquake_rbac/skyquakeRBAC.jsx';
24 import ROLES from 'utils/roleConstants.js';
25 const PROJECT_ROLES = ROLES.PROJECT;
26 const PLATFORM = ROLES.PLATFORM;
27
28 const CatalogItemDetailsEditor = React.createClass({
29 mixins: [PureRenderMixin],
30 getInitialState() {
31 return {};
32 },
33 getDefaultProps() {
34 return {
35 container: null,
36 width: 0
37 };
38 },
39 contextTypes: {
40 router: React.PropTypes.object,
41 userProfile: React.PropTypes.object
42 },
43 componentWillMount() {
44 },
45 componentDidMount() {
46 },
47 componentDidUpdate() {
48 },
49 componentWillUnmount() {
50 },
51 render() {
52 const User = this.context.userProfile;
53
54 const container = this.props.container || {model: {}, uiState: {}};
55 if (!(container && container.model && container.uiState)) {
56 return null;
57 }
58
59 return (
60 <div className="CatalogItemDetailsEditor">
61 <form name="details-descriptor-editor-form">
62 <div className="properties-group">
63 {
64 isRBACValid(User, [PROJECT_ROLES.CAT_ADMIN]) ?
65 <EditDescriptorModelProperties container={this.props.container} width={this.props.width} />
66 : <EditDescriptorModelProperties container={this.props.container} width={this.props.width} readonly={true} />
67 }
68 </div>
69 </form>
70 </div>
71 );
72
73 }
74 });
75
76 CatalogItemDetailsEditor.contextTypes = {
77 router: React.PropTypes.object,
78 userProfile: React.PropTypes.object
79 };
80 export default CatalogItemDetailsEditor;