import React from 'react'; import ReactJson from 'react-json-view'; import PropTypes from 'prop-types'; import { compose, graphql } from 'react-apollo'; import find from 'lodash.find'; import get from 'lodash.get'; import { ViewContainer, Title, StatusLoader, Message } from 'joyent-ui-toolkit'; import GetInstance from '@graphql/get-instance.gql'; const Summary = ({ instance = {}, loading, error }) => { const { name } = instance; const _title = Summary; const _loading = !(loading && !name) ? null : ; const _summary = !_loading && ; const _error = !(error && !_loading) ? null : ( ); return ( {_title} {_loading} {_error} {_summary} ); }; Summary.propTypes = { loading: PropTypes.bool }; export default compose( graphql(GetInstance, { options: ({ match }) => ({ pollInterval: 1000, variables: { name: get(match, 'params.instance') } }), props: ({ data: { loading, error, variables, ...rest } }) => ({ instance: find(get(rest, 'machines', []), ['name', variables.name]), loading, error }) }) )(Summary);