6bf75b2bf7
- Extracted multiple fields in the Service component for translation. - Optimized the structure of the translation file, categorizing it by functional modules.
113 lines
3.0 KiB
TypeScript
113 lines
3.0 KiB
TypeScript
|
|
import { FormControl, FormField, FormItem, FormLabel, FormMessage, FormDescription } from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { UseFormReturn } from "react-hook-form";
|
|
import { ServiceFormData } from "./types";
|
|
import { useLanguage } from "@/contexts/LanguageContext.tsx";
|
|
|
|
interface ServiceUrlFieldProps {
|
|
form: UseFormReturn<ServiceFormData>;
|
|
}
|
|
|
|
export function ServiceUrlField({ form }: ServiceUrlFieldProps) {
|
|
const { t } = useLanguage();
|
|
const serviceType = form.watch("type");
|
|
|
|
const getPlaceholder = () => {
|
|
switch (serviceType) {
|
|
case "http":
|
|
return "https://example.com";
|
|
case "ping":
|
|
return "example.com or 192.168.1.1";
|
|
case "tcp":
|
|
return "example.com or 192.168.1.1";
|
|
case "dns":
|
|
return "example.com";
|
|
default:
|
|
return t("targetDefaultPlaceholder");
|
|
}
|
|
};
|
|
|
|
const getDescription = () => {
|
|
switch (serviceType) {
|
|
case "http":
|
|
return t("targetHTTPDesc");
|
|
case "ping":
|
|
return t("targetPINGDesc");
|
|
case "tcp":
|
|
return t("targetTCPDesc");
|
|
case "dns":
|
|
return t("targetDNSDesc");
|
|
default:
|
|
return t("targetDefaultDesc");
|
|
}
|
|
};
|
|
|
|
const getFieldLabel = () => {
|
|
switch (serviceType) {
|
|
case "dns":
|
|
return t("targetDNS");
|
|
case "ping":
|
|
return "Hostname/IP";
|
|
case "tcp":
|
|
return "Hostname/IP";
|
|
default:
|
|
return t("targetDefault");
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="url"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{getFieldLabel()}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder={getPlaceholder()}
|
|
{...field}
|
|
onChange={(e) => {
|
|
// console.log(`${serviceType === "dns" ? "Domain" : serviceType === "tcp" ? "Host" : "URL"} field changed:`, e.target.value);
|
|
field.onChange(e);
|
|
}}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription className="text-xs">
|
|
{getDescription()}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
{serviceType === "tcp" && (
|
|
<FormField
|
|
control={form.control}
|
|
name="port"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Port</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="8080"
|
|
type="number"
|
|
{...field}
|
|
onChange={(e) => {
|
|
// console.log("Port field changed:", e.target.value);
|
|
field.onChange(e);
|
|
}}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription className="text-xs">
|
|
{t("targetTCPPortDesc")}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
} |