Files
cunkebao_v3/Cunkebao/components/WechatGroupSelector.tsx

205 lines
6.7 KiB
TypeScript
Raw Normal View History

2025-03-29 16:50:39 +08:00
"use client"
import { useState, useEffect } from "react"
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog"
import { Input } from "@/components/ui/input"
import { Button } from "@/components/ui/button"
2025-04-22 19:17:14 +08:00
import { Search, ChevronLeft, ChevronRight } from "lucide-react"
2025-03-29 16:50:39 +08:00
import { Checkbox } from "@/components/ui/checkbox"
2025-04-22 19:17:14 +08:00
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
import { api } from "@/lib/api"
import { showToast } from "@/lib/toast"
import { WechatGroup } from "@/types/wechat"
2025-03-29 16:50:39 +08:00
2025-04-22 19:17:14 +08:00
interface ApiResponse<T = any> {
code: number
msg: string
data: T
}
interface GroupListResponse {
list: any[]
total: number
2025-03-29 16:50:39 +08:00
}
interface WechatGroupSelectorProps {
open: boolean
onOpenChange: (open: boolean) => void
selectedGroups: WechatGroup[]
onSelect: (groups: WechatGroup[]) => void
}
export function WechatGroupSelector({ open, onOpenChange, selectedGroups, onSelect }: WechatGroupSelectorProps) {
const [searchQuery, setSearchQuery] = useState("")
const [groups, setGroups] = useState<WechatGroup[]>([])
const [loading, setLoading] = useState(false)
2025-04-22 19:17:14 +08:00
const [page, setPage] = useState(1)
const [totalPages, setTotalPages] = useState(1)
const [totalItems, setTotalItems] = useState(0)
const [tempSelectedGroups, setTempSelectedGroups] = useState<WechatGroup[]>([])
2025-04-22 19:17:14 +08:00
const pageSize = 20
2025-03-29 16:50:39 +08:00
useEffect(() => {
if (open) {
2025-04-22 19:17:14 +08:00
fetchGroups(1)
setTempSelectedGroups([...selectedGroups])
2025-03-29 16:50:39 +08:00
}
}, [open, selectedGroups])
2025-03-29 16:50:39 +08:00
2025-04-22 19:17:14 +08:00
const fetchGroups = async (pageNum: number) => {
2025-03-29 16:50:39 +08:00
setLoading(true)
2025-04-22 19:17:14 +08:00
try {
const queryParams = new URLSearchParams({
page: pageNum.toString(),
limit: pageSize.toString(),
...(searchQuery ? { keyword: searchQuery } : {})
})
const response = await api.get<ApiResponse<GroupListResponse>>(`/v1/chatroom?${queryParams.toString()}`)
if (response.code === 200 && response.data) {
const groupsList = response.data.list.map(item => ({
id: item.id || `group-${Math.random()}`,
name: item.name || item.chatroomName || '未知群聊',
memberCount: item.memberCount || 0,
avatar: item.avatar || '/placeholder.svg',
customer: item.ownerNickname || '--'
}))
setGroups(groupsList)
setTotalItems(response.data.total)
setTotalPages(Math.ceil(response.data.total / pageSize))
setPage(pageNum)
} else {
showToast(response.msg || "获取群聊列表失败", "error")
}
} catch (error: any) {
console.error("获取群聊列表失败:", error)
showToast(error?.message || "请检查网络连接", "error")
} finally {
setLoading(false)
}
2025-03-29 16:50:39 +08:00
}
2025-04-22 19:17:14 +08:00
const handleSearch = () => {
fetchGroups(1)
}
const handlePrevPage = () => {
if (page > 1) {
fetchGroups(page - 1)
}
}
const handleNextPage = () => {
if (page < totalPages) {
fetchGroups(page + 1)
}
}
2025-03-29 16:50:39 +08:00
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-md">
<DialogHeader>
<DialogTitle></DialogTitle>
</DialogHeader>
2025-04-22 19:17:14 +08:00
<div className="flex gap-2">
<div className="relative flex-1">
<Search className="absolute left-3 top-2.5 h-4 w-4 text-gray-400" />
<Input
placeholder="搜索群聊"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
onKeyDown={(e) => e.key === 'Enter' && handleSearch()}
className="pl-9"
/>
</div>
<Button
variant="outline"
size="icon"
onClick={handleSearch}
disabled={loading}
>
<Search className="h-4 w-4" />
</Button>
2025-03-29 16:50:39 +08:00
</div>
<div className="mt-4 space-y-2 max-h-[400px] overflow-y-auto">
{loading ? (
<div className="text-center py-4">...</div>
2025-04-22 19:17:14 +08:00
) : groups.length === 0 ? (
2025-03-29 16:50:39 +08:00
<div className="text-center py-4"></div>
) : (
2025-04-22 19:17:14 +08:00
groups.map((group) => (
2025-03-29 16:50:39 +08:00
<div key={group.id} className="flex items-center space-x-3 p-2 hover:bg-gray-100 rounded-lg">
<Checkbox
checked={tempSelectedGroups.some((g) => g.id === group.id)}
2025-03-29 16:50:39 +08:00
onCheckedChange={(checked) => {
if (checked) {
setTempSelectedGroups([...tempSelectedGroups, group])
2025-03-29 16:50:39 +08:00
} else {
setTempSelectedGroups(tempSelectedGroups.filter((g) => g.id !== group.id))
2025-03-29 16:50:39 +08:00
}
}}
/>
2025-04-22 19:17:14 +08:00
<Avatar className="h-10 w-10 rounded-lg">
<AvatarImage src={group.avatar} />
<AvatarFallback className="rounded-lg">{group.name?.[0] || '群'}</AvatarFallback>
</Avatar>
<div className="flex-1 min-w-0">
<div className="font-medium truncate">{group.name}</div>
2025-03-29 16:50:39 +08:00
<div className="text-sm text-gray-500">
2025-04-22 19:17:14 +08:00
<div className="truncate">{group.customer}</div>
2025-03-29 16:50:39 +08:00
</div>
</div>
</div>
))
)}
</div>
2025-04-22 19:17:14 +08:00
{/* 分页控制 */}
{totalPages > 1 && (
<div className="flex items-center justify-between border-t pt-4 mt-4">
<div className="text-sm text-gray-500">
{totalItems}
</div>
<div className="flex items-center space-x-2">
<Button
variant="outline"
size="icon"
onClick={handlePrevPage}
disabled={page === 1 || loading}
>
<ChevronLeft className="h-4 w-4" />
</Button>
<span className="text-sm">
{page} / {totalPages}
</span>
<Button
variant="outline"
size="icon"
onClick={handleNextPage}
disabled={page === totalPages || loading}
>
<ChevronRight className="h-4 w-4" />
</Button>
</div>
</div>
)}
2025-03-29 16:50:39 +08:00
<div className="flex justify-end space-x-2 mt-4">
<Button variant="outline" onClick={() => onOpenChange(false)}>
</Button>
<Button onClick={() => {
onSelect(tempSelectedGroups)
onOpenChange(false)
}}>
({tempSelectedGroups.length})
</Button>
2025-03-29 16:50:39 +08:00
</div>
</DialogContent>
</Dialog>
)
}