aboutsummaryrefslogtreecommitdiff
path: root/src/Board.js
diff options
context:
space:
mode:
authorLibravatar Renard 2019-09-22 00:28:21 -0300
committerLibravatar Renard 2019-09-22 00:28:21 -0300
commit4f42b5a2b35cf61d6042562195755699f9de177f (patch)
treed874b49c0aeaa1d98ad9aea978c2f417b6788806 /src/Board.js
parent8db5e7649c1d3ceba35cc52e191da1d264994f45 (diff)
downloadbai-client-4f42b5a2b35cf61d6042562195755699f9de177f.tar.gz
bai-client-4f42b5a2b35cf61d6042562195755699f9de177f.tar.xz
bai-client-4f42b5a2b35cf61d6042562195755699f9de177f.zip
Nightmode
Diffstat (limited to 'src/Board.js')
-rw-r--r--src/Board.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/Board.js b/src/Board.js
index 34e3f52..5dd00a2 100644
--- a/src/Board.js
+++ b/src/Board.js
@@ -109,10 +109,11 @@ class Board extends Component {
return board.dir === this.props.dir;
});
document.title = currentBoard.name + " - B.a.I";
+ const nightMode = this.props.nightMode;
return (
<React.Fragment>
- <Breadcrumb>
+ <Breadcrumb className={nightMode ? "inverted" : ""}>
<Breadcrumb.Section link as={Link} to="/">
Home
</Breadcrumb.Section>
@@ -121,7 +122,7 @@ class Board extends Component {
</Breadcrumb>
{threadList.map(thread => (
<Segment.Group key={"seg_" + thread.timestamp + thread.id}>
- <Header as="h3" attached>
+ <Header as="h3" attached inverted={nightMode}>
<Link to={`/${this.props.dir}/read/${thread.id}`}>
{thread.subject}
</Link>
@@ -129,14 +130,15 @@ class Board extends Component {
{thread.total_replies} respuestas
</Header.Subheader>
</Header>
- <Segment attached>
- <Comment.Group>
+ <Segment attached inverted={nightMode}>
+ <Comment.Group className={nightMode ? "inverted" : ""}>
<Post
index={0}
post={thread}
locked={thread.locked}
threadId={thread.id}
currentBoard={currentBoard}
+ nightMode={nightMode}
/>
<Divider />
{thread.replies.map((reply, index, replies) => (
@@ -147,6 +149,7 @@ class Board extends Component {
threadId={thread.id}
key={"reply_" + reply.id}
currentBoard={currentBoard}
+ nightMode={nightMode}
/>
))}
</Comment.Group>