forked from Gitlink/forgeplus-react
33 lines
908 B
JavaScript
33 lines
908 B
JavaScript
import React, { PureComponent } from 'react';
|
|
|
|
class Parse extends PureComponent{
|
|
|
|
render(){
|
|
let { judge , num , clickEvent ,current_user} = this.props;
|
|
|
|
const info = (
|
|
current_user? (judge ?
|
|
<a className={`forumParse`} onClick={clickEvent}>
|
|
<i className="iconfont icon-dianzan font-24" style={{height:"30px",lineHeight:"40px"}}></i>
|
|
<span>{num}</span>
|
|
</a>
|
|
:
|
|
<span className={`forumParse parsed`} >
|
|
<i className="iconfont icon-dianzan font-24" style={{height:"30px",lineHeight:"40px"}}></i>
|
|
<span>{num}</span>
|
|
</span>
|
|
):
|
|
<a className={`forumParse`} href="/login">
|
|
<i className="iconfont icon-dianzan font-24" style={{height:"30px",lineHeight:"40px"}}></i>
|
|
<span>{num}</span>
|
|
</a>
|
|
)
|
|
return(
|
|
<React.Fragment>
|
|
{ info }
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Parse; |