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, MessageDescription, MessageTitle } 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 && ; const _summary = !_loading && instance && ; const _error = error && !_loading && !instance && ( Ooops! An error occurred while loading your instance summary ); 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);