mirror of
https://github.com/yldio/copilot.git
synced 2024-11-16 00:00:06 +02:00
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
|
import React, { Component } from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { compose, graphql } from 'react-apollo';
|
||
|
import ServiceScaleMutation from '@graphql/ServiceScale.gql';
|
||
|
import { Loader, ErrorMessage } from '@components/messaging';
|
||
|
import { ServiceScale as ServiceScaleComponent } from '@components/service';
|
||
|
import { Modal } from 'joyent-ui-toolkit';
|
||
|
import ServiceGql from './service-gql';
|
||
|
|
||
|
class ServiceScale extends Component {
|
||
|
render() {
|
||
|
if (this.props.loading) {
|
||
|
return <Loader />;
|
||
|
}
|
||
|
if (this.props.error) {
|
||
|
return (
|
||
|
<ErrorMessage message="Oops, an error occured while loading your service." />
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const { service, scale, history, match } = this.props;
|
||
|
|
||
|
const handleCloseClick = evt => {
|
||
|
const closeUrl = match.url.split('/').slice(0, -2).join('/');
|
||
|
history.replace(closeUrl);
|
||
|
};
|
||
|
|
||
|
const handleConfirmClick = evt => {
|
||
|
scale(service.id, 2);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Modal width={460} onCloseClick={handleCloseClick}>
|
||
|
<ServiceScaleComponent
|
||
|
service={service}
|
||
|
onConfirmClick={handleConfirmClick}
|
||
|
onCancelClick={handleCloseClick}
|
||
|
/>
|
||
|
</Modal>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ServiceScale.propTypes = {
|
||
|
service: PropTypes.object,
|
||
|
history: PropTypes.object,
|
||
|
scale: PropTypes.func.isRequired
|
||
|
};
|
||
|
|
||
|
const ServiceScaleGql = graphql(ServiceScaleMutation, {
|
||
|
props: ({ mutate }) => ({
|
||
|
scale: (serviceId, replicas) =>
|
||
|
mutate({
|
||
|
variables: {
|
||
|
serviceId,
|
||
|
replicas
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
});
|
||
|
|
||
|
const ServiceScaleWithData = compose(ServiceScaleGql, ServiceGql)(ServiceScale);
|
||
|
|
||
|
export default ServiceScaleWithData;
|