mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-14 16:16:21 +00:00
357 lines
12 KiB
TypeScript
357 lines
12 KiB
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
import { useState, useEffect, useRef } from "react"
|
|
import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { CheckCircle2, XCircle, Loader2, Activity, GripHorizontal } from "lucide-react"
|
|
import { TerminalPanel } from "./terminal-panel"
|
|
import { API_PORT } from "@/lib/api-config"
|
|
import { useIsMobile } from "@/hooks/use-mobile"
|
|
|
|
interface WebInteraction {
|
|
type: "yesno" | "menu" | "msgbox" | "input" | "inputbox"
|
|
id: string
|
|
title: string
|
|
message: string
|
|
options?: Array<{ label: string; value: string }>
|
|
default?: string
|
|
}
|
|
|
|
interface ScriptTerminalModalProps {
|
|
open: boolean
|
|
onClose: () => void
|
|
scriptPath: string
|
|
scriptName: string
|
|
params?: Record<string, string>
|
|
title: string
|
|
description: string
|
|
}
|
|
|
|
export function ScriptTerminalModal({
|
|
open,
|
|
onClose,
|
|
scriptPath,
|
|
scriptName,
|
|
params = {},
|
|
title,
|
|
description,
|
|
}: ScriptTerminalModalProps) {
|
|
const [sessionId] = useState(() => Math.random().toString(36).substring(7))
|
|
const [isComplete, setIsComplete] = useState(false)
|
|
const [exitCode, setExitCode] = useState<number | null>(null)
|
|
const [currentInteraction, setCurrentInteraction] = useState<WebInteraction | null>(null)
|
|
const [interactionInput, setInteractionInput] = useState("")
|
|
const wsRef = useRef<WebSocket | null>(null)
|
|
const [isConnected, setIsConnected] = useState(false)
|
|
const checkConnectionInterval = useRef<NodeJS.Timeout | null>(null)
|
|
const isMobile = useIsMobile()
|
|
|
|
const [modalHeight, setModalHeight] = useState(80)
|
|
const [isResizing, setIsResizing] = useState(false)
|
|
const startYRef = useRef(0)
|
|
const startHeightRef = useRef(80)
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
setIsComplete(false)
|
|
setExitCode(null)
|
|
setInteractionInput("")
|
|
setCurrentInteraction(null)
|
|
setIsConnected(false)
|
|
|
|
checkConnectionInterval.current = setInterval(() => {
|
|
if (wsRef.current) {
|
|
setIsConnected(wsRef.current.readyState === WebSocket.OPEN)
|
|
}
|
|
}, 500)
|
|
}
|
|
|
|
return () => {
|
|
if (checkConnectionInterval.current) {
|
|
clearInterval(checkConnectionInterval.current)
|
|
}
|
|
}
|
|
}, [open])
|
|
|
|
const handleResizeStart = (e: React.MouseEvent | React.TouchEvent) => {
|
|
if (isMobile) return
|
|
|
|
setIsResizing(true)
|
|
startYRef.current = "touches" in e ? e.touches[0].clientY : e.clientY
|
|
startHeightRef.current = modalHeight
|
|
|
|
e.preventDefault()
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (!isResizing) return
|
|
|
|
const handleResizeMove = (e: MouseEvent | TouchEvent) => {
|
|
const currentY = "touches" in e ? e.touches[0].clientY : e.clientY
|
|
const deltaY = currentY - startYRef.current
|
|
const viewportHeight = window.innerHeight
|
|
const deltaVh = (deltaY / viewportHeight) * 100
|
|
|
|
const newHeight = Math.min(Math.max(startHeightRef.current + deltaVh, 50), 95)
|
|
setModalHeight(newHeight)
|
|
}
|
|
|
|
const handleResizeEnd = () => {
|
|
setIsResizing(false)
|
|
}
|
|
|
|
document.addEventListener("mousemove", handleResizeMove)
|
|
document.addEventListener("mouseup", handleResizeEnd)
|
|
document.addEventListener("touchmove", handleResizeMove)
|
|
document.addEventListener("touchend", handleResizeEnd)
|
|
|
|
return () => {
|
|
document.removeEventListener("mousemove", handleResizeMove)
|
|
document.removeEventListener("mouseup", handleResizeEnd)
|
|
document.removeEventListener("touchmove", handleResizeMove)
|
|
document.removeEventListener("touchend", handleResizeEnd)
|
|
}
|
|
}, [isResizing])
|
|
|
|
const getScriptWebSocketUrl = (): string => {
|
|
if (typeof window === "undefined") {
|
|
return `ws://localhost:${API_PORT}/ws/script/${sessionId}`
|
|
}
|
|
|
|
const { hostname, protocol } = window.location
|
|
const wsProtocol = protocol === "https:" ? "wss:" : "ws:"
|
|
return `${wsProtocol}//${hostname}:${API_PORT}/ws/script/${sessionId}`
|
|
}
|
|
|
|
const wsUrl = getScriptWebSocketUrl()
|
|
|
|
const handleWebSocketCreated = (ws: WebSocket) => {
|
|
wsRef.current = ws
|
|
setIsConnected(ws.readyState === WebSocket.OPEN)
|
|
}
|
|
|
|
const handleWebInteraction = (interaction: WebInteraction) => {
|
|
setCurrentInteraction(interaction)
|
|
}
|
|
|
|
const handleInteractionResponse = (value: string) => {
|
|
if (!wsRef.current || !currentInteraction) {
|
|
return
|
|
}
|
|
|
|
if (value === "cancel" || value === "") {
|
|
setCurrentInteraction(null)
|
|
setInteractionInput("")
|
|
handleCloseModal()
|
|
return
|
|
}
|
|
|
|
const response = JSON.stringify({
|
|
type: "interaction_response",
|
|
id: currentInteraction.id,
|
|
value: value,
|
|
})
|
|
|
|
if (wsRef.current.readyState === WebSocket.OPEN) {
|
|
wsRef.current.send(response)
|
|
}
|
|
|
|
setCurrentInteraction(null)
|
|
setInteractionInput("")
|
|
}
|
|
|
|
const handleCloseModal = () => {
|
|
if (wsRef.current && wsRef.current.readyState === WebSocket.OPEN) {
|
|
wsRef.current.close()
|
|
}
|
|
if (checkConnectionInterval.current) {
|
|
clearInterval(checkConnectionInterval.current)
|
|
}
|
|
onClose()
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Dialog open={open}>
|
|
<DialogContent
|
|
className="max-w-4xl p-0 flex flex-col"
|
|
style={{ height: isMobile ? "80vh" : `${modalHeight}vh` }}
|
|
onInteractOutside={(e) => e.preventDefault()}
|
|
onEscapeKeyDown={(e) => e.preventDefault()}
|
|
>
|
|
<DialogTitle className="sr-only">{title}</DialogTitle>
|
|
|
|
<div className="flex items-center gap-2 p-4 border-b">
|
|
{isComplete ? (
|
|
exitCode === 0 ? (
|
|
<CheckCircle2 className="h-5 w-5 text-green-500" />
|
|
) : (
|
|
<XCircle className="h-5 w-5 text-red-500" />
|
|
)
|
|
) : (
|
|
<Loader2 className="h-5 w-5 animate-spin" />
|
|
)}
|
|
<div>
|
|
<h2 className="text-lg font-semibold">{title}</h2>
|
|
{description && <p className="text-sm text-muted-foreground">{description}</p>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex-1 overflow-hidden">
|
|
<TerminalPanel
|
|
websocketUrl={wsUrl}
|
|
initMessage={{
|
|
script_path: scriptPath,
|
|
params: params,
|
|
}}
|
|
onWebInteraction={handleWebInteraction}
|
|
onWebSocketCreated={handleWebSocketCreated}
|
|
isScriptModal={true}
|
|
/>
|
|
</div>
|
|
|
|
{!isMobile && (
|
|
<div
|
|
className={`h-2 cursor-ns-resize flex items-center justify-center transition-colors ${
|
|
isResizing ? "bg-blue-500" : "bg-zinc-800 hover:bg-blue-500/50"
|
|
}`}
|
|
onMouseDown={handleResizeStart}
|
|
onTouchStart={handleResizeStart}
|
|
>
|
|
<GripHorizontal className={`h-4 w-4 ${isResizing ? "text-white" : "text-zinc-500"}`} />
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex items-center justify-between p-4 border-t">
|
|
<div className="flex items-center gap-3">
|
|
<Activity className="h-5 w-5 text-blue-500" />
|
|
<div
|
|
className={`w-2 h-2 rounded-full ${isConnected ? "bg-green-500" : "bg-red-500"}`}
|
|
title={isConnected ? "Connected" : "Disconnected"}
|
|
></div>
|
|
<span className="text-xs text-muted-foreground">{isConnected ? "Online" : "Offline"}</span>
|
|
</div>
|
|
|
|
<Button
|
|
onClick={handleCloseModal}
|
|
variant="outline"
|
|
className="bg-red-600 hover:bg-red-700 border-red-500 text-white"
|
|
>
|
|
Close
|
|
</Button>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
{currentInteraction && (
|
|
<Dialog open={true}>
|
|
<DialogContent
|
|
className="max-w-4xl max-h-[80vh] overflow-y-auto"
|
|
onInteractOutside={(e) => e.preventDefault()}
|
|
onEscapeKeyDown={(e) => e.preventDefault()}
|
|
hideClose
|
|
>
|
|
<DialogTitle>{currentInteraction.title}</DialogTitle>
|
|
<div className="space-y-4">
|
|
<p className="whitespace-pre-wrap">{currentInteraction.message}</p>
|
|
|
|
{currentInteraction.type === "yesno" && (
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={() => handleInteractionResponse("yes")}
|
|
className="flex-1 bg-blue-600 hover:bg-blue-700 text-white"
|
|
>
|
|
Yes
|
|
</Button>
|
|
<Button
|
|
onClick={() => handleInteractionResponse("cancel")}
|
|
variant="outline"
|
|
className="flex-1 hover:bg-red-600 hover:text-white hover:border-red-600"
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
)}
|
|
|
|
{currentInteraction.type === "menu" && currentInteraction.options && (
|
|
<div className="space-y-2">
|
|
{currentInteraction.options.map((option) => (
|
|
<Button
|
|
key={option.value}
|
|
onClick={() => handleInteractionResponse(option.value)}
|
|
variant="outline"
|
|
className="w-full justify-start hover:bg-blue-600 hover:text-white"
|
|
>
|
|
{option.label}
|
|
</Button>
|
|
))}
|
|
<Button
|
|
onClick={() => handleInteractionResponse("cancel")}
|
|
variant="outline"
|
|
className="w-full hover:bg-red-600 hover:text-white hover:border-red-600"
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
)}
|
|
|
|
{(currentInteraction.type === "input" || currentInteraction.type === "inputbox") && (
|
|
<div className="space-y-2">
|
|
<Label>Your input:</Label>
|
|
<Input
|
|
value={interactionInput}
|
|
onChange={(e) => setInteractionInput(e.target.value)}
|
|
onKeyDown={(e) => {
|
|
if (e.key === "Enter") {
|
|
handleInteractionResponse(interactionInput)
|
|
}
|
|
}}
|
|
placeholder={currentInteraction.default || ""}
|
|
/>
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={() => handleInteractionResponse(interactionInput)}
|
|
className="flex-1 bg-blue-600 hover:bg-blue-700"
|
|
>
|
|
Submit
|
|
</Button>
|
|
<Button
|
|
onClick={() => handleInteractionResponse("cancel")}
|
|
variant="outline"
|
|
className="flex-1 hover:bg-red-600 hover:text-white hover:border-red-600"
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{currentInteraction.type === "msgbox" && (
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={() => handleInteractionResponse("ok")}
|
|
className="flex-1 bg-blue-600 hover:bg-blue-700"
|
|
>
|
|
OK
|
|
</Button>
|
|
<Button
|
|
onClick={() => handleInteractionResponse("cancel")}
|
|
variant="outline"
|
|
className="flex-1 hover:bg-red-600 hover:text-white hover:border-red-600"
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)}
|
|
</>
|
|
)
|
|
}
|