import type { TabElementProps } from "@components/Dialog/NewDeviceDialog.tsx"; import { Button } from "@components/UI/Button.tsx"; import { Input } from "@components/UI/Input.tsx"; import { Label } from "@components/UI/Label.tsx"; import { Switch } from "@components/UI/Switch.tsx"; import { useAppStore } from "@core/stores/appStore.ts"; import { useDeviceStore } from "@core/stores/deviceStore.ts"; import { subscribeAll } from "@core/subscriptions.ts"; import { randId } from "@core/utils/randId.ts"; import { MeshDevice } from "@meshtastic/core"; import { TransportHTTP } from "@meshtastic/transport-http"; import { useState } from "react"; import { useForm, useController } from "react-hook-form"; interface FormData { ip: string; tls: boolean; } export const HTTP = ({ closeDialog }: TabElementProps) => { const isURLHTTPS = location.protocol === "https:"; const { addDevice } = useDeviceStore(); const { setSelectedDevice } = useAppStore(); const { control, handleSubmit, register } = useForm({ defaultValues: { ip: ["client.meshtastic.org", "localhost"].includes( window.location.hostname, ) ? "meshtastic.local" : window.location.host, tls: isURLHTTPS ? true : false, }, }); const { field: { value: tlsValue, onChange: setTLS }, } = useController({ name: "tls", control }); const [connectionInProgress, setConnectionInProgress] = useState(false); const onSubmit = handleSubmit(async (data) => { setConnectionInProgress(true); const id = randId(); const device = addDevice(id); const transport = await TransportHTTP.create(data.ip, data.tls); const connection = new MeshDevice(transport, id); connection.configure(); setSelectedDevice(id); device.addConnection(connection); subscribeAll(device, connection); closeDialog(); }); return (
); };