import React from 'react'; import PropTypes from 'prop-types'; // Import { connect } from 'react-redux'; import { Col, Row } from 'react-styled-flexboxgrid'; import styled from 'styled-components'; import remcalc from 'remcalc'; import unitcalc from 'unitcalc'; import { LayoutContainer } from '@components/layout'; // Import { EmptyServices } from '@components/services'; import { Button, H2, FormGroup, Input, Toggle, ToggleList, Legend } from 'joyent-ui-toolkit'; // Import { servicesForTopologySelector } from '@state/selectors'; const StyledLegend = Legend.extend` float: left; padding-top: ${unitcalc(2)}; margin-right: ${unitcalc(1.5)}; `; const PaddedRow = Row.extend` margin-bottom: ${remcalc(18)} `; const StyledForm = FormGroup.extend` width: 60%; float: left; margin: 0; `; // Const StyledButton = styled(Button)` // margin-left: ${remcalc(48)}; // `; const StyledFilter = styled(Input)` margin: 0; `; const handleAddService = () => console.log('Adding a service...'); const ServicesMenu = ({ location, history: { push } }) => { /* If(!services || !services.length) { return ( ); } */ const toggleValue = location.pathname.split('-').pop(); const handleToggle = evt => { const value = evt.target.value; if (value !== toggleValue) { const index = location.pathname.lastIndexOf('-'); const path = `${location.pathname.slice(0, index)}-${value}`; push(path); } }; return (

Services

View List Topology
); }; ServicesMenu.propTypes = { location: PropTypes.object.isRequired, history: PropTypes.object.isRequired }; export default ServicesMenu;