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
|
import React, { Component } from "react";
import { Header, Loader, List, Card, Image, Icon } from "semantic-ui-react";
import { Link } from "@reach/router";
import Moment from "react-moment";
import "moment/locale/es";
class ThreadList extends Component {
constructor(props) {
super(props);
this.state = { isLoading: true, threadList: [] };
}
componentDidMount() {
const { dir } = this.props;
fetch(
`https://bienvenidoainternet.org/cgi/api/list?dir=${dir}&replies=0&limit=30&nohtml=1`
)
.then(response => {
return response.json();
})
.then(resource => {
this.setState({ threadList: resource.threads, isLoading: false });
});
}
render() {
const { dir, boardList } = this.props;
const { threadList, isLoading } = this.state;
const currentBoard = boardList.find(board => {
return board.dir === dir;
});
if (isLoading) {
return (
<Loader active centered="true">
Cargando lista de hilos ...
</Loader>
);
}
const stripHtml = RegExp(
/(<script(\s|\S)*?<\/script>)|(<style(\s|\S)*?<\/style>)|(<!--(\s|\S)*?-->)|(<\/?(\s|\S)*?>)/g
);
return (
<Card.Group centered itemsPerRow={4} stackable>
{threadList.map((thread, index) => {
return (
<Card key={index} raised>
{currentBoard.allow_images === 1 ? (
<Image
src={`https://bienvenidoainternet.org/${dir}/thumb/${thread.thumb}`}
ui={false}
style={{ maxHeight: "250px" }}
/>
) : null}
<Card.Content>
<Card.Header as={Link} to={`/${dir}/read/${thread.id}`}>
{thread.subject}
</Card.Header>
<Card.Meta>
<span className="date">
<Moment fromNow unix date={thread.timestamp} />
</span>
</Card.Meta>
<Card.Description>
{thread.message.replace(stripHtml, "").substring(0, 200) +
" ..."}
</Card.Description>
</Card.Content>
<Card.Content extra>
<Icon name="reply" />
{thread.total_replies} Respuestas
</Card.Content>
</Card>
);
})}
</Card.Group>
);
}
}
export default ThreadList;
|