You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.4 KiB
100 lines
3.4 KiB
10 years ago
|
|
||
|
var ReactBootstrap = require('react-bootstrap')
|
||
|
, Grid = ReactBootstrap.Grid
|
||
|
, Col = ReactBootstrap.Col
|
||
|
, Row = ReactBootstrap.Row
|
||
|
, ListGroupItem = ReactBootstrap.ListGroupItem
|
||
|
|
||
|
var React = require('react');
|
||
|
|
||
|
var SetIntervalMixin = require("./SetIntervalMixin.js");
|
||
|
|
||
|
module.exports = Post = React.createClass({
|
||
|
mixins: [SetIntervalMixin],
|
||
|
getInitialState: function() {
|
||
|
return {
|
||
|
avatar: "img/genericPerson.png",
|
||
|
fullname: "",
|
||
|
retwistingUser: this.props.post.retwistingUser,
|
||
|
timeAgo: ""
|
||
|
};
|
||
|
},
|
||
|
updateTimeAgo: function() {
|
||
|
var secondsAgo = Date.now()/1000-this.props.post.timestamp;
|
||
|
|
||
|
var newTimeAgo = "";
|
||
|
|
||
|
if (secondsAgo<45) {newTimeAgo="1m"}
|
||
|
else if (secondsAgo<45*60) {newTimeAgo=Math.round(secondsAgo/60)+"m"}
|
||
|
else if (secondsAgo<45*60*60) {newTimeAgo=Math.round(secondsAgo/60/60)+"h"}
|
||
|
else if (secondsAgo<60*60*60*18) {newTimeAgo=Math.round(secondsAgo/60/60/60)+"d"}
|
||
|
|
||
|
this.setState({timeAgo: newTimeAgo});
|
||
|
|
||
|
},
|
||
|
componentDidMount: function () {
|
||
|
var thisComponent = this;
|
||
|
|
||
|
//console.log(this.props.post.username+":post"+this.props.post.id);
|
||
|
Twister.getUser(this.props.post.username).doAvatar(function(avatar){
|
||
|
thisComponent.setState({avatar: avatar.getUrl()});
|
||
|
});
|
||
|
Twister.getUser(this.props.post.username).doProfile(function(profile){
|
||
|
thisComponent.setState({fullname: profile.getField("fullname")});
|
||
|
});
|
||
|
|
||
|
if (this.props.post.isRetwist) {
|
||
|
|
||
|
Twister.getUser(this.props.post.retwistingUser).doProfile(function(profile){
|
||
|
thisComponent.setState({retwistingUser: profile.getField("fullname")});
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
this.updateTimeAgo();
|
||
|
|
||
|
this.setInterval(this.updateTimeAgo,60000);
|
||
|
},
|
||
|
render: function() {
|
||
|
var post = this.props.post;
|
||
|
return (
|
||
|
<ListGroupItem>
|
||
|
<Grid fill>
|
||
|
<Row>
|
||
|
<Col xs={2}><img className="img-responsive" src={this.state.avatar}/></Col>
|
||
|
<Col xs={9}>
|
||
|
<strong>{this.state.fullname}</strong>
|
||
|
{post.content}
|
||
|
</Col>
|
||
|
<Col xs={1}><p className="text-right">{this.state.timeAgo}</p></Col>
|
||
|
</Row>
|
||
|
<Row>
|
||
|
<Col xs={4}>
|
||
|
{post.isRetwist && <small><span className="glyphicon glyphicon-retweet" aria-hidden="true"></span> <em> retwisted by {this.state.retwistingUser}</em></small>
|
||
|
}
|
||
|
</Col>
|
||
|
<Col xs={8}><p className="text-right"><small><em>test</em></small></p></Col>
|
||
|
</Row>
|
||
|
</Grid>
|
||
|
|
||
|
</ListGroupItem>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
/*
|
||
|
<div className="post-avatar">
|
||
|
<img src={this.state.avatar}/>
|
||
|
</div>
|
||
|
<div className="post-bulk">
|
||
|
<div className="post-username">
|
||
|
<span className="post-fullname">{this.state.fullname} </span>
|
||
|
@{post.username} - {post.id}
|
||
|
|
||
|
</div>
|
||
|
<div className="post-timestamp">{post.timestamp}</div>
|
||
|
<div className="post-content">{post.content}</div>
|
||
|
</div>
|
||
|
<hr/>
|
||
|
|
||
|
*/
|