import React,{ Component } from "react"; import {Tooltip} from 'antd' import moment from 'moment' import { getUrl, WordsBtn } from 'educoder' class BoardsListItem extends Component{ constructor(props){ super(props); this.state = { } } onTitleClick = (discussMessage) => { if(this.props.checkIfLogin()===false){ this.props.showLoginDialog() return } // if(this.props.checkIfProfileCompleted()===false){ // this.setState({ // AccountProfiletype:true // }) // return // } // if(this.props.checkIfProfessionalCertification()===false){ // this.props.showProfileCompleteDialog() // return // } const isAdminOrStudent = this.props.isAdminOrStudent(); if (!isAdminOrStudent && discussMessage.is_public == false) { // 没有权限访问 return; } const cid = this.props.match.params.coursesId const board_id = this.props.match.params.boardId this.props.toDetailPage(cid, board_id, discussMessage.id) } render(){ let { addGroup } = this.state; const isAdmin = this.props.isAdmin() const isAdminOrStudent = this.props.isAdminOrStudent() const { checkBox, discussMessage, onSticky, onItemClick, current_user } = this.props; if (!discussMessage || !discussMessage.author) { return ''; } let canNotLink = !isAdminOrStudent && discussMessage.is_public == false return(
{ checkBox } {/* /images/avatars/User/1?1529221779 */} 1?1529221779
onItemClick(discussMessage)}>
{canNotLink?{discussMessage.subject}: {} : () => this.onTitleClick(discussMessage)} >{discussMessage.subject}} { !!discussMessage.sticky && 置顶 } { discussMessage.is_public == false ? ( ) : "" }

{discussMessage.author.name} { discussMessage.total_replies_count != 0 && {discussMessage.total_replies_count} 回复 } { discussMessage.praises_count != 0 && {discussMessage.praises_count} 点赞 } { discussMessage.visits != 0 && {discussMessage.visits} 浏览 } {moment(discussMessage.created_on).fromNow()}

{(isAdmin || discussMessage.author.login == current_user.login) && { this.props.toEditPage(this.props.match.params.coursesId, this.props.match.params.boardId, discussMessage.id )} }>编辑 } { isAdmin && { debugger; onSticky(discussMessage); e.cancelBubble = true; e.stopPropagation();}}> { discussMessage.sticky ? '取消置顶' : '置顶' } }
{/* { (isAdmin || discussMessage.author.login == current_user.login) &&
} */}
) } } export default BoardsListItem;