Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | 1x 1x 1x 1x 1x 1x 1x 4x 3x 1x 2x 2x 4x 4x 3x 3x 1x 3x 4x 4x 4x 4x 4x 4x 4x 4x 4x 3x 3x 3x 3x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 3x 3x 3x 3x 3x 3x | import {
computed,
reactive,
shallowRef,
} from "vue";
import { defineStore } from "pinia";
import {
createChatWorkspaceApi,
createChatWorkspaceController,
createChatWorkspaceState,
type BusinessId,
type ChatApi,
type ChatConversation,
type ChatMessage,
type ChatMessagePage,
type ChatWebSocketTicket,
type ChatWorkspaceController,
type ChatWorkspaceState,
type PendingChatConversation,
type PendingChatSend,
} from "@plain-journal/foundation";
const apiBaseUrl = import.meta.env.VITE_API_BASE_URL?.trim() ?? "";
const PENDING_SEND_KEY = "plain-journal:customer-chat-pending-send:v1";
const PENDING_CONVERSATION_KEY = "plain-journal:customer-chat-pending-conversation:v1";
export interface ChatAccessContext {
authenticated: boolean;
ownerId: BusinessId | null;
accessToken: string | null;
}
interface CustomerChatWorkspace {
ownerId: BusinessId;
accessToken: string;
state: ChatWorkspaceState;
controller: ChatWorkspaceController;
}
export class ChatAccessChangedError extends Error {
constructor() {
super("账户或会话已切换,旧的 Chat 请求结果不会写入当前页面。");
this.name = "ChatAccessChangedError";
}
}
export class ChatOwnershipMismatchError extends Error {
constructor() {
super("Chat 响应包含不属于当前账户的会话,页面已拒绝展示。");
this.name = "ChatOwnershipMismatchError";
}
}
export class ChatContractError extends Error {
constructor(message: string) {
super(message);
this.name = "ChatContractError";
}
}
function isActiveContext(context: ChatAccessContext): context is {
authenticated: true;
ownerId: BusinessId;
accessToken: string;
} {
return context.authenticated
&& typeof context.ownerId === "string"
&& context.ownerId.length > 0
&& typeof context.accessToken === "string"
&& context.accessToken.length > 0;
}
function validateConversation(
value: ChatConversation,
ownerId: BusinessId,
): ChatConversation {
if (
typeof value.id !== "string"
|| typeof value.customerId !== "string"
|| value.customerId !== ownerId
) {
throw new ChatOwnershipMismatchError();
}
Iif (!["OPEN", "CLOSED"].includes(value.status)) {
throw new ChatContractError(
`Chat 返回了未识别会话状态 ${value.status},页面不会猜测可写性。`,
);
}
return value;
}
function validateMessage(
value: ChatMessage,
conversationId: BusinessId,
): ChatMessage {
if (
typeof value.id !== "string"
|| typeof value.conversationId !== "string"
|| value.conversationId !== conversationId
|| typeof value.senderId !== "string"
|| typeof value.clientMessageId !== "string"
) {
throw new ChatContractError("Chat 返回了无法安全归属的消息事实。");
}
if (value.attachments.some((attachment) => typeof attachment.id !== "string")) {
throw new ChatContractError("Chat 附件响应包含非字符串业务 ID,页面已拒绝展示。");
}
return value;
}
function validateMessagePage(
page: ChatMessagePage,
conversationId: BusinessId,
): ChatMessagePage {
return {
...page,
items: page.items.map((item) => validateMessage(item, conversationId)),
};
}
function validateTicket(ticket: ChatWebSocketTicket): ChatWebSocketTicket {
if (
!ticket.ticket
|| ticket.targetPath !== "/ws/chat"
|| ticket.queryParameter !== "ticket"
) {
throw new ChatContractError(
"Chat 实时票据的目标路径或查询参数不符合浏览器握手契约。",
);
}
return ticket;
}
function ownedCustomerApi(
ownerId: BusinessId,
accessToken: string,
): ChatApi {
const api = createChatWorkspaceApi(() => accessToken, apiBaseUrl);
return {
async createConversation(input) {
return validateConversation(await api.createConversation(input), ownerId);
},
async conversations(limit) {
return (await api.conversations(limit))
.map((value) => validateConversation(value, ownerId));
},
async conversation(conversationId) {
return validateConversation(
await api.conversation(conversationId),
ownerId,
);
},
async claimConversation(conversationId) {
return validateConversation(
await api.claimConversation(conversationId),
ownerId,
);
},
async closeConversation(conversationId) {
return validateConversation(
await api.closeConversation(conversationId),
ownerId,
);
},
async messages(conversationId, beforeSequence, size) {
return validateMessagePage(
await api.messages(conversationId, beforeSequence, size),
conversationId,
);
},
async sendMessage(conversationId, input) {
const message = validateMessage(
await api.sendMessage(conversationId, input),
conversationId,
);
if (message.senderId !== ownerId) {
throw new ChatOwnershipMismatchError();
}
return message;
},
async markRead(conversationId, lastReadMessageId) {
const fact = await api.markRead(conversationId, lastReadMessageId);
if (
fact.conversationId !== conversationId
|| typeof fact.lastReadMessageId !== "string"
) {
throw new ChatContractError("Chat 已读回执无法归属到当前会话。");
}
return fact;
},
async createWebSocketTicket() {
return validateTicket(await api.createWebSocketTicket());
},
};
}
export const useCustomerChatStore = defineStore("customer-chat", () => {
const workspace = shallowRef<CustomerChatWorkspace | null>(null);
function createWorkspace(
ownerId: BusinessId,
accessToken: string,
): CustomerChatWorkspace {
const state = reactive(createChatWorkspaceState({
pendingSendStorageKey: PENDING_SEND_KEY,
pendingConversationStorageKey: PENDING_CONVERSATION_KEY,
})) as ChatWorkspaceState;
const controller = createChatWorkspaceController({
state,
api: ownedCustomerApi(ownerId, accessToken),
currentUserId: () => ownerId,
pendingSendStorageKey: PENDING_SEND_KEY,
pendingConversationStorageKey: PENDING_CONVERSATION_KEY,
apiBaseUrl,
});
return {
ownerId,
accessToken,
state,
controller,
};
}
function synchronizeAccess(
context: ChatAccessContext,
): CustomerChatWorkspace | null {
Iif (!isActiveContext(context)) {
workspace.value?.controller.disconnectRealtime();
workspace.value = null;
return null;
}
const current = workspace.value;
Iif (
current?.ownerId === context.ownerId
&& current.accessToken === context.accessToken
) {
return current;
}
current?.controller.disconnectRealtime();
workspace.value = createWorkspace(context.ownerId, context.accessToken);
return workspace.value;
}
function requireWorkspace(
context: ChatAccessContext,
): CustomerChatWorkspace {
const current = synchronizeAccess(context);
Iif (!current) {
throw new ChatAccessChangedError();
}
return current;
}
function requireCurrent(current: CustomerChatWorkspace) {
if (workspace.value !== current) {
throw new ChatAccessChangedError();
}
}
async function run<T>(
context: ChatAccessContext,
action: (controller: ChatWorkspaceController) => Promise<T>,
): Promise<T> {
const current = requireWorkspace(context);
const result = await action(current.controller);
requireCurrent(current);
return result;
}
const state = computed(() => workspace.value?.state ?? null);
const ownerId = computed(() => workspace.value?.ownerId ?? null);
const conversations = computed(() => state.value?.conversations ?? []);
const activeConversationId = computed(() =>
state.value?.activeConversationId ?? null);
const messages = computed(() => state.value?.messages ?? []);
const hasMore = computed(() => state.value?.hasMore ?? false);
const loadingConversations = computed(() =>
state.value?.loadingConversations ?? false);
const loadingMessages = computed(() => state.value?.loadingMessages ?? false);
const loadingOlder = computed(() => state.value?.loadingOlder ?? false);
const sending = computed(() => state.value?.sending ?? false);
const closingConversationId = computed(() =>
state.value?.closingConversationId ?? null);
const creatingConversation = computed(() =>
state.value?.creatingConversation ?? false);
const error = computed(() => state.value?.error ?? null);
const sendError = computed(() => state.value?.sendError ?? null);
const sendUnknown = computed(() => state.value?.sendUnknown ?? false);
const readError = computed(() => state.value?.readError ?? null);
const conversationCreationError = computed(() =>
state.value?.conversationCreationError ?? null);
const conversationCreationUnknown = computed(() =>
state.value?.conversationCreationUnknown ?? false);
const realtimeStatus = computed(() => state.value?.realtimeStatus ?? "idle");
const realtimeMessage = computed(() =>
state.value?.realtimeMessage ?? "实时连接尚未启动。");
const pendingSend = computed<PendingChatSend | null>(() => {
const pending = state.value?.pendingSend ?? null;
return pending?.userId === ownerId.value ? pending : null;
});
const pendingConversation = computed<PendingChatConversation | null>(() => {
const pending = state.value?.pendingConversation ?? null;
return pending?.userId === ownerId.value ? pending : null;
});
const hasForeignPendingSend = computed(() => Boolean(
state.value?.pendingSend
&& state.value.pendingSend.userId !== ownerId.value,
));
const hasForeignPendingConversation = computed(() => Boolean(
state.value?.pendingConversation
&& state.value.pendingConversation.userId !== ownerId.value,
));
const activeConversation = computed(() =>
workspace.value?.controller.activeConversation() ?? null);
function setActiveConversation(
context: ChatAccessContext,
conversationId: BusinessId | null,
) {
requireWorkspace(context).controller.setActiveConversation(conversationId);
}
function loadConversations(context: ChatAccessContext) {
return run(context, (controller) => controller.loadConversations());
}
function loadActiveConversation(context: ChatAccessContext) {
return run(context, (controller) => controller.loadActiveConversation());
}
function loadMessages(
context: ChatAccessContext,
conversationId?: BusinessId,
) {
return run(context, (controller) => controller.loadMessages(conversationId));
}
function loadOlder(context: ChatAccessContext) {
return run(context, (controller) => controller.loadOlder());
}
function refreshActive(context: ChatAccessContext) {
return run(context, (controller) => controller.refreshActive());
}
function createConversation(context: ChatAccessContext, subject: string) {
return run(context, (controller) => controller.createConversation(subject));
}
function retryPendingConversation(context: ChatAccessContext) {
return run(context, (controller) => controller.retryPendingConversation());
}
function closeConversation(context: ChatAccessContext) {
return run(context, (controller) => controller.closeConversation());
}
function sendText(context: ChatAccessContext, content: string) {
return run(context, (controller) => controller.sendText(content));
}
function retryPendingSend(context: ChatAccessContext) {
return run(context, (controller) => controller.retryPendingSend());
}
function markLatestRead(context: ChatAccessContext) {
return run(context, (controller) => controller.markLatestRead());
}
function connectRealtime(context: ChatAccessContext) {
requireWorkspace(context).controller.connectRealtime();
}
function disconnectRealtime() {
workspace.value?.controller.disconnectRealtime();
}
function restartRealtime(context: ChatAccessContext) {
requireWorkspace(context).controller.restartRealtime();
}
return {
ownerId,
conversations,
activeConversationId,
activeConversation,
messages,
hasMore,
loadingConversations,
loadingMessages,
loadingOlder,
sending,
closingConversationId,
creatingConversation,
error,
sendError,
sendUnknown,
readError,
conversationCreationError,
conversationCreationUnknown,
realtimeStatus,
realtimeMessage,
pendingSend,
pendingConversation,
hasForeignPendingSend,
hasForeignPendingConversation,
synchronizeAccess,
setActiveConversation,
loadConversations,
loadActiveConversation,
loadMessages,
loadOlder,
refreshActive,
createConversation,
retryPendingConversation,
closeConversation,
sendText,
retryPendingSend,
markLatestRead,
connectRealtime,
disconnectRealtime,
restartRealtime,
};
});
|