// Copyright (c) 2015-2016 Yuya Ochiai // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import PropTypes from 'prop-types'; import {Glyphicon, Nav, NavItem} from 'react-bootstrap'; export default class TabBar extends React.Component { // need "this" render() { const tabs = this.props.teams.map((team, index) => { const sessionExpired = this.props.sessionsExpired[index]; let unreadCount = 0; if (this.props.unreadCounts[index] > 0) { unreadCount = this.props.unreadCounts[index]; } if (this.props.unreadAtActive[index]) { unreadCount += 1; } let mentionCount = 0; if (this.props.mentionCounts[index] > 0) { mentionCount = this.props.mentionCounts[index]; } if (this.props.mentionAtActiveCounts[index] > 0) { mentionCount += this.props.mentionAtActiveCounts[index]; } let badgeDiv; if (sessionExpired) { badgeDiv = (
); } else if (mentionCount !== 0) { badgeDiv = (