Commit d3de1ca
Refactor: Improve /sandboxes performance + implement tRPC (#186)
<!-- CURSOR_SUMMARY -->
> [!NOTE]
> Introduce tRPC + React Query with SSR hydration, migrate sandboxes
data/metrics to tRPC, add auth/telemetry middlewares, refactor polling,
and update caching, intervals, and deps.
>
> - **Backend (tRPC)**:
> - Add tRPC stack with `/api/trpc` route, superjson, and server/client
helpers (`init`, `server`, `client`, `query-client`).
> - Implement routers: `sandboxes` (list, metrics, team metrics/max) and
`teams.getLimits` with input schemas and error helpers.
> - Add middlewares: auth (Supabase session/user) and telemetry
(tracing, metrics, structured logs).
> - Remove legacy server actions `get-team-sandboxes*` and switch to
tRPC.
> - **Frontend (Data & UI)**:
> - Migrate sandboxes list to tRPC + React Query with SSR
prefetch/hydration; use `HydrateClient`, `prefetch`, `useSuspenseQuery`.
> - Replace SWR with React Query in metrics hook; update
`SandboxesHeader` props and refresh wiring.
> - Refactor `PollingButton` API and implement `usePolling`; update
refresh controls usage.
> - Adjust sandboxes page layout, loading, and suspense boundaries.
> - **Auth & Caching**:
> - Introduce `check-user-team-auth-cached` with Next cache tags; update
callers and tests; tweak `CACHE_TAGS.USER_TEAM_AUTHORIZATION` signature.
> - Revalidate auth cache tags on team member add/remove.
> - **Config**:
> - Tune intervals (`SANDBOXES_METRICS_POLLING_MS` to 5s) and table
polling options (add `5s`, change default).
> - **Dependencies & Scripts**:
> - Add `@tanstack/react-query`, `@trpc/*`, `superjson`; add `clean`
script; wire TRPC provider into client providers.
>
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
d485d21. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
---------
Co-authored-by: Claude <[email protected]>1 parent ff82528 commit d3de1ca
File tree
37 files changed
+1473
-434
lines changed- src
- __test__/integration
- app
- api/trpc/[trpc]
- dashboard/[teamIdOrSlug]/sandboxes/(tabs)
- @list
- configs
- features
- dashboard
- sandboxes
- list
- hooks
- stores
- monitoring
- sandbox/header
- lib
- clients
- hooks
- server
- api
- middlewares
- routers
- schemas
- auth
- sandboxes
- team
- trpc
- ui
37 files changed
+1473
-434
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
78 | 79 | | |
79 | 80 | | |
80 | 81 | | |
| 82 | + | |
81 | 83 | | |
82 | 84 | | |
83 | 85 | | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
84 | 90 | | |
85 | 91 | | |
86 | 92 | | |
| |||
132 | 138 | | |
133 | 139 | | |
134 | 140 | | |
| 141 | + | |
135 | 142 | | |
136 | 143 | | |
137 | 144 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 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 | + | |
Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 13 additions & 33 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | | - | |
3 | | - | |
4 | | - | |
| 3 | + | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | 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 | | - | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
37 | 16 | | |
38 | 17 | | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
43 | 23 | | |
44 | 24 | | |
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
6 | | - | |
| 5 | + | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
3 | 4 | | |
4 | 5 | | |
5 | 6 | | |
| |||
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
31 | 34 | | |
32 | 35 | | |
0 commit comments