319 lines
12 KiB
TypeScript
319 lines
12 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useEffect, useCallback } from 'react';
|
|
import Link from 'next/link';
|
|
import { useSearchParams, useRouter } from 'next/navigation';
|
|
import { formatFullHandle } from '@/lib/utils/handle';
|
|
import { PostCard } from '@/components/PostCard';
|
|
import { Post } from '@/lib/types';
|
|
import { Bot } from 'lucide-react';
|
|
|
|
interface User {
|
|
id: string;
|
|
handle: string;
|
|
displayName: string;
|
|
avatarUrl?: string;
|
|
bio?: string;
|
|
profileUrl?: string | null;
|
|
isRemote?: boolean;
|
|
isBot?: boolean;
|
|
}
|
|
|
|
|
|
|
|
// Icons
|
|
const SearchIcon = () => (
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
<circle cx="11" cy="11" r="8" />
|
|
<line x1="21" y1="21" x2="16.65" y2="16.65" />
|
|
</svg>
|
|
);
|
|
|
|
const ArrowLeftIcon = () => (
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
<line x1="19" y1="12" x2="5" y2="12" />
|
|
<polyline points="12 19 5 12 12 5" />
|
|
</svg>
|
|
);
|
|
|
|
const HeartIcon = ({ filled }: { filled?: boolean }) => (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill={filled ? "currentColor" : "none"} stroke="currentColor" strokeWidth="2">
|
|
<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" />
|
|
</svg>
|
|
);
|
|
|
|
const RepeatIcon = () => (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
<polyline points="17 1 21 5 17 9" />
|
|
<path d="M3 11V9a4 4 0 0 1 4-4h14" />
|
|
<polyline points="7 23 3 19 7 15" />
|
|
<path d="M21 13v2a4 4 0 0 1-4 4H3" />
|
|
</svg>
|
|
);
|
|
|
|
const MessageIcon = () => (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
<path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z" />
|
|
</svg>
|
|
);
|
|
|
|
const FlagIcon = () => (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
<path d="M5 5v16" />
|
|
<path d="M5 5h11l-1 4 1 4H5" />
|
|
</svg>
|
|
);
|
|
|
|
function UserCard({ user }: { user: User }) {
|
|
return (
|
|
<Link
|
|
href={`/@${user.handle}`}
|
|
style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: '12px',
|
|
padding: '16px',
|
|
borderBottom: '1px solid var(--border)',
|
|
transition: 'background 0.15s ease',
|
|
}}
|
|
className="hover-bg"
|
|
>
|
|
<div className="avatar">
|
|
{user.avatarUrl ? (
|
|
<img src={user.avatarUrl} alt={user.displayName} />
|
|
) : (
|
|
(user.displayName || user.handle).charAt(0).toUpperCase()
|
|
)}
|
|
</div>
|
|
<div style={{ flex: 1, minWidth: 0 }}>
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }}>
|
|
<span style={{ fontWeight: 600 }}>{user.displayName || user.handle}</span>
|
|
{user.isBot && (
|
|
<span
|
|
style={{
|
|
display: 'inline-flex',
|
|
alignItems: 'center',
|
|
gap: '3px',
|
|
fontSize: '10px',
|
|
padding: '2px 6px',
|
|
borderRadius: '4px',
|
|
background: 'var(--accent-muted)',
|
|
color: 'var(--accent)',
|
|
fontWeight: 500,
|
|
}}
|
|
>
|
|
<Bot size={12} />
|
|
AI Account
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div style={{ color: 'var(--foreground-tertiary)', fontSize: '14px' }}>{formatFullHandle(user.handle)}</div>
|
|
{user.bio && (
|
|
<div style={{
|
|
color: 'var(--foreground-secondary)',
|
|
fontSize: '14px',
|
|
marginTop: '4px',
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
whiteSpace: 'nowrap',
|
|
}}>
|
|
{user.bio}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
|
|
|
|
export default function SearchPage() {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const initialQuery = searchParams.get('q') || '';
|
|
|
|
const [query, setQuery] = useState(initialQuery);
|
|
const [users, setUsers] = useState<User[]>([]);
|
|
const [posts, setPosts] = useState<Post[]>([]);
|
|
const [loading, setLoading] = useState(false);
|
|
const [activeTab, setActiveTab] = useState<'all' | 'users' | 'posts'>('all');
|
|
|
|
const search = useCallback(async (q: string, type: string = 'all') => {
|
|
if (!q.trim()) {
|
|
setUsers([]);
|
|
setPosts([]);
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
try {
|
|
const res = await fetch(`/api/search?q=${encodeURIComponent(q)}&type=${type}`);
|
|
const data = await res.json();
|
|
setUsers(data.users || []);
|
|
setPosts(data.posts || []);
|
|
} catch {
|
|
console.error('Search failed');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (initialQuery) {
|
|
search(initialQuery, activeTab);
|
|
}
|
|
}, [initialQuery, activeTab, search]);
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (query.trim()) {
|
|
router.push(`/search?q=${encodeURIComponent(query)}`);
|
|
search(query, activeTab);
|
|
}
|
|
};
|
|
|
|
const handleTabChange = (tab: 'all' | 'users' | 'posts') => {
|
|
setActiveTab(tab);
|
|
if (query.trim()) {
|
|
search(query, tab);
|
|
}
|
|
};
|
|
|
|
const handleLike = async (postId: string, currentLiked: boolean) => {
|
|
const method = currentLiked ? 'DELETE' : 'POST';
|
|
await fetch(`/api/posts/${postId}/like`, { method });
|
|
};
|
|
|
|
const handleRepost = async (postId: string, currentReposted: boolean) => {
|
|
const method = currentReposted ? 'DELETE' : 'POST';
|
|
await fetch(`/api/posts/${postId}/repost`, { method });
|
|
};
|
|
|
|
const handleDelete = (postId: string) => {
|
|
setPosts(prev => prev.filter(p => p.id !== postId));
|
|
};
|
|
|
|
return (
|
|
<div style={{ maxWidth: '600px', margin: '0 auto', minHeight: '100vh' }}>
|
|
{/* Header */}
|
|
<header style={{
|
|
padding: '16px',
|
|
borderBottom: '1px solid var(--border)',
|
|
position: 'sticky',
|
|
top: 0,
|
|
background: 'var(--background)',
|
|
zIndex: 10,
|
|
}}>
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: '16px' }}>
|
|
<Link href="/" style={{ color: 'var(--foreground)' }}>
|
|
<ArrowLeftIcon />
|
|
</Link>
|
|
<form onSubmit={handleSubmit} style={{ flex: 1 }}>
|
|
<div style={{ position: 'relative' }}>
|
|
<span style={{
|
|
position: 'absolute',
|
|
left: '12px',
|
|
top: '50%',
|
|
transform: 'translateY(-50%)',
|
|
color: 'var(--foreground-tertiary)',
|
|
}}>
|
|
<SearchIcon />
|
|
</span>
|
|
<input
|
|
type="text"
|
|
className="input"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
placeholder="Search users and posts..."
|
|
style={{ paddingLeft: '44px' }}
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</header>
|
|
|
|
{/* Tabs */}
|
|
<div style={{ display: 'flex', borderBottom: '1px solid var(--border)' }}>
|
|
{(['all', 'users', 'posts'] as const).map(tab => (
|
|
<button
|
|
key={tab}
|
|
onClick={() => handleTabChange(tab)}
|
|
style={{
|
|
flex: 1,
|
|
padding: '16px',
|
|
background: 'none',
|
|
border: 'none',
|
|
borderBottom: activeTab === tab ? '2px solid var(--accent)' : '2px solid transparent',
|
|
color: activeTab === tab ? 'var(--foreground)' : 'var(--foreground-tertiary)',
|
|
fontWeight: activeTab === tab ? 600 : 400,
|
|
cursor: 'pointer',
|
|
textTransform: 'capitalize',
|
|
}}
|
|
>
|
|
{tab}
|
|
</button>
|
|
))}
|
|
</div>
|
|
|
|
{/* Results */}
|
|
{loading ? (
|
|
<div style={{ padding: '48px', textAlign: 'center', color: 'var(--foreground-tertiary)' }}>
|
|
Searching...
|
|
</div>
|
|
) : !initialQuery ? (
|
|
<div style={{ padding: '48px', textAlign: 'center', color: 'var(--foreground-tertiary)' }}>
|
|
<p>Search for users and posts</p>
|
|
</div>
|
|
) : users.length === 0 && posts.length === 0 ? (
|
|
<div style={{ padding: '48px', textAlign: 'center', color: 'var(--foreground-tertiary)' }}>
|
|
<p>No results for “{initialQuery}”</p>
|
|
</div>
|
|
) : (
|
|
<>
|
|
{/* Users */}
|
|
{(activeTab === 'all' || activeTab === 'users') && users.length > 0 && (
|
|
<div>
|
|
{activeTab === 'all' && (
|
|
<div style={{
|
|
padding: '12px 16px',
|
|
fontWeight: 600,
|
|
borderBottom: '1px solid var(--border)',
|
|
background: 'var(--background-secondary)',
|
|
}}>
|
|
Users
|
|
</div>
|
|
)}
|
|
{users.map(user => <UserCard key={user.id} user={user} />)}
|
|
</div>
|
|
)}
|
|
|
|
{/* Posts */}
|
|
{(activeTab === 'all' || activeTab === 'posts') && posts.length > 0 && (
|
|
<div>
|
|
{activeTab === 'all' && (
|
|
<div style={{
|
|
padding: '12px 16px',
|
|
fontWeight: 600,
|
|
borderBottom: '1px solid var(--border)',
|
|
background: 'var(--background-secondary)',
|
|
}}>
|
|
Posts
|
|
</div>
|
|
)}
|
|
{posts.map(post => (
|
|
<PostCard
|
|
key={post.id}
|
|
post={post}
|
|
onLike={handleLike}
|
|
onRepost={handleRepost}
|
|
onDelete={handleDelete}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|