252 lines
6.7 KiB
TypeScript
252 lines
6.7 KiB
TypeScript
"use client"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
acceptOrder,
|
|
cancelPreAccept,
|
|
confirmClose,
|
|
payOrder,
|
|
requestClose,
|
|
} from "@/lib/api/orders"
|
|
import type { ApiDecision } from "@/lib/errors"
|
|
import { notifyInfo, notifySuccess } from "@/lib/toast"
|
|
import type { Order, OrderStatus } from "@/lib/types"
|
|
import { useAuthStore } from "@/store/auth"
|
|
import { useOrderStore } from "@/store/orders"
|
|
import { useShopStore } from "@/store/shops"
|
|
import {
|
|
AlertTriangle,
|
|
CheckCircle2,
|
|
Clock,
|
|
MessageSquare,
|
|
RefreshCw,
|
|
Star,
|
|
XCircle,
|
|
} from "lucide-react"
|
|
import Link from "next/link"
|
|
import { useCallback } from "react"
|
|
|
|
interface OrderActionsProps {
|
|
orderId: string
|
|
order?: Order
|
|
onOrderChange?: (order: Order) => void
|
|
initialStatus: OrderStatus
|
|
chatSessionId?: string
|
|
serviceId: string
|
|
}
|
|
|
|
function showFeedback(message: string) {
|
|
notifySuccess(message)
|
|
}
|
|
|
|
export default function OrderActions({
|
|
orderId,
|
|
order: orderProp,
|
|
onOrderChange,
|
|
initialStatus,
|
|
chatSessionId,
|
|
serviceId,
|
|
}: OrderActionsProps) {
|
|
const currentUserId = useAuthStore((state) => state.user?.id)
|
|
const storeOrder = useOrderStore((state) => state.orders.find((item) => item.id === orderId))
|
|
const order = orderProp ?? storeOrder
|
|
const dispatchMode = useShopStore((state) => {
|
|
if (!order?.shopId) return "manual"
|
|
const shop = state.shops.find((item) => item.id === order.shopId)
|
|
return shop?.dispatchMode ?? "manual"
|
|
})
|
|
const resolvedChatSessionId = chatSessionId
|
|
|
|
const status = order?.status ?? initialStatus
|
|
const isConsumer = order?.consumerId === currentUserId
|
|
const isPlayer = order?.playerId === currentUserId
|
|
|
|
type ActionResult = { decision: ApiDecision; order?: Order }
|
|
|
|
const handleDecision = useCallback((okMessage: string, result: ActionResult) => {
|
|
if (result.decision.ok) {
|
|
showFeedback(okMessage)
|
|
return
|
|
}
|
|
|
|
notifyInfo(result.decision.error.msg)
|
|
}, [])
|
|
|
|
const runAction = useCallback(
|
|
(okMessage: string, actionCall: ActionResult | Promise<ActionResult>) => {
|
|
Promise.resolve(actionCall)
|
|
.then((result) => {
|
|
handleDecision(okMessage, result)
|
|
if (result.order) onOrderChange?.(result.order)
|
|
})
|
|
.catch(() => {
|
|
notifyInfo("操作失败")
|
|
})
|
|
},
|
|
[handleDecision, onOrderChange],
|
|
)
|
|
|
|
return (
|
|
<div className="flex gap-2 flex-wrap">
|
|
{status === "pending_payment" && isConsumer && (
|
|
<>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
runAction("订单已取消", cancelPreAccept(orderId))
|
|
}}
|
|
>
|
|
<XCircle className="mr-1 h-4 w-4" />
|
|
取消订单
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
runAction("订单支付成功", payOrder(orderId))
|
|
}}
|
|
>
|
|
<CheckCircle2 className="mr-1 h-4 w-4" />
|
|
确认支付
|
|
</Button>
|
|
</>
|
|
)}
|
|
|
|
{status === "pending_accept" && (
|
|
<>
|
|
{isConsumer && (
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
runAction("订单已取消", cancelPreAccept(orderId))
|
|
}}
|
|
>
|
|
<XCircle className="mr-1 h-4 w-4" />
|
|
取消订单
|
|
</Button>
|
|
)}
|
|
{isPlayer &&
|
|
(order?.shopId && dispatchMode === "auto" ? (
|
|
<Button disabled>
|
|
<Clock className="mr-1 h-4 w-4" />
|
|
系统派单中
|
|
</Button>
|
|
) : (
|
|
<Button
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
runAction("已接单", acceptOrder(orderId))
|
|
}}
|
|
>
|
|
<CheckCircle2 className="mr-1 h-4 w-4" />
|
|
接单
|
|
</Button>
|
|
))}
|
|
</>
|
|
)}
|
|
|
|
{(status === "in_progress" || status === "pending_close") && resolvedChatSessionId && (
|
|
<Button asChild>
|
|
<Link href={`/chat/${resolvedChatSessionId}`}>
|
|
<MessageSquare className="mr-1 h-4 w-4" />
|
|
聊天
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
|
|
{status === "in_progress" && (
|
|
<>
|
|
<Button
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
|
|
runAction("已发起结单", requestClose(orderId))
|
|
}}
|
|
>
|
|
发起结单
|
|
</Button>
|
|
<Button variant="destructive" asChild>
|
|
<Link href={`/dispute/${orderId}`}>
|
|
<AlertTriangle className="mr-1 h-4 w-4" />
|
|
发起争议
|
|
</Link>
|
|
</Button>
|
|
</>
|
|
)}
|
|
|
|
{status === "pending_close" && (
|
|
<>
|
|
{isConsumer && (
|
|
<Button
|
|
onClick={() => {
|
|
if (!currentUserId) {
|
|
notifyInfo("请先登录")
|
|
return
|
|
}
|
|
runAction("已确认结单", confirmClose(orderId))
|
|
}}
|
|
>
|
|
确认结单
|
|
</Button>
|
|
)}
|
|
<Button variant="destructive" asChild>
|
|
<Link href={`/dispute/${orderId}`}>
|
|
<AlertTriangle className="mr-1 h-4 w-4" />
|
|
发起争议
|
|
</Link>
|
|
</Button>
|
|
</>
|
|
)}
|
|
|
|
{status === "pending_review" && (
|
|
<Button asChild>
|
|
<Link href={`/review/${orderId}`}>
|
|
<Star className="mr-1 h-4 w-4" />
|
|
评价
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
|
|
{status === "completed" && (
|
|
<Button variant="outline" asChild>
|
|
<Link href={`/order/new?serviceId=${serviceId}`}>
|
|
<RefreshCw className="mr-1 h-4 w-4" />
|
|
再来一单
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
|
|
{status === "cancelled" && (
|
|
<Button variant="outline" asChild>
|
|
<Link href={`/order/new?serviceId=${serviceId}`}>
|
|
<RefreshCw className="mr-1 h-4 w-4" />
|
|
再来一单
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
|
|
{status === "disputed" && (
|
|
<Button variant="outline" asChild>
|
|
<Link href={`/dispute/${orderId}`}>查看详情</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|