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
|
import React, { useContext, useEffect, useState } from "react";
import { SessionInfo } from "../../../schema/SessionInfo";
import { GUIClientContext } from "../App";
import { useSelector } from "react-redux";
import { RootStore } from "../redux/store";
import { useNavigate } from "react-router-dom";
import { secondaryDark, vscBackground } from "../components";
import styled from "styled-components";
import { ArrowLeftIcon } from "@heroicons/react/24/outline";
const Tr = styled.tr`
&:hover {
background-color: ${secondaryDark};
}
`;
const parseDate = (date: string): Date => {
let dateObj = new Date(date);
if (isNaN(dateObj.getTime())) {
dateObj = new Date(parseInt(date) * 1000);
}
return dateObj;
};
const TdDiv = styled.div`
cursor: pointer;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid ${secondaryDark};
`;
function History() {
const navigate = useNavigate();
const [sessions, setSessions] = useState<SessionInfo[]>([]);
const client = useContext(GUIClientContext);
const apiUrl = useSelector((state: RootStore) => state.config.apiUrl);
useEffect(() => {
const fetchSessions = async () => {
console.log("fetching sessions from: ", apiUrl);
if (!apiUrl) {
return;
}
const response = await fetch(`${apiUrl}/sessions/list`);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const json = await response.json();
console.log(json);
setSessions(json);
};
fetchSessions();
}, [client]);
console.log(sessions.map((session) => session.date_created));
return (
<div className="w-full">
<div className="items-center flex">
<ArrowLeftIcon
width="1.4em"
height="1.4em"
onClick={() => navigate("/")}
className="inline-block ml-4 cursor-pointer"
/>
<h1 className="text-2xl font-bold m-4 inline-block">History</h1>
</div>
<table className="w-full">
<tbody>
{sessions
.sort(
(a, b) =>
parseDate(b.date_created).getTime() -
parseDate(a.date_created).getTime()
)
.map((session, index) => (
<Tr key={index}>
<td>
<TdDiv
onClick={() => {
client?.loadSession(session.session_id);
navigate("/");
}}
>
<div className="text-lg">{session.title}</div>
<div className="text-gray-400">
{parseDate(session.date_created).toLocaleString("en-US", {
weekday: "short",
year: "numeric",
month: "long",
day: "numeric",
hour: "numeric",
minute: "numeric",
})}
</div>
</TdDiv>
</td>
</Tr>
))}
</tbody>
</table>
<br />
<i className="text-sm ml-4">
All session data is saved in ~/.continue/sessions
</i>
</div>
);
}
export default History;
|