From f9a84bd2d65b3142cbcfcdd8e1e9394c9d4b458e Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Sun, 24 Sep 2023 01:00:42 -0700 Subject: feat: :lipstick: more ui improvements --- extension/react-app/src/pages/history.tsx | 124 ++++++++++++++++++++---------- 1 file changed, 84 insertions(+), 40 deletions(-) (limited to 'extension/react-app/src/pages/history.tsx') diff --git a/extension/react-app/src/pages/history.tsx b/extension/react-app/src/pages/history.tsx index b6de0520..b4f80d70 100644 --- a/extension/react-app/src/pages/history.tsx +++ b/extension/react-app/src/pages/history.tsx @@ -26,6 +26,17 @@ const parseDate = (date: string): Date => { return dateObj; }; +const SectionHeader = styled.tr` + padding: 4px; + padding-left: 16px; + padding-right: 16px; + background-color: ${secondaryDark}; + width: 100%; + font-weight: bold; + text-align: center; + margin: 0; +`; + const TdDiv = styled.div` cursor: pointer; padding-left: 1rem; @@ -44,6 +55,9 @@ function History() { const navigate = useNavigate(); const dispatch = useDispatch(); const [sessions, setSessions] = useState([]); + const [filteredAndSortedSessions, setFilteredAndSortedSessions] = useState< + SessionInfo[] + >([]); const client = useContext(GUIClientContext); const apiUrl = useSelector((state: RootStore) => state.config.apiUrl); const workspacePaths = useSelector( @@ -69,6 +83,32 @@ function History() { fetchSessions(); }, [client]); + useEffect(() => { + setFilteredAndSortedSessions( + sessions + .filter((session) => { + if ( + !filteringByWorkspace || + typeof workspacePaths === "undefined" || + typeof session.workspace_directory === "undefined" + ) { + return true; + } + return workspacePaths.includes(session.workspace_directory); + }) + .sort( + (a, b) => + parseDate(b.date_created).getTime() - + parseDate(a.date_created).getTime() + ) + ); + }, [filteringByWorkspace, sessions]); + + const yesterday = new Date(Date.now() - 1000 * 60 * 60 * 24); + const lastWeek = new Date(Date.now() - 1000 * 60 * 60 * 24 * 7); + const lastMonth = new Date(Date.now() - 1000 * 60 * 60 * 24 * 30); + const earlier = new Date(0); + return (
@@ -116,52 +156,56 @@ function History() {
- {sessions - .filter((session) => { - if ( - !filteringByWorkspace || - typeof workspacePaths === "undefined" || - typeof session.workspace_directory === "undefined" - ) { - return true; - } - return workspacePaths.includes(session.workspace_directory); - }) - .sort( - (a, b) => - parseDate(b.date_created).getTime() - - parseDate(a.date_created).getTime() - ) - .map((session, index) => ( - - + - - ))} + })} + {" | "} + {lastPartOfPath(session.workspace_directory || "")}/ + + + + + + ); + })}
- { - client?.loadSession(session.session_id); - dispatch(temporarilyClearSession()); - navigate("/"); - }} - > -
{session.title}
-
- {parseDate(session.date_created).toLocaleString( - "en-US", - { + {filteredAndSortedSessions.map((session, index) => { + const prevDate = + index > 0 + ? parseDate(filteredAndSortedSessions[index - 1].date_created) + : earlier; + const date = parseDate(session.date_created); + return ( + <> + {index === 0 && date > yesterday && ( + Today + )} + {date < yesterday && + date > lastWeek && + prevDate > yesterday && ( + This Week + )} + {date < lastWeek && + date > lastMonth && + prevDate > lastWeek && ( + This Month + )} + +
+ { + client?.loadSession(session.session_id); + dispatch(temporarilyClearSession(true)); + navigate("/"); + }} + > +
{session.title}
+
+ {date.toLocaleString("en-US", { year: "2-digit", month: "2-digit", day: "2-digit", hour: "numeric", minute: "2-digit", hour12: true, - } - )} - {" | "} - {lastPartOfPath(session.workspace_directory || "")}/ -
-
-

-- cgit v1.2.3-70-g09d2