2017-05-11 20:16:52 +03:00
|
|
|
import React, { Component } from 'react';
|
2017-05-19 00:04:29 +03:00
|
|
|
import { compose, graphql } from 'react-apollo';
|
2017-05-18 21:21:33 +03:00
|
|
|
// import { connect } from 'react-redux';
|
2017-05-19 00:04:29 +03:00
|
|
|
import styled from 'styled-components';
|
2017-05-18 21:21:33 +03:00
|
|
|
// import { Link } from 'react-router-dom';
|
|
|
|
import PortalQuery from '@graphql/Portal.gql';
|
2017-05-11 20:16:52 +03:00
|
|
|
import ServicesQuery from '@graphql/Services.gql';
|
2017-02-28 20:34:48 +02:00
|
|
|
|
2017-05-19 00:04:29 +03:00
|
|
|
import { processServices } from '@root/state/selectors';
|
|
|
|
|
|
|
|
import { LayoutContainer } from '@components/layout';
|
2017-05-22 20:13:24 +03:00
|
|
|
import { Loader, ErrorMessage } from '@components/messaging';
|
2017-05-19 00:04:29 +03:00
|
|
|
import { ServiceListItem } from '@components/services';
|
|
|
|
|
|
|
|
const StyledContainer = styled.div`
|
|
|
|
position: relative;
|
|
|
|
`;
|
|
|
|
|
2017-05-11 20:16:52 +03:00
|
|
|
class ServiceList extends Component {
|
2017-03-09 17:17:47 +02:00
|
|
|
render() {
|
2017-05-18 21:21:33 +03:00
|
|
|
const { deploymentGroup, services, loading, error } = this.props;
|
2017-05-11 20:16:52 +03:00
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
if (loading) {
|
2017-05-22 20:13:24 +03:00
|
|
|
return (
|
|
|
|
<LayoutContainer>
|
|
|
|
<Loader />
|
|
|
|
</LayoutContainer>
|
2017-05-18 21:21:33 +03:00
|
|
|
);
|
|
|
|
} else if (error) {
|
2017-05-19 00:04:29 +03:00
|
|
|
return (
|
2017-05-22 20:13:24 +03:00
|
|
|
<LayoutContainer>
|
2017-05-18 21:21:33 +03:00
|
|
|
<ErrorMessage message="Oops, and error occured while loading your services." />
|
2017-05-22 20:13:24 +03:00
|
|
|
</LayoutContainer>
|
2017-05-18 21:21:33 +03:00
|
|
|
);
|
2017-05-19 00:04:29 +03:00
|
|
|
}
|
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
const serviceList = services.map(service => (
|
2017-05-19 00:04:29 +03:00
|
|
|
<ServiceListItem
|
|
|
|
key={service.uuid}
|
2017-05-18 21:21:33 +03:00
|
|
|
onQuickActions={null /* onQuickActions */}
|
2017-05-19 00:04:29 +03:00
|
|
|
deploymentGroup={deploymentGroup.slug}
|
|
|
|
service={service}
|
|
|
|
uiTooltip={null /* uiTooltip */}
|
|
|
|
/>
|
|
|
|
));
|
2017-03-22 18:50:21 +02:00
|
|
|
|
2017-03-09 17:17:47 +02:00
|
|
|
return (
|
2017-05-19 00:04:29 +03:00
|
|
|
<LayoutContainer>
|
|
|
|
<StyledContainer>
|
|
|
|
<div>
|
2017-05-18 21:21:33 +03:00
|
|
|
{/* <div ref={this.ref('container')}> */}
|
2017-05-19 00:04:29 +03:00
|
|
|
{serviceList}
|
2017-05-18 21:21:33 +03:00
|
|
|
{/* <ServicesTooltip {...uiTooltip} onBlur={handleTooltipBlur} /> */}
|
2017-05-19 00:04:29 +03:00
|
|
|
</div>
|
|
|
|
</StyledContainer>
|
|
|
|
</LayoutContainer>
|
2017-03-09 17:17:47 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 20:34:48 +02:00
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
const PortalGql = graphql(PortalQuery, {});
|
|
|
|
|
2017-05-19 00:04:29 +03:00
|
|
|
const ServicesGql = graphql(ServicesQuery, {
|
2017-05-11 20:16:52 +03:00
|
|
|
options(props) {
|
|
|
|
return {
|
|
|
|
variables: {
|
2017-05-17 21:02:35 +03:00
|
|
|
deploymentGroupSlug: props.match.params.deploymentGroup
|
2017-05-11 20:16:52 +03:00
|
|
|
}
|
2017-05-18 21:21:33 +03:00
|
|
|
};
|
2017-02-28 20:34:48 +02:00
|
|
|
},
|
2017-05-18 21:21:33 +03:00
|
|
|
props: ({ data: { deploymentGroup, loading, error } }) => ({
|
2017-05-19 00:04:29 +03:00
|
|
|
deploymentGroup,
|
2017-05-18 21:21:33 +03:00
|
|
|
services: deploymentGroup
|
|
|
|
? processServices(deploymentGroup.services, null)
|
|
|
|
: null,
|
2017-05-11 20:16:52 +03:00
|
|
|
loading,
|
|
|
|
error
|
|
|
|
})
|
2017-05-19 00:04:29 +03:00
|
|
|
});
|
|
|
|
|
2017-05-18 21:21:33 +03:00
|
|
|
const ServiceListWithData = compose(PortalGql, ServicesGql)(ServiceList);
|
2017-05-11 20:16:52 +03:00
|
|
|
|
|
|
|
export default ServiceListWithData;
|