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

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-asc', {
flipped: !showAll,
})}
/>
) : null}
</div>
</div>
);
}
}