mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
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;
|
|
|
|
const childrenToRender = children.filter(Boolean);
|
|
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', {
|
|
flipped: !showAll,
|
|
})}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|