diff --git a/src/webui/components/Dependencies/index.js b/src/webui/components/Dependencies/index.js index 8c444e337..cded3e7f4 100644 --- a/src/webui/components/Dependencies/index.js +++ b/src/webui/components/Dependencies/index.js @@ -10,7 +10,9 @@ import { withRouter } from 'react-router-dom'; import CardContent from '@material-ui/core/CardContent/index'; import { DetailContextConsumer } from '../../pages/version'; + import { Content, CardWrap, Heading, Tags, Tag } from './styles'; +import NoItems from '../NoItems'; class DepDetail extends Component { constructor(props: any) { @@ -41,13 +43,6 @@ class DepDetail extends Component { const WrappDepDetail = withRouter(DepDetail); class DependencyBlock extends Component { - renderTags = (deps: any, enableLoading: any) => - deps.map(dep => { - const [name, version] = dep; - - return ; - }); - render() { const { dependencies, title } = this.props; const deps = Object.entries(dependencies); @@ -59,7 +54,7 @@ class DependencyBlock extends Component { return ( - {title} + {`${title} (${deps.length})`} {this.renderTags(deps, enableLoading)} @@ -68,6 +63,13 @@ class DependencyBlock extends Component { ); } + + renderTags = (deps: any, enableLoading: any) => + deps.map(dep => { + const [name, version] = dep; + + return ; + }); } class Dependencies extends Component { @@ -88,15 +90,22 @@ class Dependencies extends Component { // $FlowFixMe renderDependencies({ packageMeta }) { const { latest } = packageMeta; - const { dependencies, devDependencies, peerDependencies } = latest; + const { dependencies, devDependencies, peerDependencies, name } = latest; + if (dependencies || devDependencies || peerDependencies) { + return ( + + + {dependencies && } + {devDependencies && } + {peerDependencies && } + + + ); + } return ( - - {dependencies && } - {devDependencies && } - {peerDependencies && } - + ); } diff --git a/src/webui/components/Engines/index.js b/src/webui/components/Engines/index.js index 4fc66343a..53d592498 100644 --- a/src/webui/components/Engines/index.js +++ b/src/webui/components/Engines/index.js @@ -63,19 +63,18 @@ class Engine extends Component { ); } - renderListItems = (text, value) => { + renderListItems = (heading, text) => { return ( - {value}}> + {text}}> - { ICONS[value] } + { ICONS[text] } - + ); } } - export default Engine; diff --git a/src/webui/components/NoItems/index.js b/src/webui/components/NoItems/index.js index 1e48a9139..e8fd6e546 100644 --- a/src/webui/components/NoItems/index.js +++ b/src/webui/components/NoItems/index.js @@ -4,13 +4,14 @@ */ import React from 'react'; +import Typography from '@material-ui/core/Typography/index'; + import { IProps } from './types'; -import { Wrapper } from './styles'; const NoItems = ({ text }: IProps) => ( - -

{text}

-
+ + {text} + ); export default NoItems; diff --git a/src/webui/components/NoItems/styles.js b/src/webui/components/NoItems/styles.js deleted file mode 100644 index 1a0085de8..000000000 --- a/src/webui/components/NoItems/styles.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @prettier - * @flow - */ - -import styled from 'react-emotion'; - -export const Wrapper = styled.div` - && { - margin: 5em 0; - } -`; diff --git a/src/webui/components/UpLinks/index.js b/src/webui/components/UpLinks/index.js index 13bf1d3ca..180fec359 100644 --- a/src/webui/components/UpLinks/index.js +++ b/src/webui/components/UpLinks/index.js @@ -1,13 +1,15 @@ /** * @prettier */ - -import { DetailContextConsumer } from '../../pages/version/index'; -import { formatDateDistance } from '../../utils/package'; -import { Heading, Spacer, ListItemText } from './styles'; +import React from 'react'; import List from '@material-ui/core/List/index'; import ListItem from '@material-ui/core/ListItem/index'; -import React from 'react'; + +import { DetailContextConsumer } from '../../pages/version/index'; +import NoItems from '../NoItems'; +import { formatDateDistance } from '../../utils/package'; + +import { Heading, Spacer, ListItemText } from './styles'; class UpLinks extends React.PureComponent { render() { @@ -15,7 +17,7 @@ class UpLinks extends React.PureComponent { // $FlowFixMe {({ packageMeta }) => { - return this.renderContent(packageMeta._uplinks); + return this.renderContent(packageMeta._uplinks, packageMeta.latest); }} ); @@ -35,15 +37,19 @@ class UpLinks extends React.PureComponent {
); - renderContent(uplinks) { - return ( - uplinks && ( - <> - {'Uplinks'} - {this.renderUpLinksList(uplinks)} - - ) - ); + renderContent(uplinks, { name }) { + console.log(uplinks); + if (Object.keys(uplinks).length > 0) { + return ( + uplinks && ( + <> + {'Uplinks'} + {this.renderUpLinksList(uplinks)} + + ) + ); + } + return ; } }