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(
{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()}