aboutsummaryrefslogtreecommitdiff
path: root/src/ThreadList.js
blob: 60691574aefa10664a76602ef3317d6c5f4e226b (plain) (blame)
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
import React, { Component } from "react";
import { Loader, Icon, Item, Segment } 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, nightMode } = 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 (
      <Segment inverted={nightMode}>
        <Item.Group divided>
          {threadList.map((thread, index) => {
            return (
              <Item key={index} className={nightMode ? "inverted" : ""}>
                {currentBoard.allow_images === 1 && thread.thumb !== "" && (
                  <Item.Image
                    size="tiny"
                    src={`https://bienvenidoainternet.org/${dir}/thumb/${thread.thumb}`}
                  />
                )}
                <Item.Content verticalAlign="middle">
                  <Item.Header
                    as={Link}
                    to={`/${dir}/read/${thread.id}`}
                    className={
                      nightMode ? "threadTitle inverted" : "threadTitle"
                    }
                  >
                    {thread.subject}
                  </Item.Header>
                  <Item.Meta className={nightMode && "inverted"}>
                    <span className="date">
                      <Moment fromNow unix date={thread.timestamp} />
                    </span>
                  </Item.Meta>
                  <Item.Description className={nightMode && "inverted"}>
                    {thread.message.replace(stripHtml, "").substring(0, 200) +
                      " ..."}
                  </Item.Description>
                  <Item.Extra className={nightMode && "inverted"}>
                    <Icon name="reply" />
                    {thread.total_replies} Respuestas
                  </Item.Extra>
                </Item.Content>
              </Item>
            );
          })}
        </Item.Group>
      </Segment>
    );
  }
}

export default ThreadList;