X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=skyquake%2Fplugins%2Flaunchpad%2Fsrc%2Fvirtual_links%2FnsVirtualLinks.jsx;h=aa4fe43cbbee56453fe249c39b74693eb18e2746;hp=37cf0b3b7f4087e5195496db9fdc61f375190641;hb=refs%2Fchanges%2F79%2F5479%2F2;hpb=f2dc2462571800e62cba969964de621dca09299c diff --git a/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinks.jsx b/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinks.jsx index 37cf0b3b7..aa4fe43cb 100644 --- a/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinks.jsx +++ b/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinks.jsx @@ -1,5 +1,5 @@ /* - * + * * Copyright 2016 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -25,11 +25,16 @@ import UpTime from 'widgets/uptime/uptime.jsx'; import NSVirtualLinkDetails from './nsVirtualLinkDetails.jsx'; import NSVirtualLinkCreate from './nsVirtualLinkCreate.jsx'; import SkyquakeComponent from 'widgets/skyquake_container/skyquakeComponent.jsx'; +import ROLES from 'utils/roleConstants.js'; +import {SkyquakeRBAC, isRBACValid} from 'widgets/skyquake_rbac/skyquakeRBAC.jsx'; + +const PROJECT_ROLES = ROLES.PROJECT; +const PLATFORM = ROLES.PLATFORM; class NsVirtualLinks extends React.Component { constructor(props) { super(props); - this.Store = this.props.flux.stores.hasOwnProperty('NSVirtualLinkCreateStore') ? + this.Store = this.props.flux.stores.hasOwnProperty('NSVirtualLinkCreateStore') ? this.props.flux.stores.NSVirtualLinkCreateStore : this.props.flux.createStore(NSVirtualLinkCreateStore, 'NSVirtualLinkCreateStore'); this.state = {}; this.state.mode = 'viewing'; // Can be 'viewing'/'creating'/'editing'/'deleting'. Default is 'viewing' @@ -59,7 +64,7 @@ class NsVirtualLinks extends React.Component { if (!this.state.nsd) { this.setState({ nsd: this.props.data.nsd - }); + }); } if (!this.state.nsrId) { @@ -78,7 +83,7 @@ class NsVirtualLinks extends React.Component { if (!this.state.nsd) { this.setState({ nsd: nextProps.data.nsd - }); + }); } if (!this.state.nsrId) { @@ -149,14 +154,18 @@ class NsVirtualLinks extends React.Component { {name} {operationalStatus} - - - - - - - - + { + isRBACValid(this.context.userProfile, [PROJECT_ROLES.LCM_ADMIN, PROJECT_ROLES.PROJECT_ADMIN]) ? + + + + + + + + + : null + } ); }); @@ -173,7 +182,10 @@ class NsVirtualLinks extends React.Component { Name Status - + { + isRBACValid(this.context.userProfile, [PROJECT_ROLES.LCM_ADMIN, PROJECT_ROLES.PROJECT_ADMIN]) ? + : null + } {tbody} @@ -224,7 +236,7 @@ class NsVirtualLinks extends React.Component { {nsVirtualLinksTable}
- {nsVirtualLinkCreateButton} + { isRBACValid(this.context.userProfile, [PROJECT_ROLES.LCM_ADMIN, PROJECT_ROLES.PROJECT_ADMIN]) ? nsVirtualLinkCreateButton : null}
{nsVirtualLinkDetails} @@ -232,4 +244,4 @@ class NsVirtualLinks extends React.Component { ); } } -export default SkyquakeComponent(NsVirtualLinks); \ No newline at end of file +export default SkyquakeComponent(NsVirtualLinks);