在useEffect,notifications是从数据库中获取的:
useEffect(() => {
if (props.loading != true) {
props.fetchNotifications(currentUserId, submissionId)
}
}, [])
在返回语句的某处,我有以下代码在通知列表上应用过滤器并检查剩余列表的长度是否大于零。然后,如果是,我使用相同的过滤器语句来计算这次显示的计数。但是,我进行了两次计算,创建了冗余代码。我想知道在 React 中是否有解决这个问题的方法。
props.notifications &&
<div className="col-sm-4">
<div className="mb-3">
<h5 className="text-primary bg-light pl-1 pt-2 pb-2">
<i className="fa fa-bell-o"></i> Notifications
<span className="badge badge-pill badge-primary small ml-2">
{
Object.keys(props.notifications)
.filter(function (id) {
return props.notifications[id].isDiscussionType == false &&
props.notifications[id].isRead == false
}).length > 0 &&
<span>{
Object.keys(props.notifications)
.filter(function (id) {
return props.notifications[id].isDiscussionType == false &&
props.notifications[id].isRead == false
}).length} new
</span>
}
</span>
</h5>
<NotificationList isDiscussionType={false} />
</div>
有只小跳蛙
温温酱
相关分类