147 lines
3.9 KiB
TypeScript
147 lines
3.9 KiB
TypeScript
import type { UseFormReturn } from "react-hook-form";
|
|
import type { FormValues } from "../create-volume-form";
|
|
import {
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "../../../../components/ui/form";
|
|
import { Input } from "../../../../components/ui/input";
|
|
import { SecretInput } from "../../../../components/ui/secret-input";
|
|
|
|
type Props = {
|
|
form: UseFormReturn<FormValues>;
|
|
};
|
|
|
|
export const WebDAVForm = ({ form }: Props) => {
|
|
return (
|
|
<>
|
|
<FormField
|
|
control={form.control}
|
|
name="server"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Server</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="example.com" {...field} />
|
|
</FormControl>
|
|
<FormDescription>WebDAV server hostname or IP address.</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="path"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Path</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="/webdav" {...field} />
|
|
</FormControl>
|
|
<FormDescription>Path to the WebDAV directory on the server.</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username (Optional)</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="admin" {...field} />
|
|
</FormControl>
|
|
<FormDescription>Username for WebDAV authentication (optional).</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password (Optional)</FormLabel>
|
|
<FormControl>
|
|
<SecretInput placeholder="••••••••" value={field.value ?? ""} onChange={field.onChange} />
|
|
</FormControl>
|
|
<FormDescription>Password for WebDAV authentication (optional).</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="port"
|
|
defaultValue={80}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Port</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="number"
|
|
placeholder="80"
|
|
{...field}
|
|
onChange={(e) => field.onChange(parseInt(e.target.value, 10) || undefined)}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>WebDAV server port (default: 80 for HTTP, 443 for HTTPS).</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="ssl"
|
|
defaultValue={false}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Use SSL/HTTPS</FormLabel>
|
|
<FormControl>
|
|
<div className="flex items-center space-x-2">
|
|
<input
|
|
type="checkbox"
|
|
checked={field.value ?? false}
|
|
onChange={(e) => field.onChange(e.target.checked)}
|
|
className="rounded border-gray-300"
|
|
/>
|
|
<span className="text-sm">Enable HTTPS for secure connections</span>
|
|
</div>
|
|
</FormControl>
|
|
<FormDescription>Use HTTPS instead of HTTP for secure connections.</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="readOnly"
|
|
defaultValue={false}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Read-only Mode</FormLabel>
|
|
<FormControl>
|
|
<div className="flex items-center space-x-2">
|
|
<input
|
|
type="checkbox"
|
|
checked={field.value ?? false}
|
|
onChange={(e) => field.onChange(e.target.checked)}
|
|
className="rounded border-gray-300"
|
|
/>
|
|
<span className="text-sm">Mount volume as read-only</span>
|
|
</div>
|
|
</FormControl>
|
|
<FormDescription>
|
|
Prevent any modifications to the volume. Recommended for backup sources and sensitive data.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</>
|
|
);
|
|
};
|