diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-04-17 14:06:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-17 14:06:05 +0100 |
| commit | cb19925011d889c513e1bbedc446e399597e38a0 (patch) | |
| tree | 7ad9e42013e15957805f2cdf563ce8b3e0c770f5 /ui/src/pages/Home.tsx | |
| parent | chore(deps): bump debian (#1947) (diff) | |
| download | atuin-cb19925011d889c513e1bbedc446e399597e38a0.zip | |
feat(gui): work on home page, sort state (#1956)
1. Start on a home page, can sort onboarding/etc from there
2. Introduce zustand for state management. It's nice!
Did a production build and clicked around for a while. Memory usage
seems nice and chill.
Diffstat (limited to 'ui/src/pages/Home.tsx')
| -rw-r--r-- | ui/src/pages/Home.tsx | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/ui/src/pages/Home.tsx b/ui/src/pages/Home.tsx new file mode 100644 index 00000000..c0f8fbc5 --- /dev/null +++ b/ui/src/pages/Home.tsx @@ -0,0 +1,84 @@ +import { useEffect } from "react"; +import { formatRelative } from "date-fns"; + +import { useStore } from "@/state/store"; + +function Stats({ stats }: any) { + return ( + <div> + <dl className="mt-5 grid grid-cols-1 gap-5 sm:grid-cols-3"> + {stats.map((item: any) => ( + <div + key={item.name} + className="overflow-hidden rounded-lg bg-white px-4 py-5 shadow sm:p-6" + > + <dt className="truncate text-sm font-medium text-gray-500"> + {item.name} + </dt> + <dd className="mt-1 text-3xl font-semibold tracking-tight text-gray-900"> + {item.stat} + </dd> + </div> + ))} + </dl> + </div> + ); +} + +function Header({ name }: any) { + let greeting = name && name.length > 0 ? "Hey, " + name + "!" : "Hey!"; + + return ( + <div className="md:flex md:items-center md:justify-between"> + <div className="min-w-0 flex-1"> + <h2 className="text-2xl font-bold leading-7 text-gray-900 sm:truncate sm:text-3xl sm:tracking-tight"> + {greeting} + </h2> + <h3 className="text-xl leading-7 text-gray-900 pt-4"> + Welcome to Atuin. + </h3> + </div> + </div> + ); +} + +export default function Home() { + const homeInfo = useStore((state) => state.homeInfo); + const refreshHomeInfo = useStore((state) => state.refreshHomeInfo); + + useEffect(() => { + refreshHomeInfo(); + }, []); + + if (!homeInfo) { + return <div>Loading...</div>; + } + + return ( + <div className="pl-60"> + <div className="p-10"> + <Header name={"Ellie"} /> + + <div className="pt-10"> + <h2 className="text-xl font-bold">Sync</h2> + <Stats + stats={[ + { + name: "Last Sync", + stat: formatRelative(homeInfo.lastSyncTime, new Date()), + }, + { + name: "Total history records", + stat: homeInfo.historyCount.toLocaleString(), + }, + { + name: "Other records", + stat: homeInfo.recordCount - homeInfo.historyCount, + }, + ]} + /> + </div> + </div> + </div> + ); +} |
