import React from 'react'; import PropTypes from 'prop-types'; import JSONNestedNode from './JSONNestedNode'; import { CircularPropsPassedThroughJSONNode } from './types'; // Returns the "n Items" string for this node, // generating and caching it if it hasn't been created yet. function createItemString(data: any) { const len = Object.getOwnPropertyNames(data).length; return `${len} ${len !== 1 ? 'keys' : 'key'}`; } interface Props extends CircularPropsPassedThroughJSONNode { data: any; nodeType: string; } // Configures to render an Object const JSONObjectNode: React.FunctionComponent = ({ data, ...props }) => ( 0} /> ); JSONObjectNode.propTypes = { data: PropTypes.object, nodeType: PropTypes.string.isRequired, }; export default JSONObjectNode;