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 Loading from '../../Loading' import Loadable from 'react-loadable'; import classNames from 'classnames' import MemoTechShare from './MemoTechShare' // import MemoGuide from './MemoGuide' // import MemoNewest from './MemoNewest' // import MemoHottest from './MemoHottest' import MemoDetail from './MemoDetail' import MemoNew from './MemoNew' import MemoMyPublish from './MemoMyPublish' import MemoShixun from './shixun/MemoShixun' import { TPMIndexHOC } from '../tpm/TPMIndexHOC' import RightMyPublish from './RightMyPublish' import UserSection from './UserSection' import RightHotLabel from './RightHotLabel' import RightHotQuestion from './RightHotQuestion' import RightMemoLabel from './RightMemoLabel' import RecommendShixun from './RecommendShixun' import ForumsNavTab from './ForumsNavTab' import axios from 'axios' import 'rc-select/assets/index.css'; import './ForumsIndex.css' import './RightSection.css' import { SnackbarHOC, getUrl } from 'educoder' import { CNotificationHOC } from '../courses/common/CNotificationHOC' let _url_origin = getUrl() const $ = window.$ $('head').append( $('') .attr('href', `${_url_origin}/stylesheets/css/edu-admin.css?6`) ); $('head').append( $('') .attr('href', `${_url_origin}/stylesheets/css/edu-forum.css?1525440977`) ); $('head').append( $('') .attr('href', `${_url_origin}/stylesheets/educoder/magic-check.css?1525440977`) ); setTimeout(()=>{ // 附件上传滚动条 \public\stylesheets\jquery\jquery-ui-1.9.2.css $('head').append( $('') .attr('href', `${_url_origin}/stylesheets/jquery/jquery-ui-1.9.2.css`) ); }, 1000) class ForumsIndex extends Component { constructor(props) { super(props) this.state = { searchValue: '', enterKeyFlag: false, showSearchValue: false, selectedHotLabelIndex: -1, } } setSearchValue = (searchValue, enterKeyFlag) => { if (enterKeyFlag === true) { this.setState({ selectedHotLabelIndex: -1 }) } this.setState({ searchValue, showSearchValue: (enterKeyFlag && searchValue) ? true : false, enterKeyFlag: enterKeyFlag === true ? !this.state.enterKeyFlag : this.state.enterKeyFlag }) } setHotLabelIndex = (index, callback) => { const newState = { selectedHotLabelIndex: index, } if (index != -1) { newState.searchValue = '' newState.showSearchValue = false } this.setState({ ...newState }, callback) } initForumState(data) { this.setState({...data}) } componentDidMount() { window.document.title = '交流问答' } componentWillReceiveProps(newProps, newContext) { } render() { const { match, history, resLoading } = this.props const { memo } = this.state; const techSharePath = `${match.path}/categories/:memoType` const guidePath = `${match.path}/categories/:memoType` const hottestPath = `${match.path}/categories/:memoType` // ?order=hottest const newestPath = `${match.path}/categories/:memoType` // ?order=newest const shixunDiscussPath = `/forums/categories/shixun_discuss` const locationPath = history.location.pathname const isWidth100 = (locationPath.indexOf('forums/new') !== -1 || locationPath.indexOf('/edit') !== -1) ? true : false const pathArray = locationPath.split('/'); const isMemoDetail = (!isWidth100 && pathArray.length === 3 && !isNaN(parseInt(pathArray[2])) ) ? true : false const isGuide = locationPath.indexOf('/forums/categories/3') !== -1 return (
{/* 左边栏 component={TechShare} */}
(this.initForumState(data)} setSearchValue={this.setSearchValue} setHotLabelIndex={this.setHotLabelIndex} />) }> (this.initForumState(data)} setSearchValue={this.setSearchValue} setHotLabelIndex={this.setHotLabelIndex} />) }> (this.initForumState(data)} setSearchValue={this.setSearchValue} setHotLabelIndex={this.setHotLabelIndex} />) }> {/* (this.initForumState(data)} />) }> (this.initForumState(data)} />) }> (this.initForumState(data)} />) }> */} {/* :forumTypeId/ */} (this.initForumState(data)} />) }> (this.initForumState(data)} />) }> (this.initForumState(data)} />) }>
{/* 右边栏 */} { !isWidth100 &&
{isMemoDetail ? this.initForumState(data)} > {/*todo 新增RightMemoLabel 和 推荐实训RecommendShixun */} { memo && memo.tag && } : { !isGuide && } }
}
); } } export default CNotificationHOC() (SnackbarHOC() ( TPMIndexHOC ( ForumsIndex ) )); /* : 列表所有: http://localhost:3000/forums/categories/all : 详情: : http://localhost:3000/forums/5 : http://localhost:3000/forums/new : http://localhost:3000/forums/categories/my_published */