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
84
85
86
87
88
89
90
91
92
93
94
95
96
|
var React = require('react');
var MiddlePanelStore = require('../stores/MiddlePanelStore');
var MiddlePanelActions = require('../actions/MiddlePanelActions');
var TableLine = React.createClass({
propTypes: {article_id: React.PropTypes.number.isRequired,
feed_title: React.PropTypes.string.isRequired,
icon_url: React.PropTypes.string,
title: React.PropTypes.string.isRequired,
date: React.PropTypes.string.isRequired,
read: React.PropTypes.bool.isRequired,
liked: React.PropTypes.bool.isRequired,
},
getInitialState: function() {
return {article_id: this.props.article_id,
title: this.props.title,
icon_url: this.props.icon_url,
feed_title: this.props.feed_title,
date: this.props.date,
read: this.props.read,
liked: this.props.liked,
};
},
render: function() {
var read = this.state.read ? 'r' : '';
var liked = this.state.liked ? 'l' : '';
var icon = undefined;
if(this.state.icon_url){
icon = (<img width="16px" src={this.state.icon_url} />);
} else {
icon = (<span className="glyphicon glyphicon-ban-circle" />);
}
return (
<tr>
<td>{icon}{liked}</td>
<td>
<a href={'/redirect/' + this.state.article_id}>
{this.state.feed_title}
</a>
</td>
<td>
<a href={'/article/' + this.state.article_id}>
{this.state.title}
</a>
</td>
<td>{this.state.date}</td>
</tr>
);
},
});
var TableBody = React.createClass({
getInitialState: function() {
return {articles: [],
};
},
render: function() {
return (<div className="table-responsive">
<table className="table table-striped strict-table">
<tbody>
{this.state.articles.map(function(article){
return (<TableLine key={"article" + article.article_id}
title={article.title}
icon_url={article.icon_url}
read={article.read}
liked={article.liked}
date={article.date}
article_id={article.article_id}
feed_title={article.feed_title} />);})}
</tbody>
</table>
</div>
);
},
componentDidMount: function() {
MiddlePanelActions.reload();
MiddlePanelStore.addChangeListener(this._onChange);
},
componentWillUnmount: function() {
MiddlePanelStore.removeChangeListener(this._onChange);
},
_onChange: function() {
this.setState({articles: MiddlePanelStore.getArticles()});
},
});
var MiddlePanel = React.createClass({
render: function() {
return (<div className="col-md-offset-2 col-md-10 main">
<TableBody />
</div>
);
},
});
module.exports = MiddlePanel;
|