-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStory.js
83 lines (70 loc) · 1.93 KB
/
Story.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import React from 'react';
import moment from 'moment';
class Story extends React.Component {
constructor(){
super();
// set initial state
this.state = {
story: {}
};
}
componentDidMount() {
this.fetchStory();
}
// fetch story details
fetchStory() {
fetch(`https://hacker-news.firebaseio.com/v0/item/${this.props.post}.json`)
.then(response => response.json()
.then(data => this.setState({ story: data })));
}
// parse the full url and only return the domain
parseDomain(url) {
if(url) {
if (url.indexOf("://") > -1) {
url = url.split('/')[2];
} else {
url = url.split('/')[0];
}
}
return url;
}
// time comparison in minutes to determine display
parseTimestamp(timestamp) {
let now = moment().unix(),
time = Math.trunc((now - timestamp)/60),
postTime = '';
if (time > 2880) {
postTime = Math.trunc(time / 24) + ' days';
} else if (time > 1440) {
postTime = '1 day';
} else if (time > 120) {
postTime = Math.trunc(time / 60) + ' hours';
} else if (time > 60 && time < 120) {
postTime = '1 hour';
} else if (time < 60 && time > 1) {
postTime = Math.trunc(time) + ' minutes';
} else {
postTime = 'less than 1 minute';
}
return postTime;
}
render() {
const details = this.state.story,
domain = this.parseDomain(details.url),
timestamp = this.parseTimestamp(details.time);
return (
<li>
<span className="arrow">▲</span>
<span className="article-title">{details.title}</span>
<span className="article-domain">({domain})</span>
<span className="article-details">
{details.score} points by {details.by} {timestamp} ago | hide | {details.descendants} comments
</span>
</li>
)
}
}
Story.propTypes = {
post: React.PropTypes.object.isRequired
}
export default Story;