feat(persistence): bidirectional local/cloud story sync (Supabase)

Connect the previously-skeleton cloudStore to the client with a full
bidirectional reconcile engine. Commercial build (AUTH_ENABLED) only; the
open-source build is byte-for-byte unchanged — all cloud paths short-circuit
when AUTH_ENABLED is false.

- cloudSync.ts: reconcile engine — decideAction (pure, LWW rev->updatedAt with
  tombstone priority) + syncOnLogin/pushOnSave/pushDeletion (best-effort,
  serialized, isAuthed-gated)
- cloudSyncClient.ts: browser fetch bridge (short-circuit + fault-tolerant)
- /api/stories/{manifest,pull,push,delete}: RLS-guarded sync endpoints
- upsert_story_if_newer RPC: optimistic concurrency (SECURITY INVOKER,
  auth.uid() injection, rev->updated_at guard, revoked from public)
- cloudStore: +manifest/pullBlobs, save->RPC {stored,won}, softDelete w/ rev
- localStore: +listAllRecordsForSync/putSyncedRecord/markRecordSynced
  (concurrency-guarded sync writes); types: +StorySyncMeta/StorySyncEnvelope
- facade + UserChip: inject pushOnSave/pushDeletion + login-triggered reconcile

Sync model: full reconcile on login + background push on save (no Realtime;
eventual consistency). Conflict resolution: last-write-wins.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Kai ki
2026-06-28 11:20:47 +08:00
parent da74e3e763
commit ff12b2759f
12 changed files with 824 additions and 66 deletions
+11 -4
View File
@@ -14,6 +14,7 @@ import {
loadStorySession as loadSession,
softDeleteStory,
} from "@/lib/persistence/localStore";
import { pushOnSave, pushDeletion } from "@/lib/persistence/cloudSync";
export type SaveResult =
| { ok: true; storyId: string }
@@ -23,9 +24,11 @@ export type SaveResult =
* never throws, never blocks gameplay/navigation. */
export async function saveStory(session: Session): Promise<SaveResult> {
const rec = await saveStorySession(session);
return rec
? { ok: true, storyId: rec.id }
: { ok: false, error: "无法保存到本地存储" };
if (!rec) return { ok: false, error: "无法保存到本地存储" };
// Fire-and-forget cloud push. pushOnSave short-circuits when auth is off /
// the user is signed out, so the open-source build sees no behavior change.
void pushOnSave(rec);
return { ok: true, storyId: rec.id };
}
/** List saved stories for the "我的剧情" page (newest first). */
@@ -40,5 +43,9 @@ export async function loadStorySession(id: string): Promise<Session | null> {
/** Delete a saved story (soft-delete). Returns false if not found. */
export async function deleteStory(storyId: string): Promise<boolean> {
return softDeleteStory(storyId);
const ok = await softDeleteStory(storyId);
// Fire-and-forget tombstone propagation. pushDeletion short-circuits when auth
// is off / signed out, so the open-source build sees no behavior change.
if (ok) void pushDeletion(storyId);
return ok;
}