1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/components/app/multiple-notifications/multiple-notifications.component.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

import React, { PureComponent } from 'react'
import classnames from 'classnames'
import PropTypes from 'prop-types'
export default class MultipleNotifications extends PureComponent {
static defaultProps = {
children: [],
classNames: [],
}
static propTypes = {
children: PropTypes.array,
classNames: PropTypes.array,
}
state = {
showAll: false,
}
render () {
const { showAll } = this.state
const { children, classNames } = this.props
2020-02-15 21:34:12 +01:00
const childrenToRender = children.filter((child) => child)
if (childrenToRender.length === 0) {
return null
}
return (
<div
className={classnames(...classNames, {
'home-notification-wrapper--show-all': showAll,
'home-notification-wrapper--show-first': !showAll,
})}
>
{ childrenToRender }
<div
className="home-notification-wrapper__i-container"
onClick={() => this.setState({ showAll: !showAll })}
>
{childrenToRender.length > 1 ? (
<i
className={classnames('fa fa-sm fa-sort-amount-asc', {
'flipped': !showAll,
})}
/>
) : null}
</div>
</div>
)
}
}