import React, { Component } from 'react'; import { compose, graphql } from 'react-apollo'; import { connect } from 'react-redux'; import styled from 'styled-components'; import ServicesQuery from '@graphql/Services.gql'; import ServicesRestartMutation from '@graphql/ServicesRestartMutation.gql'; import ServicesStopMutation from '@graphql/ServicesStopMutation.gql'; import ServicesStartMutation from '@graphql/ServicesStartMutation.gql'; import { processServices } from '@root/state/selectors'; import { toggleServicesQuickActions } from '@root/state/actions'; import { LayoutContainer } from '@components/layout'; import { Loader, ErrorMessage } from '@components/messaging'; import { ServiceListItem } from '@components/services'; import { ServicesQuickActions } from '@components/services'; const StyledContainer = styled.div` position: relative; `; class ServiceList extends Component { ref(name) { this._refs = this._refs || {}; return el => { this._refs[name] = el; }; } render() { const { deploymentGroup, services, loading, error, servicesQuickActions, toggleServicesQuickActions, url, restartServices, stopServices, startServices } = this.props; if (loading) { return ( ); } else if (error) { return ( ); } const handleQuickActionsClick = (evt, { service }) => { const list = this._refs.container; const listRect = list.getBoundingClientRect(); const button = evt.currentTarget; const buttonRect = button.getBoundingClientRect(); const position = { left: buttonRect.left - listRect.left + (buttonRect.right - buttonRect.left) / 2, top: buttonRect.bottom - listRect.top }; toggleServicesQuickActions({ service, position }); }; const handleRestartClick = (evt, service) => { restartServices(service.id); }; const handleStopClick = (evt, service) => { stopServices(service.id); }; const handleStartClick = (evt, service) => { startServices(service.id); }; const handleQuickActionsBlur = o => { toggleServicesQuickActions({ show: false }); }; const serviceList = services.map(service => ); return (
{serviceList}
); } } const mapStateToProps = (state, ownProps) => ({ servicesQuickActions: state.ui.services.quickActions, url: ownProps.match.url }); const mapDispatchToProps = dispatch => ({ toggleServicesQuickActions: data => dispatch(toggleServicesQuickActions(data)) }); const UiConnect = connect(mapStateToProps, mapDispatchToProps); const ServicesGql = graphql(ServicesQuery, { options(props) { return { variables: { deploymentGroupSlug: props.match.params.deploymentGroup } }; }, props: ({ data: { deploymentGroup, loading, error } }) => ({ deploymentGroup, services: deploymentGroup ? processServices(deploymentGroup.services, null) : null, loading, error }) }); const ServicesRestartGql = graphql(ServicesRestartMutation, { props: ({ mutate }) => ({ restartServices: serviceId => mutate({ variables: { ids: [serviceId] } }) }) }); const ServicesStopGql = graphql(ServicesStopMutation, { props: ({ mutate }) => ({ stopServices: serviceId => mutate({ variables: { ids: [serviceId] } }) }) }); const ServicesStartGql = graphql(ServicesStartMutation, { props: ({ mutate }) => ({ startServices: serviceId => mutate({ variables: { ids: [serviceId] } }) }) }); const ServiceListWithData = compose( ServicesGql, ServicesStopGql, ServicesStartGql, ServicesGql, UiConnect )(ServiceList); export default ServiceListWithData;