Files
Commilitia-Drop/web/src/store/slices/devices.ts
T
admin f21fa5b5e8 cdrop — 跨 OS 剪贴板与文件传输服务
Commilitia Drop:自托管的跨设备剪贴板同步与点对点文件传输。

- 后端 Go(chi / SQLite WAL / SSE Hub / WebRTC signaling + 状态机 / Relay ring buffer),编译进单个 distroless 镜像(前端 go:embed)。
- 前端 React + TanStack Router + Zustand,自实现 SSE + WebRTC P2P,NAT 受阻时回退服务端中继;聚珍(Juzhen)CJK 综合排版。
- 桌面端 Wails v2(macOS / Windows),瘦客户端复用 web。
- 鉴权 OIDC PKCE(自建 Casdoor 等),refresh_token 信封加密存系统密钥库;iOS Shortcut 用 HS256 scoped token。

架构文档与变更记录见 docs 分支(PROJECT_BRIEF / FRONTEND_DESIGN / CHANGELOG)。

本次为公开发布初始提交:完整开发历史(含部署细节)留存于私有归档,公开仓库自此干净起步。
2026-06-15 21:38:28 +08:00

36 lines
1.4 KiB
TypeScript

import type { StateCreator } from "zustand";
import type { AppState } from "../types";
import { SELF_DEVICE_KEY, readSelfDevice, readInjectedDeviceName } from "../helpers";
// 这一片把"设备"语义全部合到一起:本机设备名 + Hub(SSE 连接 / 在线列表)。
// 它们都围绕"我有哪些设备、谁在线"这一问题。
export type DevicesSlice = Pick<
AppState,
"selfDeviceName" | "setSelfDeviceName"
| "sseConnected" | "sseReconnecting" | "devices"
| "setSseConnected" | "setSseReconnecting" | "setDevices"
>;
export const createDevicesSlice: StateCreator<AppState, [], [], DevicesSlice> = (set) =>
({
// 桌面壳优先用启动注入的设备名(localStorage 在 wails:// 下不跨重启存活);
// 浏览器回落到 localStorage。
selfDeviceName: readInjectedDeviceName() ?? readSelfDevice(),
setSelfDeviceName: (name) =>
{
if (typeof window !== "undefined")
{
if (name) { window.localStorage.setItem(SELF_DEVICE_KEY, name); }
else { window.localStorage.removeItem(SELF_DEVICE_KEY); }
}
set({ selfDeviceName: name });
},
sseConnected: false,
sseReconnecting: false,
devices: [],
setSseConnected: (v) => set({ sseConnected: v }),
setSseReconnecting: (v) => set({ sseReconnecting: v }),
setDevices: (d) => set({ devices: d }),
});