/* * * Copyright 2016 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ import React from 'react'; import Loader from 'widgets/loading-indicator/loadingIndicator.jsx'; export default class managementInterfaces extends React.Component { constructor(props) { super(props); } componentWillReceiveProps(nextProps) { } render() { let dashboard_html; let console_html; let isDisplayed = this.props.display; let status; let applicationDashboards = this.props.interfaces.sort(function(a,b) { try { if ((a["short-name"] + '-' + a.id.substr(0,4)) > (b["short-name"] + '-' + b.id.substr(0,4))) { return 1; } } catch(e) { return 1; } return -1; }); if(applicationDashboards.length > 0){ status = applicationDashboards.map(function(i, index) { let mgmtLink = i["dashboard-url"] ? i["dashboard-url"] : 'None'; return (
  • {i["short-name"] + '-' + i.id.substr(0,4)}

    {mgmtLink}
  • ) }); } else { status =
  • No Application Dashboard Links have been specified.
  • } dashboard_html = ( ); let consoleLinks = this.props.consoleUrls && this.props.consoleUrls.sort(function(a,b) { try { if ((a["name"] + '-' + a.id.substr(0,4)) > (b["name"] + '-' + b.id.substr(0,4))) { return 1; } } catch(e) { return 1; } return -1; }); if(consoleLinks && consoleLinks.length > 0){ status = consoleLinks.map(function(i, index) { let consoleLink = i["console-url"] ? 'Open VM Console' : 'None'; return (
  • {i["name"] + '-' + i.id.substr(0,4)}

    {consoleLink}
  • ) }); } else { status =
  • No VDU Console Links have been specified.
  • } console_html = ( ); return (

    Application Dashboard Links

    {dashboard_html}

    VM Console Links

    {console_html}
    ); } } managementInterfaces.defaultProps = { display: false, interfaces: [] }