optimize time display

This commit is contained in:
thuhole
2020-07-17 11:38:24 +08:00
parent 31e62127ee
commit fc80a065a0
3 changed files with 5 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ class Reply extends PureComponent {
{this.props.info.tag} {this.props.info.tag}
</span> </span>
} }
<Time stamp={this.props.info.timestamp} /> <Time stamp={this.props.info.timestamp} short={false} />
</div> </div>
<div className="box-content"> <div className="box-content">
<HighlightedMarkdown author={author} <HighlightedMarkdown author={author}
@@ -167,7 +167,7 @@ class FlowItem extends PureComponent {
{props.info.tag} {props.info.tag}
</span> </span>
} }
<Time stamp={props.info.timestamp} /> <Time stamp={props.info.timestamp} short={!props.img_clickable} />
</div> </div>
<div className="box-content"> <div className="box-content">
<HighlightedMarkdown text={props.fold ? '_单击以查看树洞_' : props.info.text} color_picker={props.color_picker} show_pid={props.show_pid} /> <HighlightedMarkdown text={props.fold ? '_单击以查看树洞_' : props.info.text} color_picker={props.color_picker} show_pid={props.show_pid} />
@@ -190,7 +190,7 @@ class FlowItem extends PureComponent {
{/*{props.info.type==='audio' && <AudioWidget src={AUDIO_BASE+props.info.url} />}*/} {/*{props.info.type==='audio' && <AudioWidget src={AUDIO_BASE+props.info.url} />}*/}
</div> </div>
{!!(props.attention && props.info.variant.latest_reply) && {!!(props.attention && props.info.variant.latest_reply) &&
<p className="box-footer">最新回复 <Time stamp={props.info.variant.latest_reply} /></p> <p className="box-footer">最新回复 <Time stamp={props.info.variant.latest_reply} short={false} /></p>
} }
</div> </div>
</div> </div>

View File

@@ -51,7 +51,7 @@ export class MessageViewer extends PureComponent {
return this.state.msg.map((msg)=>( return this.state.msg.map((msg)=>(
<div className="box"> <div className="box">
<div className="box-header"> <div className="box-header">
<Time stamp={msg.timestamp} /> <Time stamp={msg.timestamp} short={false} />
&nbsp; <b>{msg.title}</b> &nbsp; <b>{msg.title}</b>
</div> </div>
<div className="box-content"> <div className="box-content">