refactor store

This commit is contained in:
pa
2026-03-10 17:19:03 +09:00
parent 95c4a1d3e6
commit 1cbad7fb60
39 changed files with 1290 additions and 2366 deletions
+6 -2
View File
@@ -19,6 +19,10 @@ import {
getGroupDialogGroup,
handleGroupMember
} from '../coordinators/groupCoordinator';
import {
handleFriendAdd,
handleFriendDelete
} from '../coordinators/friendRelationshipCoordinator';
import { escapeTag, parseLocation } from '../shared/utils';
import { AppDebug } from './appConfig';
import { groupRequest } from '../api';
@@ -268,7 +272,7 @@ function handlePipeline(args) {
case 'friend-add':
applyUser(content.user);
friendStore.handleFriendAdd({
handleFriendAdd({
params: {
userId: content.userId
}
@@ -276,7 +280,7 @@ function handlePipeline(args) {
break;
case 'friend-delete':
friendStore.handleFriendDelete({
handleFriendDelete({
params: {
userId: content.userId
}