From fb7f4b112f623716f9b2c4a36939f0e3b65f1403 Mon Sep 17 00:00:00 2001
From: Renard
Date: Sun, 29 Sep 2019 21:14:09 -0300
Subject: Nightmode threadList
---
src/ThreadList.js | 74 ++++++++++++++++++++++++++++++-------------------------
1 file changed, 40 insertions(+), 34 deletions(-)
(limited to 'src/ThreadList.js')
diff --git a/src/ThreadList.js b/src/ThreadList.js
index fe597c3..56f9ab2 100644
--- a/src/ThreadList.js
+++ b/src/ThreadList.js
@@ -1,5 +1,5 @@
import React, { Component } from "react";
-import { Loader, Icon, Item } from "semantic-ui-react";
+import { Loader, Icon, Item, Segment } from "semantic-ui-react";
import { Link } from "@reach/router";
import Moment from "react-moment";
import "moment/locale/es";
@@ -24,7 +24,7 @@ class ThreadList extends Component {
}
render() {
- const { dir, boardList } = this.props;
+ const { dir, boardList, nightMode } = this.props;
const { threadList, isLoading } = this.state;
const currentBoard = boardList.find(board => {
@@ -44,38 +44,44 @@ class ThreadList extends Component {
);
return (
-
- {threadList.map((thread, index) => {
- return (
- -
- {currentBoard.allow_images === 1 && (
-
- )}
-
-
- {thread.subject}
-
-
-
-
-
-
-
- {thread.message.replace(stripHtml, "").substring(0, 200) +
- " ..."}
-
-
-
- {thread.total_replies} Respuestas
-
-
-
- );
- })}
-
+
+
+ {threadList.map((thread, index) => {
+ return (
+ -
+ {currentBoard.allow_images === 1 && (
+
+ )}
+
+
+ {thread.subject}
+
+
+
+
+
+
+
+ {thread.message.replace(stripHtml, "").substring(0, 200) +
+ " ..."}
+
+
+
+ {thread.total_replies} Respuestas
+
+
+
+ );
+ })}
+
+
);
}
}
--
cgit v1.2.1-18-gbd029