1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-14 23:30:05 +02:00

feat(ui-toolkit, cp-frontend): Disable quick actions menu remove services filter add service

This commit is contained in:
JUDIT GRESKOVITS 2017-07-19 17:51:21 +01:00 committed by Sérgio Ramos
parent 173b6c9307
commit 7f9eada428
3 changed files with 18 additions and 29 deletions

View File

@ -47,6 +47,8 @@ const ServicesQuickActions = ({
onDeleteClick(evt, service); onDeleteClick(evt, service);
}; };
const disabled = service.transitionalStatus;
const status = service.instances.reduce((status, instance) => { const status = service.instances.reduce((status, instance) => {
return status return status
? instance.status === status ? status : 'MIXED' ? instance.status === status ? status : 'MIXED'
@ -55,20 +57,20 @@ const ServicesQuickActions = ({
const startService = status === 'RUNNING' const startService = status === 'RUNNING'
? null ? null
: <TooltipButton onClick={handleStartClick}>Start</TooltipButton>; : <TooltipButton onClick={handleStartClick} disabled={disabled}>Start</TooltipButton>;
const stopService = status === 'STOPPED' const stopService = status === 'STOPPED'
? null ? null
: <TooltipButton onClick={handleStopClick}>Stop</TooltipButton>; : <TooltipButton onClick={handleStopClick} disabled={disabled}>Stop</TooltipButton>;
return ( return (
<Tooltip {...p} onBlur={onBlur}> <Tooltip {...p} onBlur={onBlur}>
<TooltipButton onClick={handleScaleClick}>Scale</TooltipButton> <TooltipButton onClick={handleScaleClick} disabled={disabled}>Scale</TooltipButton>
<TooltipButton onClick={handleRestartClick}>Restart</TooltipButton> <TooltipButton onClick={handleRestartClick} disabled={disabled}>Restart</TooltipButton>
{startService} {startService}
{stopService} {stopService}
<TooltipDivider /> <TooltipDivider />
<TooltipButton onClick={handleDeleteClick}>Delete</TooltipButton> <TooltipButton onClick={handleDeleteClick} disabled={disabled}>Delete</TooltipButton>
</Tooltip> </Tooltip>
); );
}; };

View File

@ -1,13 +1,11 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
// Import { connect } from 'react-redux';
import { Col, Row } from 'react-styled-flexboxgrid'; import { Col, Row } from 'react-styled-flexboxgrid';
import styled from 'styled-components'; import styled from 'styled-components';
import remcalc from 'remcalc'; import remcalc from 'remcalc';
import unitcalc from 'unitcalc'; import unitcalc from 'unitcalc';
import { LayoutContainer } from '@components/layout'; import { LayoutContainer } from '@components/layout';
// Import { EmptyServices } from '@components/services';
import { import {
Button, Button,
H2, H2,
@ -18,8 +16,6 @@ import {
Legend Legend
} from 'joyent-ui-toolkit'; } from 'joyent-ui-toolkit';
// Import { servicesForTopologySelector } from '@state/selectors';
const StyledLegend = Legend.extend` const StyledLegend = Legend.extend`
float: left; float: left;
padding-top: ${unitcalc(2)}; padding-top: ${unitcalc(2)};
@ -36,10 +32,6 @@ const StyledForm = FormGroup.extend`
margin: 0; margin: 0;
`; `;
// Const StyledButton = styled(Button)`
// margin-left: ${remcalc(48)};
// `;
const StyledFilter = styled(Input)` const StyledFilter = styled(Input)`
margin: 0; margin: 0;
`; `;
@ -47,11 +39,6 @@ const StyledFilter = styled(Input)`
const handleAddService = () => console.log('Adding a service...'); const handleAddService = () => console.log('Adding a service...');
const ServicesMenu = ({ location, history: { push } }) => { const ServicesMenu = ({ location, history: { push } }) => {
/* If(!services || !services.length) {
return (
<EmptyServices />
);
} */
const toggleValue = location.pathname.split('-').pop(); const toggleValue = location.pathname.split('-').pop();
@ -77,16 +64,6 @@ const ServicesMenu = ({ location, history: { push } }) => {
</ToggleList> </ToggleList>
</FormGroup> </FormGroup>
</Col> </Col>
<Col xs={5}>
<StyledForm name="topology-filter">
<StyledFilter placeholder="Filter" />
</StyledForm>
</Col>
<Col xs={2}>
<Button secondary onClick={handleAddService}>
Add a service
</Button>
</Col>
</PaddedRow> </PaddedRow>
</LayoutContainer> </LayoutContainer>
); );

View File

@ -1,6 +1,7 @@
import React from 'react'; import React from 'react';
import styled from 'styled-components'; import styled from 'styled-components';
import unitcalc from 'unitcalc'; import unitcalc from 'unitcalc';
import is from 'styled-is';
import theme from '../theme'; import theme from '../theme';
import Button from '../button'; import Button from '../button';
@ -32,6 +33,15 @@ const StyledButton = styled(Button)`
color: ${theme.primary}; color: ${theme.primary};
border: none; border: none;
} }
&[disabled] {
cursor: not-allowed;
pointer-events: none;
}
${is('disabled')`
color: ${props => props.theme.grey};
`}
`; `;
const TooltipButton = props => const TooltipButton = props =>