import React, { Component } from 'react'; import { Redirect } from 'react-router'; import { BrowserRouter as Router, Route, Link, Switch } from "react-router-dom"; import PropTypes from 'prop-types'; import classNames from 'classnames' class ForumsNavTab extends Component { constructor(props) { super(props) this.state = { } } onNavClick(active) { // TODO 为什么事件发不过去 // https://github.com/facebook/react/issues/3249#issuecomment-177750141 // window.$(window).trigger('setSearchValue', '', true); this.props.setSearchValue('') if (!active) { this.props.initForumState({ selectedHotLabelIndex: -1, }) } } render() { const { match, history, currentPage } = this.props const techSharePath = `/forums/categories/5` const guidePath = `/forums/categories/3` const guidePaths = `/forums/categories/16` const hottestPath = `/forums/categories/all?order=hottest` // ?order=hottest const newestPath = `/forums/categories/all?order=newest` // ?order=newest const shixunDiscussPath = `/forums/categories/shixun_discuss` const locationPath = history.location.pathname + history.location.search /*
{/* 技术分享 219 */} this.onNavClick(locationPath.indexOf('order=newest') !== -1)} > 最新回复 this.onNavClick(locationPath.indexOf('order=hottest') !== -1)} > 热门话题 this.onNavClick(locationPath.indexOf('shixun_discuss') !== -1)} > 实训回复 this.onNavClick(locationPath.indexOf(techSharePath) === 0)} > 技术分享 this.onNavClick(locationPath.indexOf(guidePath) === 0)} > 操作指南 this.onNavClick(locationPath.indexOf(guidePaths) === 0)} > 通知公告 {/* 实训交流 1391 */}