blob: 1226190e0f8acc3aafadf0b21d5a49526abb72e7 (
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
92
93
94
95
96
97
98
99
100
101
|
import React, { Component } from "react";
import { render } from "react-dom";
import { Router, Link } from "@reach/router";
import "fomantic-ui-css/semantic.css";
import "./App.css";
import { Dropdown, Menu, Icon, Loader, Container } from "semantic-ui-react";
import Home from "./Home";
import Thread from "./Thread";
import Board from "./Board";
import NotFound from "./NotFound";
class App extends Component {
constructor() {
super();
this.state = {
boardList: [],
isLoaded: false
};
}
componentDidMount() {
fetch("https://bienvenidoainternet.org/cgi/api/boards")
.then(response => {
return response.json();
})
.then(resource => {
this.setState({ boardList: resource["boards"], isLoaded: true });
})
.catch(console.error);
}
render() {
if (!this.state.isLoaded) {
if (!this.state.isLoaded) {
return (
<Loader active centered="true">
Cargando ...
</Loader>
);
}
}
const { boardList } = this.state;
//const pathList = boardList.map(board => "/" + board.dir)
return (
<React.Fragment>
<Menu inverted fixed="top">
<Container>
<Menu.Item header>B.a.I</Menu.Item>
<Menu.Item as={Link} to="/">
<Icon name="home" /> Home
</Menu.Item>
<Dropdown text="BBS" className="link item">
<Dropdown.Menu>
{boardList.map(board =>
board.board_type === 1 ? (
<Dropdown.Item
key={board.dir}
as={Link}
to={`/board/${board.dir}`}
>
/{board.dir}/ - {board.name}
</Dropdown.Item>
) : null
)}
</Dropdown.Menu>
</Dropdown>
<Dropdown text="Imageboard" className="link item">
<Dropdown.Menu>
{boardList.map(board =>
board.board_type === 0 ? (
<Dropdown.Item
key={board.dir}
as={Link}
to={`/board/${board.dir}`}
>
/{board.dir}/ - {board.name}
</Dropdown.Item>
) : null
)}
</Dropdown.Menu>
</Dropdown>
</Container>
</Menu>
<Container className="main">
<Router>
<Home boardList={this.state.boardList} path="/" />
<Thread boardList={this.state.boardList} path="/:dir/read/:id">
<Thread path=":active" />
</Thread>
<Board path="/board/:dir" />
<NotFound default />
</Router>
</Container>
</React.Fragment>
);
}
}
render(<App />, document.getElementById("root"));
|