Merge pull request #11 from huabeitech/feature/kefu-chat-window-controls
feat(kefu): adapt chat controls by launch mode
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
CheckCircle2Icon,
|
||||||
Maximize2Icon,
|
Maximize2Icon,
|
||||||
Minimize2Icon,
|
Minimize2Icon,
|
||||||
MinusIcon,
|
MinusIcon,
|
||||||
@@ -68,13 +69,27 @@ function useKefuSystemTheme() {
|
|||||||
}, [])
|
}, [])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isEmbeddedInHost() {
|
||||||
|
if (typeof window === "undefined") {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return window.parent !== window
|
||||||
|
} catch {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function KefuChatShell() {
|
export function KefuChatShell() {
|
||||||
useKefuSystemTheme()
|
useKefuSystemTheme()
|
||||||
|
|
||||||
const messageListRef = useRef<KefuMessageListHandle | null>(null)
|
const messageListRef = useRef<KefuMessageListHandle | null>(null)
|
||||||
|
const [isEmbedded] = useState(() => isEmbeddedInHost())
|
||||||
const [isMaximized, setIsMaximized] = useState(false)
|
const [isMaximized, setIsMaximized] = useState(false)
|
||||||
const [isCloseDialogOpen, setIsCloseDialogOpen] = useState(false)
|
const [isCloseDialogOpen, setIsCloseDialogOpen] = useState(false)
|
||||||
const [isClosingConversation, setIsClosingConversation] = useState(false)
|
const [isClosingConversation, setIsClosingConversation] = useState(false)
|
||||||
|
const [isConversationClosed, setIsConversationClosed] = useState(false)
|
||||||
|
|
||||||
const {
|
const {
|
||||||
title,
|
title,
|
||||||
@@ -200,6 +215,10 @@ export function KefuChatShell() {
|
|||||||
requestKefuHostToggleMaximize()
|
requestKefuHostToggleMaximize()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handleRestartConversation() {
|
||||||
|
window.location.reload()
|
||||||
|
}
|
||||||
|
|
||||||
async function confirmCloseConversation() {
|
async function confirmCloseConversation() {
|
||||||
if (isClosingConversation) {
|
if (isClosingConversation) {
|
||||||
return
|
return
|
||||||
@@ -210,7 +229,11 @@ export function KefuChatShell() {
|
|||||||
await closeConversation()
|
await closeConversation()
|
||||||
}
|
}
|
||||||
setIsCloseDialogOpen(false)
|
setIsCloseDialogOpen(false)
|
||||||
requestKefuHostClose()
|
if (isEmbedded) {
|
||||||
|
requestKefuHostClose()
|
||||||
|
} else {
|
||||||
|
setIsConversationClosed(true)
|
||||||
|
}
|
||||||
} catch (closeError) {
|
} catch (closeError) {
|
||||||
window.alert(closeError instanceof Error ? closeError.message : "关闭会话失败")
|
window.alert(closeError instanceof Error ? closeError.message : "关闭会话失败")
|
||||||
} finally {
|
} finally {
|
||||||
@@ -231,6 +254,47 @@ export function KefuChatShell() {
|
|||||||
return () => window.removeEventListener("keydown", handleKeyDown)
|
return () => window.removeEventListener("keydown", handleKeyDown)
|
||||||
}, [isCloseDialogOpen, isClosingConversation])
|
}, [isCloseDialogOpen, isClosingConversation])
|
||||||
|
|
||||||
|
if (isConversationClosed) {
|
||||||
|
return (
|
||||||
|
<main
|
||||||
|
className="relative flex h-screen overflow-hidden bg-muted text-foreground"
|
||||||
|
style={{ "--primary": themeColor } as CSSProperties}
|
||||||
|
>
|
||||||
|
<section className="flex h-full w-full flex-col overflow-hidden border border-border bg-card text-card-foreground">
|
||||||
|
<header className="shrink-0 border-b border-border bg-card/95 px-4 py-3 shadow-[0_8px_24px_rgba(15,23,42,0.04)] dark:shadow-none">
|
||||||
|
<div className="min-w-0">
|
||||||
|
<div className="truncate text-base font-semibold text-foreground">
|
||||||
|
{title}
|
||||||
|
</div>
|
||||||
|
{subtitle ? (
|
||||||
|
<div className="mt-1 truncate text-xs text-muted-foreground">
|
||||||
|
{subtitle}
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div className="flex min-h-0 flex-1 items-center justify-center bg-muted/70 px-6">
|
||||||
|
<div className="grid max-w-sm justify-items-center gap-4 text-center">
|
||||||
|
<div className="flex size-14 items-center justify-center rounded-full bg-emerald-50 text-emerald-600 ring-1 ring-emerald-100 dark:bg-emerald-950/40 dark:text-emerald-300 dark:ring-emerald-900">
|
||||||
|
<CheckCircle2Icon className="size-7" />
|
||||||
|
</div>
|
||||||
|
<div className="grid gap-2">
|
||||||
|
<div className="text-lg font-semibold text-foreground">会话已结束</div>
|
||||||
|
<p className="text-sm leading-6 text-muted-foreground">
|
||||||
|
当前客服会话已关闭,如需继续咨询可以重新发起对话。
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Button type="button" onClick={handleRestartConversation}>
|
||||||
|
重新发起对话
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className="relative flex h-screen overflow-hidden bg-muted text-foreground"
|
className="relative flex h-screen overflow-hidden bg-muted text-foreground"
|
||||||
@@ -261,32 +325,36 @@ export function KefuChatShell() {
|
|||||||
>
|
>
|
||||||
<RotateCwIcon className="size-4" />
|
<RotateCwIcon className="size-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
{isEmbedded ? (
|
||||||
type="button"
|
<>
|
||||||
variant="outline"
|
<Button
|
||||||
size="icon-sm"
|
type="button"
|
||||||
onClick={handleMinimize}
|
variant="outline"
|
||||||
aria-label="收起聊天窗口"
|
size="icon-sm"
|
||||||
title="收起聊天窗口"
|
onClick={handleMinimize}
|
||||||
className="bg-background text-muted-foreground hover:text-foreground"
|
aria-label="收起聊天窗口"
|
||||||
>
|
title="收起聊天窗口"
|
||||||
<MinusIcon className="size-4" />
|
className="bg-background text-muted-foreground hover:text-foreground"
|
||||||
</Button>
|
>
|
||||||
<Button
|
<MinusIcon className="size-4" />
|
||||||
type="button"
|
</Button>
|
||||||
variant="outline"
|
<Button
|
||||||
size="icon-sm"
|
type="button"
|
||||||
onClick={handleToggleMaximize}
|
variant="outline"
|
||||||
aria-label={isMaximized ? "取消最大化" : "最大化聊天窗口"}
|
size="icon-sm"
|
||||||
title={isMaximized ? "取消最大化" : "最大化聊天窗口"}
|
onClick={handleToggleMaximize}
|
||||||
className="bg-background text-muted-foreground hover:text-emerald-700 dark:hover:text-emerald-400"
|
aria-label={isMaximized ? "取消最大化" : "最大化聊天窗口"}
|
||||||
>
|
title={isMaximized ? "取消最大化" : "最大化聊天窗口"}
|
||||||
{isMaximized ? (
|
className="bg-background text-muted-foreground hover:text-emerald-700 dark:hover:text-emerald-400"
|
||||||
<Minimize2Icon className="size-4" />
|
>
|
||||||
) : (
|
{isMaximized ? (
|
||||||
<Maximize2Icon className="size-4" />
|
<Minimize2Icon className="size-4" />
|
||||||
)}
|
) : (
|
||||||
</Button>
|
<Maximize2Icon className="size-4" />
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
) : null}
|
||||||
<Button
|
<Button
|
||||||
type="button"
|
type="button"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
|
|||||||
Reference in New Issue
Block a user