Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 1x 1x 1x 1x 1x 1x 9x 6x 3x 1x | import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import { Document } from '@mongodb-js/compass-crud'; import HadronDocument from 'hadron-document'; import styles from './document-preview.less'; /** * The document preview component. */ class DocumentPreview extends Component { static displayName = 'DocumentPreview'; static propTypes = { document: PropTypes.object } /** * Renders the document preview. * * @returns {React.Component} The component. */ render() { if (!this.props.document) { return ( <div className={classnames(styles['document-preview'])}> <div className={classnames(styles['document-preview-documents'])}> <div className={classnames(styles['no-documents'])}> <i>No Preview Documents</i> </div> </div> </div> ); } return ( <div className={classnames(styles['document-preview'])}> <div className={classnames(styles['document-preview-documents'])}> <Document doc={new HadronDocument(this.props.document)} editable={false} tz="UTC" /> </div> </div> ); } } export default DocumentPreview; |