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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
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,
Segment
} from "semantic-ui-react";
import Home from "./Home";
import Thread from "./Thread";
import Board from "./Board";
import NotFound from "./NotFound";
import ThreadList from "./ThreadList";
import FAQ from "./FAQ";
class App extends Component {
constructor() {
super();
this.state = {
boardList: [],
isLoaded: false,
nightMode: false
};
this.toggleTheme = this.toggleTheme.bind(this);
}
componentDidMount() {
fetch("https://bienvenidoainternet.org/cgi/api/boardsExtra")
.then(response => {
return response.json();
})
.then(resource => {
this.setState({ boardList: resource["boards"], isLoaded: true });
});
let _nightMode = localStorage.getItem("nightMode");
if (_nightMode === null) {
localStorage.setItem("nightMode", false);
} else {
this.setState({ nightMode: JSON.parse(_nightMode) });
}
}
componentDidUpdate() {
if (this.state.nightMode) {
document.body.style.backgroundColor = "#313233";
} else {
document.body.style.backgroundColor = "#FFFFFF";
}
}
toggleTheme() {
this.setState({ nightMode: !this.state.nightMode }, () => {
localStorage.setItem("nightMode", this.state.nightMode);
});
}
render() {
const { boardList, nightMode, isLoaded } = this.state;
if (!isLoaded) {
return (
<Loader active centered="true">
Cargando ...
</Loader>
);
}
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>
<Menu.Item as={Link} to="/faq">
<Icon name="help" /> FAQ
</Menu.Item>
<Menu.Menu position="right">
<Menu.Item as="a" onClick={this.toggleTheme}>
{nightMode ? <Icon name="sun" /> : <Icon name="moon" />}
</Menu.Item>
</Menu.Menu>
</Container>
</Menu>
<Container className="main">
<Router>
<Home boardList={boardList} path="/" nightMode={nightMode} />
<Thread
boardList={boardList}
path="/:dir/read/:id"
nightMode={nightMode}
>
<Thread path=":active" />
</Thread>
<Board
boardList={boardList}
path="/board/:dir"
nightMode={nightMode}
/>
<ThreadList
boardList={boardList}
path="/list/:dir"
nightMode={nightMode}
/>
<FAQ path="/faq" nightMode={nightMode} />
<NotFound default />
</Router>
</Container>
<Segment vertical textAlign="center" className="footer">
Bievenido a Internet 2010-2019
<br />
<Icon name="github" />
<a href="https://github.com/Renard1911/bai-client">bai-client</a>
{" + "}
<a href="https://git.bienvenidoainternet.org/bai/weabot/">weabot</a>
</Segment>
</React.Fragment>
);
}
}
render(<App />, document.getElementById("root"));
|