Skip to content

Commit 616b428

Browse files
feat: add vertical navigation
1 parent b6146fe commit 616b428

File tree

86 files changed

+3058
-1847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+3058
-1847
lines changed

package-lock.json

Lines changed: 49 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"@ag-grid-community/csv-export": "^32.2.0",
2424
"@ag-grid-community/react": "^32.2.0",
2525
"@ag-grid-community/styles": "^32.2.0",
26+
"@floating-ui/react": "^0.27.15",
2627
"@fontsource/inter-tight": "^5.2.5",
2728
"@fontsource/roboto-mono": "^5.1.0",
2829
"@nivo/core": "^0.88.0",
@@ -53,6 +54,7 @@
5354
"react-intersection-observer": "^9.13.1",
5455
"react-use": "^17.5.1",
5556
"react-virtualized-auto-sizer": "^1.0.24",
57+
"react-virtuoso": "^4.13.0",
5658
"uplot": "^1.6.32",
5759
"use-debounce": "^10.0.3",
5860
"zod": "^3.23.8"

src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default function App() {
3535
return (
3636
<Theme
3737
className="app"
38+
id="app"
3839
appearance="dark"
3940
ref={setRefAndColors}
4041
scaling="90%"

src/api/useSetAtomWsData.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import {
3737
setSlotStatusAtom,
3838
updatePeersAtom,
3939
epochAtom,
40-
deleteSlotStatusBoundsAtom,
4140
deleteSlotResponseBoundsAtom,
4241
skipRateAtom,
4342
} from "../atoms";
@@ -312,11 +311,9 @@ export function useSetAtomWsData() {
312311
}
313312
});
314313

315-
const deleteSlotStatusBounds = useSetAtom(deleteSlotStatusBoundsAtom);
316314
const deleteSlotResponseBounds = useSetAtom(deleteSlotResponseBoundsAtom);
317315

318316
useInterval(() => {
319-
deleteSlotStatusBounds();
320317
deleteSlotResponseBounds();
321318

322319
if (epoch) {

src/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
--green-live: #3cff73;
1414

1515
--header-row-height: 34px;
16-
/* headder height + epoch bar height + 10 padding top/bottom */
17-
--header-height: 121px;
16+
--header-height: 55px;
1817

1918
font-variant-numeric: tabular-nums;
19+
overflow: hidden;
2020
}
2121

2222
.rt-TooltipContent {

src/assets/anza_logo.svg

Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)