Phase 1 - Feature Repair: - Fix member kick/leave: add missing db.delete() call in servers.ts - Stabilize invite codes: return existing code instead of regenerating - Fix user search: use LIKE instead of exact match in social.ts - Wire DM button on FriendsPage to create/navigate to DM channels - Add cancel outgoing friend request (DELETE endpoint + frontend) - Add accept/decline friend request actions with WS real-time events - Fix replyToId persistence in message creation - Hydrate reactions and replyTo in message queries - Add joinByCode to API client and serverStore - Add friend_request_received/accepted WebSocket events Phase 2 - Discord UI Overhaul: - Remove stray borders between layout columns - Replace shadow-sm with shadow-header on content headers - Replace all bg-gray-*/text-gray-* with Discord color tokens - Ensure flat color contrast (#1E1F22, #2B2D31, #313338) Testing: - Set up vitest + @testing-library/react + jsdom - Add 17 tests across InviteModal, JoinServer, FriendsPage (all passing) - Fix vite resolve.extensions to prefer .tsx over stale .js files
47 lines
1.9 KiB
TypeScript
47 lines
1.9 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import { useChatStore } from '../../stores/chatStore';
|
|
import { useAuthStore } from '../../stores/authStore';
|
|
|
|
interface TypingIndicatorProps {
|
|
channelId: string;
|
|
}
|
|
|
|
export function TypingIndicator({ channelId }: TypingIndicatorProps) {
|
|
const typingUsersRaw = useChatStore((s) => s.typingUsers.get(channelId));
|
|
const currentUserId = useAuthStore((s) => s.user?.id);
|
|
|
|
// Filter out current user and expired entries
|
|
const others = useMemo(() => {
|
|
if (!typingUsersRaw || typingUsersRaw.length === 0) return [];
|
|
const now = Date.now();
|
|
return typingUsersRaw
|
|
.filter(t => now - t.timestamp < 5000 && t.userId !== currentUserId);
|
|
}, [typingUsersRaw, currentUserId]);
|
|
|
|
if (others.length === 0) return null;
|
|
|
|
let text = '';
|
|
if (others.length === 1) {
|
|
text = `${others[0]!.username} is typing`;
|
|
} else if (others.length === 2) {
|
|
text = `${others[0]!.username} and ${others[1]!.username} are typing`;
|
|
} else {
|
|
text = 'Several people are typing';
|
|
}
|
|
|
|
return (
|
|
<div className="h-[24px] px-4 flex items-center text-[12px] text-discord-text-header font-medium select-none pointer-events-none">
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex gap-[2px] bg-discord-bg-accent/20 rounded-full px-2 py-1">
|
|
<div className="w-[5px] h-[5px] bg-discord-text-normal rounded-full animate-bounce" style={{ animationDelay: '0ms', animationDuration: '0.8s' }} />
|
|
<div className="w-[5px] h-[5px] bg-discord-text-normal rounded-full animate-bounce" style={{ animationDelay: '150ms', animationDuration: '0.8s' }} />
|
|
<div className="w-[5px] h-[5px] bg-discord-text-normal rounded-full animate-bounce" style={{ animationDelay: '300ms', animationDuration: '0.8s' }} />
|
|
</div>
|
|
<span className="truncate max-w-[400px]">
|
|
<span className="font-bold">{text}</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|