chore: integrate firestore for particles (#32)

* plumb for firestore

* chore: cleanup orion api to only include essentials

* setup boilerplate for data and rendering

This includes zod types creation for API response validation, and
exploration of path based resolution of rendering particles.

* chore: structure container particles for rendering children

* wire firestore crud for particles

* integrate visibility to particles

* docs: explain particle view resolver
This commit was merged in pull request #32.
This commit is contained in:
Arjun Patel
2026-03-17 19:52:31 -07:00
committed by GitHub
parent 377537b892
commit 51857bed63
25 changed files with 1585 additions and 2372 deletions
+6 -98
View File
@@ -1,107 +1,15 @@
import { create } from "zustand";
import { apiClient } from "@/api/client";
import type {
AckInfo,
NetworkWithStreams,
Stream,
StreamParticle,
} from "@/api/types";
/**
* Minimal app-level store. Navigation state is now URL-driven via PathResolver.
* Stream/particle state will move to Firestore hooks.
*/
interface AppState {
networks: NetworkWithStreams[];
selectedNetworkId: string | null;
isLoading: boolean;
fetchStartup: () => Promise<void>;
setSelectedNetwork: (id: string | null) => void;
addStream: (networkId: string, stream: Stream) => void;
addParticleToStream: (streamId: string, particle: StreamParticle) => void;
markParticlesSeen: (particleIds: string[]) => void;
ackParticle: (particleId: string, email: string) => void;
}
export const useAppStore = create<AppState>((set, get) => ({
networks: [],
export const useAppStore = create<AppState>((set) => ({
selectedNetworkId: null,
isLoading: false,
fetchStartup: async () => {
set({ isLoading: true });
try {
const data = await apiClient.startup();
const state = get();
const shouldAutoSelect =
!state.selectedNetworkId && data.networks.length > 0;
set({
networks: data.networks,
...(shouldAutoSelect
? { selectedNetworkId: data.networks[0].id }
: {}),
});
} finally {
set({ isLoading: false });
}
},
setSelectedNetwork: (id) => {
set({ selectedNetworkId: id });
},
addStream: (networkId, stream) => {
set({
networks: get().networks.map((n) =>
n.id === networkId ? { ...n, streams: [stream, ...n.streams] } : n,
),
});
},
addParticleToStream: (streamId, particle) => {
set({
networks: get().networks.map((n) => ({
...n,
streams: n.streams.map((s) =>
s.id === streamId
? { ...s, particles: [...s.particles, particle] }
: s,
),
})),
});
},
ackParticle: (particleId, email) => {
const ack: AckInfo = { email, acked_at: new Date().toISOString() };
set({
networks: get().networks.map((n) => ({
...n,
streams: n.streams.map((s) => ({
...s,
particles: s.particles.map((p) =>
p.id === particleId ? { ...p, acks: [...p.acks, ack] } : p,
),
})),
})),
});
},
markParticlesSeen: (particleIds) => {
const idSet = new Set(particleIds);
set({
networks: get().networks.map((n) => ({
...n,
streams: n.streams.map((s) => {
const unseenMarked = s.particles.filter(
(p) => !p.seen && idSet.has(p.id),
).length;
if (unseenMarked === 0) return s;
return {
...s,
unseen_count: Math.max(0, s.unseen_count - unseenMarked),
particles: s.particles.map((p) =>
idSet.has(p.id) ? { ...p, seen: true } : p,
),
};
}),
})),
});
},
setSelectedNetwork: (id) => set({ selectedNetworkId: id }),
}));