mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-11 07:45:41 +03:00
641 lines
20 KiB
TypeScript
641 lines
20 KiB
TypeScript
|
|
import { Button } from "@/components/ui/button";
|
||
|
|
import { useTranslation } from "react-i18next";
|
||
|
|
import { useState, useCallback, useEffect } from "react";
|
||
|
|
import ActivityIndicator from "@/components/indicators/activity-indicator";
|
||
|
|
import axios from "axios";
|
||
|
|
import { toast } from "sonner";
|
||
|
|
import type {
|
||
|
|
WizardFormData,
|
||
|
|
TestResult,
|
||
|
|
StreamConfig,
|
||
|
|
StreamRole,
|
||
|
|
OnvifProbeResponse,
|
||
|
|
CandidateTestMap,
|
||
|
|
FfprobeStream,
|
||
|
|
FfprobeData,
|
||
|
|
FfprobeResponse,
|
||
|
|
} from "@/types/cameraWizard";
|
||
|
|
import { FaCircleCheck } from "react-icons/fa6";
|
||
|
|
import { Card, CardContent, CardTitle } from "../../ui/card";
|
||
|
|
import ProbeDialog from "./ProbeDialog";
|
||
|
|
import { CAMERA_BRANDS } from "@/types/cameraWizard";
|
||
|
|
import { detectReolinkCamera } from "@/utils/cameraUtil";
|
||
|
|
|
||
|
|
type Step2ProbeOrSnapshotProps = {
|
||
|
|
wizardData: Partial<WizardFormData>;
|
||
|
|
onUpdate: (data: Partial<WizardFormData>) => void;
|
||
|
|
onNext: (data?: Partial<WizardFormData>) => void;
|
||
|
|
onBack: () => void;
|
||
|
|
probeMode: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Step2ProbeOrSnapshot({
|
||
|
|
wizardData,
|
||
|
|
onUpdate,
|
||
|
|
onNext,
|
||
|
|
onBack,
|
||
|
|
probeMode,
|
||
|
|
}: Step2ProbeOrSnapshotProps) {
|
||
|
|
const { t } = useTranslation(["views/settings"]);
|
||
|
|
const [isTesting, setIsTesting] = useState(false);
|
||
|
|
const [testStatus, setTestStatus] = useState<string>("");
|
||
|
|
const [testResult, setTestResult] = useState<TestResult | null>(null);
|
||
|
|
const [isProbing, setIsProbing] = useState(false);
|
||
|
|
const [probeError, setProbeError] = useState<string | null>(null);
|
||
|
|
const [probeResult, setProbeResult] = useState<OnvifProbeResponse | null>(
|
||
|
|
null,
|
||
|
|
);
|
||
|
|
const [probeDialogOpen, setProbeDialogOpen] = useState(false);
|
||
|
|
const [selectedCandidateUris, setSelectedCandidateUris] = useState<string[]>(
|
||
|
|
[],
|
||
|
|
);
|
||
|
|
const [candidateTests, setCandidateTests] = useState<CandidateTestMap>(
|
||
|
|
{} as CandidateTestMap,
|
||
|
|
);
|
||
|
|
const [testingCandidates, setTestingCandidates] = useState<
|
||
|
|
Record<string, boolean>
|
||
|
|
>({} as Record<string, boolean>);
|
||
|
|
|
||
|
|
const handleSelectCandidate = useCallback((uri: string) => {
|
||
|
|
setSelectedCandidateUris((s) => {
|
||
|
|
if (s.includes(uri)) {
|
||
|
|
return s.filter((u) => u !== uri);
|
||
|
|
}
|
||
|
|
return [...s, uri];
|
||
|
|
});
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
const probeUri = useCallback(
|
||
|
|
async (
|
||
|
|
uri: string,
|
||
|
|
fetchSnapshot = false,
|
||
|
|
setStatus?: (s: string) => void,
|
||
|
|
): Promise<TestResult> => {
|
||
|
|
try {
|
||
|
|
const probeResponse = await axios.get("ffprobe", {
|
||
|
|
params: { paths: uri, detailed: true },
|
||
|
|
timeout: 10000,
|
||
|
|
});
|
||
|
|
|
||
|
|
let probeData: FfprobeResponse | null = null;
|
||
|
|
if (
|
||
|
|
probeResponse.data &&
|
||
|
|
probeResponse.data.length > 0 &&
|
||
|
|
probeResponse.data[0].return_code === 0
|
||
|
|
) {
|
||
|
|
probeData = probeResponse.data[0];
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!probeData) {
|
||
|
|
const error =
|
||
|
|
Array.isArray(probeResponse.data?.[0]?.stderr) &&
|
||
|
|
probeResponse.data[0].stderr.length > 0
|
||
|
|
? probeResponse.data[0].stderr.join("\n")
|
||
|
|
: "Unable to probe stream";
|
||
|
|
return { success: false, error };
|
||
|
|
}
|
||
|
|
|
||
|
|
let ffprobeData: FfprobeData;
|
||
|
|
if (typeof probeData.stdout === "string") {
|
||
|
|
try {
|
||
|
|
ffprobeData = JSON.parse(probeData.stdout as string) as FfprobeData;
|
||
|
|
} catch {
|
||
|
|
ffprobeData = { streams: [] };
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
ffprobeData = probeData.stdout as FfprobeData;
|
||
|
|
}
|
||
|
|
|
||
|
|
const streams = ffprobeData.streams || [];
|
||
|
|
|
||
|
|
const videoStream = streams.find(
|
||
|
|
(s: FfprobeStream) =>
|
||
|
|
s.codec_type === "video" ||
|
||
|
|
s.codec_name?.includes("h264") ||
|
||
|
|
s.codec_name?.includes("hevc"),
|
||
|
|
);
|
||
|
|
|
||
|
|
const audioStream = streams.find(
|
||
|
|
(s: FfprobeStream) =>
|
||
|
|
s.codec_type === "audio" ||
|
||
|
|
s.codec_name?.includes("aac") ||
|
||
|
|
s.codec_name?.includes("mp3") ||
|
||
|
|
s.codec_name?.includes("pcm_mulaw") ||
|
||
|
|
s.codec_name?.includes("pcm_alaw"),
|
||
|
|
);
|
||
|
|
|
||
|
|
const resolution = videoStream
|
||
|
|
? `${videoStream.width}x${videoStream.height}`
|
||
|
|
: undefined;
|
||
|
|
|
||
|
|
const fps = videoStream?.avg_frame_rate
|
||
|
|
? parseFloat(videoStream.avg_frame_rate.split("/")[0]) /
|
||
|
|
parseFloat(videoStream.avg_frame_rate.split("/")[1])
|
||
|
|
: undefined;
|
||
|
|
|
||
|
|
let snapshotBase64: string | undefined = undefined;
|
||
|
|
if (fetchSnapshot) {
|
||
|
|
if (setStatus) {
|
||
|
|
setStatus(t("cameraWizard.step2.testing.fetchingSnapshot"));
|
||
|
|
}
|
||
|
|
try {
|
||
|
|
const snapshotResponse = await axios.get("ffprobe/snapshot", {
|
||
|
|
params: { url: uri },
|
||
|
|
responseType: "blob",
|
||
|
|
timeout: 10000,
|
||
|
|
});
|
||
|
|
const snapshotBlob = snapshotResponse.data;
|
||
|
|
snapshotBase64 = await new Promise<string>((resolve) => {
|
||
|
|
const reader = new FileReader();
|
||
|
|
reader.onload = () => resolve(reader.result as string);
|
||
|
|
reader.readAsDataURL(snapshotBlob);
|
||
|
|
});
|
||
|
|
} catch (snapshotError) {
|
||
|
|
snapshotBase64 = undefined;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const streamTestResult: TestResult = {
|
||
|
|
success: true,
|
||
|
|
snapshot: snapshotBase64,
|
||
|
|
resolution,
|
||
|
|
videoCodec: videoStream?.codec_name,
|
||
|
|
audioCodec: audioStream?.codec_name,
|
||
|
|
fps: fps && !isNaN(fps) ? fps : undefined,
|
||
|
|
};
|
||
|
|
|
||
|
|
return streamTestResult;
|
||
|
|
} catch (err) {
|
||
|
|
const axiosError = err as {
|
||
|
|
response?: { data?: { message?: string; detail?: string } };
|
||
|
|
message?: string;
|
||
|
|
};
|
||
|
|
const errorMessage =
|
||
|
|
axiosError.response?.data?.message ||
|
||
|
|
axiosError.response?.data?.detail ||
|
||
|
|
axiosError.message ||
|
||
|
|
"Connection failed";
|
||
|
|
return { success: false, error: errorMessage };
|
||
|
|
}
|
||
|
|
},
|
||
|
|
[t],
|
||
|
|
);
|
||
|
|
|
||
|
|
const probeCamera = useCallback(async () => {
|
||
|
|
if (!wizardData.host) {
|
||
|
|
toast.error(t("cameraWizard.step2.errors.hostRequired"));
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
setIsProbing(true);
|
||
|
|
setProbeError(null);
|
||
|
|
setProbeResult(null);
|
||
|
|
|
||
|
|
try {
|
||
|
|
const response = await axios.get("/onvif/probe", {
|
||
|
|
params: {
|
||
|
|
host: wizardData.host,
|
||
|
|
port: wizardData.onvifPort ?? 80,
|
||
|
|
username: wizardData.username || "",
|
||
|
|
password: wizardData.password || "",
|
||
|
|
test: false,
|
||
|
|
},
|
||
|
|
timeout: 30000,
|
||
|
|
});
|
||
|
|
|
||
|
|
if (response.data && response.data.success) {
|
||
|
|
setProbeResult(response.data);
|
||
|
|
setProbeDialogOpen(true);
|
||
|
|
} else {
|
||
|
|
setProbeError(response.data?.message || "Probe failed");
|
||
|
|
}
|
||
|
|
} catch (error) {
|
||
|
|
const axiosError = error as {
|
||
|
|
response?: { data?: { message?: string; detail?: string } };
|
||
|
|
message?: string;
|
||
|
|
};
|
||
|
|
const errorMessage =
|
||
|
|
axiosError.response?.data?.message ||
|
||
|
|
axiosError.response?.data?.detail ||
|
||
|
|
axiosError.message ||
|
||
|
|
"Failed to probe camera";
|
||
|
|
setProbeError(errorMessage);
|
||
|
|
toast.error(t("cameraWizard.step2.probeFailed", { error: errorMessage }));
|
||
|
|
} finally {
|
||
|
|
setIsProbing(false);
|
||
|
|
}
|
||
|
|
}, [wizardData, t]);
|
||
|
|
|
||
|
|
const testAllSelectedCandidates = useCallback(async () => {
|
||
|
|
const uris = selectedCandidateUris;
|
||
|
|
if (!uris || uris.length === 0) {
|
||
|
|
toast.error(t("cameraWizard.commonErrors.noUrl"));
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
setIsTesting(true);
|
||
|
|
setTestStatus(t("cameraWizard.step2.testing.probingMetadata"));
|
||
|
|
|
||
|
|
const streamConfigs: StreamConfig[] = [];
|
||
|
|
|
||
|
|
try {
|
||
|
|
for (let i = 0; i < uris.length; i++) {
|
||
|
|
const uri = uris[i];
|
||
|
|
const streamTestResult = await probeUri(uri, false);
|
||
|
|
|
||
|
|
if (streamTestResult && streamTestResult.success) {
|
||
|
|
const streamId = `stream_${Date.now()}_${i}`;
|
||
|
|
streamConfigs.push({
|
||
|
|
id: streamId,
|
||
|
|
url: uri,
|
||
|
|
roles:
|
||
|
|
streamConfigs.length === 0
|
||
|
|
? (["detect"] as StreamRole[])
|
||
|
|
: ([] as StreamRole[]),
|
||
|
|
testResult: streamTestResult,
|
||
|
|
});
|
||
|
|
setCandidateTests((s) => ({ ...s, [uri]: streamTestResult }));
|
||
|
|
} else {
|
||
|
|
setCandidateTests((s) => ({
|
||
|
|
...s,
|
||
|
|
[uri]: streamTestResult,
|
||
|
|
}));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
if (streamConfigs.length > 0) {
|
||
|
|
onNext({ streams: streamConfigs });
|
||
|
|
toast.success(t("cameraWizard.step2.testSuccess"));
|
||
|
|
setProbeDialogOpen(false);
|
||
|
|
} else {
|
||
|
|
toast.error(
|
||
|
|
t("cameraWizard.commonErrors.testFailed", {
|
||
|
|
error: "No streams succeeded",
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
} catch (error) {
|
||
|
|
const axiosError = error as {
|
||
|
|
response?: { data?: { message?: string; detail?: string } };
|
||
|
|
message?: string;
|
||
|
|
};
|
||
|
|
const errorMessage =
|
||
|
|
axiosError.response?.data?.message ||
|
||
|
|
axiosError.response?.data?.detail ||
|
||
|
|
axiosError.message ||
|
||
|
|
"Connection failed";
|
||
|
|
toast.error(
|
||
|
|
t("cameraWizard.commonErrors.testFailed", { error: errorMessage }),
|
||
|
|
);
|
||
|
|
} finally {
|
||
|
|
setIsTesting(false);
|
||
|
|
setTestStatus("");
|
||
|
|
}
|
||
|
|
}, [selectedCandidateUris, t, onNext, probeUri]);
|
||
|
|
|
||
|
|
const testCandidate = useCallback(
|
||
|
|
async (uri: string) => {
|
||
|
|
if (!uri) return;
|
||
|
|
setTestingCandidates((s) => ({ ...s, [uri]: true }));
|
||
|
|
try {
|
||
|
|
const result = await probeUri(uri, false);
|
||
|
|
setCandidateTests((s) => ({ ...s, [uri]: result }));
|
||
|
|
} finally {
|
||
|
|
setTestingCandidates((s) => ({ ...s, [uri]: false }));
|
||
|
|
}
|
||
|
|
},
|
||
|
|
[probeUri],
|
||
|
|
);
|
||
|
|
|
||
|
|
const generateDynamicStreamUrl = useCallback(
|
||
|
|
async (data: Partial<WizardFormData>): Promise<string | null> => {
|
||
|
|
const brand = CAMERA_BRANDS.find((b) => b.value === data.brandTemplate);
|
||
|
|
if (!brand || !data.host) return null;
|
||
|
|
|
||
|
|
let protocol = undefined;
|
||
|
|
if (data.brandTemplate === "reolink" && data.username && data.password) {
|
||
|
|
try {
|
||
|
|
protocol = await detectReolinkCamera(
|
||
|
|
data.host,
|
||
|
|
data.username,
|
||
|
|
data.password,
|
||
|
|
);
|
||
|
|
} catch (error) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const protocolKey = protocol || "rtsp";
|
||
|
|
const templates: Record<string, string> = brand.dynamicTemplates || {};
|
||
|
|
|
||
|
|
if (Object.keys(templates).includes(protocolKey)) {
|
||
|
|
const template =
|
||
|
|
templates[protocolKey as keyof typeof brand.dynamicTemplates];
|
||
|
|
return template
|
||
|
|
.replace("{username}", data.username || "")
|
||
|
|
.replace("{password}", data.password || "")
|
||
|
|
.replace("{host}", data.host);
|
||
|
|
}
|
||
|
|
|
||
|
|
return null;
|
||
|
|
},
|
||
|
|
[],
|
||
|
|
);
|
||
|
|
|
||
|
|
const generateStreamUrl = useCallback(
|
||
|
|
async (data: Partial<WizardFormData>): Promise<string> => {
|
||
|
|
if (data.brandTemplate === "other") {
|
||
|
|
return data.customUrl || "";
|
||
|
|
}
|
||
|
|
|
||
|
|
const brand = CAMERA_BRANDS.find((b) => b.value === data.brandTemplate);
|
||
|
|
if (!brand || !data.host) return "";
|
||
|
|
|
||
|
|
if (brand.template === "dynamic" && "dynamicTemplates" in brand) {
|
||
|
|
const dynamicUrl = await generateDynamicStreamUrl(data);
|
||
|
|
|
||
|
|
if (dynamicUrl) {
|
||
|
|
return dynamicUrl;
|
||
|
|
}
|
||
|
|
|
||
|
|
return "";
|
||
|
|
}
|
||
|
|
|
||
|
|
return brand.template
|
||
|
|
.replace("{username}", data.username || "")
|
||
|
|
.replace("{password}", data.password || "")
|
||
|
|
.replace("{host}", data.host);
|
||
|
|
},
|
||
|
|
[generateDynamicStreamUrl],
|
||
|
|
);
|
||
|
|
|
||
|
|
const testConnection = useCallback(async () => {
|
||
|
|
const streamUrl = await generateStreamUrl(wizardData);
|
||
|
|
|
||
|
|
if (!streamUrl) {
|
||
|
|
toast.error(t("cameraWizard.commonErrors.noUrl"));
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
setIsTesting(true);
|
||
|
|
setTestStatus("");
|
||
|
|
setTestResult(null);
|
||
|
|
|
||
|
|
try {
|
||
|
|
setTestStatus(t("cameraWizard.step2.testing.probingMetadata"));
|
||
|
|
const result = await probeUri(streamUrl, true, setTestStatus);
|
||
|
|
|
||
|
|
if (result && result.success) {
|
||
|
|
setTestResult(result);
|
||
|
|
const streamId = `stream_${Date.now()}`;
|
||
|
|
onUpdate({
|
||
|
|
streams: [
|
||
|
|
{
|
||
|
|
id: streamId,
|
||
|
|
url: streamUrl,
|
||
|
|
roles: ["detect"] as StreamRole[],
|
||
|
|
testResult: result,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
});
|
||
|
|
toast.success(t("cameraWizard.step2.testSuccess"));
|
||
|
|
} else {
|
||
|
|
const errMsg = result?.error || "Unable to probe stream";
|
||
|
|
setTestResult({
|
||
|
|
success: false,
|
||
|
|
error: errMsg,
|
||
|
|
});
|
||
|
|
toast.error(
|
||
|
|
t("cameraWizard.commonErrors.testFailed", { error: errMsg }),
|
||
|
|
{
|
||
|
|
duration: 6000,
|
||
|
|
},
|
||
|
|
);
|
||
|
|
}
|
||
|
|
} catch (error) {
|
||
|
|
const axiosError = error as {
|
||
|
|
response?: { data?: { message?: string; detail?: string } };
|
||
|
|
message?: string;
|
||
|
|
};
|
||
|
|
const errorMessage =
|
||
|
|
axiosError.response?.data?.message ||
|
||
|
|
axiosError.response?.data?.detail ||
|
||
|
|
axiosError.message ||
|
||
|
|
"Connection failed";
|
||
|
|
setTestResult({
|
||
|
|
success: false,
|
||
|
|
error: errorMessage,
|
||
|
|
});
|
||
|
|
toast.error(
|
||
|
|
t("cameraWizard.commonErrors.testFailed", { error: errorMessage }),
|
||
|
|
{
|
||
|
|
duration: 10000,
|
||
|
|
},
|
||
|
|
);
|
||
|
|
} finally {
|
||
|
|
setIsTesting(false);
|
||
|
|
setTestStatus("");
|
||
|
|
}
|
||
|
|
}, [wizardData, generateStreamUrl, t, onUpdate, probeUri]);
|
||
|
|
|
||
|
|
const handleContinue = useCallback(() => {
|
||
|
|
onNext();
|
||
|
|
}, [onNext]);
|
||
|
|
|
||
|
|
// Auto-start probe or test when step loads
|
||
|
|
const [hasStarted, setHasStarted] = useState(false);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
if (!hasStarted) {
|
||
|
|
setHasStarted(true);
|
||
|
|
if (probeMode) {
|
||
|
|
probeCamera();
|
||
|
|
} else {
|
||
|
|
testConnection();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}, [hasStarted, probeMode, probeCamera, testConnection]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="space-y-6">
|
||
|
|
{probeMode ? (
|
||
|
|
// Probe mode: show probe dialog
|
||
|
|
<>
|
||
|
|
{probeResult && (
|
||
|
|
<div className="p-4">
|
||
|
|
<ProbeDialog
|
||
|
|
open={probeDialogOpen}
|
||
|
|
onOpenChange={(open) => {
|
||
|
|
setProbeDialogOpen(open);
|
||
|
|
// If dialog is being closed (open=false), go back
|
||
|
|
if (!open) {
|
||
|
|
onBack();
|
||
|
|
}
|
||
|
|
}}
|
||
|
|
isLoading={isProbing}
|
||
|
|
isError={!!probeError}
|
||
|
|
error={probeError || undefined}
|
||
|
|
probeResult={probeResult}
|
||
|
|
onSelectCandidate={handleSelectCandidate}
|
||
|
|
onRetry={probeCamera}
|
||
|
|
selectedCandidateUris={selectedCandidateUris}
|
||
|
|
testAllSelectedCandidates={testAllSelectedCandidates}
|
||
|
|
isTesting={isTesting}
|
||
|
|
testStatus={testStatus}
|
||
|
|
testCandidate={testCandidate}
|
||
|
|
candidateTests={candidateTests}
|
||
|
|
testingCandidates={testingCandidates}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
|
||
|
|
{isProbing && !probeResult && (
|
||
|
|
<div className="flex items-center gap-2 text-sm text-muted-foreground">
|
||
|
|
<ActivityIndicator className="size-4" />
|
||
|
|
{t("cameraWizard.step2.probing")}
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
|
||
|
|
{probeError && !probeResult && (
|
||
|
|
<div className="space-y-4">
|
||
|
|
<div className="text-sm text-destructive">{probeError}</div>
|
||
|
|
<div className="flex flex-col gap-3 pt-3 sm:flex-row sm:justify-end sm:gap-4">
|
||
|
|
<Button type="button" onClick={onBack} className="sm:flex-1">
|
||
|
|
{t("button.back", { ns: "common" })}
|
||
|
|
</Button>
|
||
|
|
<Button
|
||
|
|
type="button"
|
||
|
|
onClick={probeCamera}
|
||
|
|
variant="select"
|
||
|
|
className="flex items-center justify-center gap-2 sm:flex-1"
|
||
|
|
>
|
||
|
|
{t("cameraWizard.step2.retry")}
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
</>
|
||
|
|
) : (
|
||
|
|
// Manual mode: show snapshot and stream details
|
||
|
|
<>
|
||
|
|
{testResult?.success && (
|
||
|
|
<div className="p-4">
|
||
|
|
<div className="mb-3 flex flex-row items-center gap-2 text-sm font-medium text-success">
|
||
|
|
<FaCircleCheck className="size-4" />
|
||
|
|
{t("cameraWizard.step2.testSuccess")}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="space-y-3">
|
||
|
|
{testResult.snapshot ? (
|
||
|
|
<div className="relative flex justify-center">
|
||
|
|
<img
|
||
|
|
src={testResult.snapshot}
|
||
|
|
alt="Camera snapshot"
|
||
|
|
className="max-h-[50dvh] max-w-full rounded-lg object-contain"
|
||
|
|
/>
|
||
|
|
<div className="absolute bottom-2 right-2 rounded-md bg-black/70 p-3 text-sm backdrop-blur-sm">
|
||
|
|
<div className="space-y-1">
|
||
|
|
<StreamDetails testResult={testResult} />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
) : (
|
||
|
|
<Card className="p-4">
|
||
|
|
<CardTitle className="mb-2 text-sm">
|
||
|
|
{t("cameraWizard.step2.streamDetails")}
|
||
|
|
</CardTitle>
|
||
|
|
<CardContent className="p-0 text-sm">
|
||
|
|
<StreamDetails testResult={testResult} />
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
|
||
|
|
{isTesting && (
|
||
|
|
<div className="flex items-center gap-2 text-sm text-muted-foreground">
|
||
|
|
<ActivityIndicator className="size-4" />
|
||
|
|
{testStatus}
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
|
||
|
|
{testResult && !testResult.success && (
|
||
|
|
<div className="space-y-4">
|
||
|
|
<div className="text-sm text-destructive">{testResult.error}</div>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
|
||
|
|
<div className="flex flex-col gap-3 pt-3 sm:flex-row sm:justify-end sm:gap-4">
|
||
|
|
<Button type="button" onClick={onBack} className="sm:flex-1">
|
||
|
|
{t("button.back", { ns: "common" })}
|
||
|
|
</Button>
|
||
|
|
{testResult?.success ? (
|
||
|
|
<Button
|
||
|
|
type="button"
|
||
|
|
onClick={handleContinue}
|
||
|
|
variant="select"
|
||
|
|
className="flex items-center justify-center gap-2 sm:flex-1"
|
||
|
|
>
|
||
|
|
{t("button.continue", { ns: "common" })}
|
||
|
|
</Button>
|
||
|
|
) : (
|
||
|
|
<Button
|
||
|
|
type="button"
|
||
|
|
onClick={testConnection}
|
||
|
|
disabled={isTesting}
|
||
|
|
variant="select"
|
||
|
|
className="flex items-center justify-center gap-2 sm:flex-1"
|
||
|
|
>
|
||
|
|
{isTesting && <ActivityIndicator className="size-4" />}
|
||
|
|
{t("cameraWizard.step2.retry")}
|
||
|
|
</Button>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
function StreamDetails({ testResult }: { testResult: TestResult }) {
|
||
|
|
const { t } = useTranslation(["views/settings"]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
{testResult.resolution && (
|
||
|
|
<div>
|
||
|
|
<span className="text-white/70">
|
||
|
|
{t("cameraWizard.testResultLabels.resolution")}:
|
||
|
|
</span>{" "}
|
||
|
|
<span className="text-white">{testResult.resolution}</span>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
{testResult.fps && (
|
||
|
|
<div>
|
||
|
|
<span className="text-white/70">
|
||
|
|
{t("cameraWizard.testResultLabels.fps")}:
|
||
|
|
</span>{" "}
|
||
|
|
<span className="text-white">{testResult.fps}</span>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
{testResult.videoCodec && (
|
||
|
|
<div>
|
||
|
|
<span className="text-white/70">
|
||
|
|
{t("cameraWizard.testResultLabels.video")}:
|
||
|
|
</span>{" "}
|
||
|
|
<span className="text-white">{testResult.videoCodec}</span>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
{testResult.audioCodec && (
|
||
|
|
<div>
|
||
|
|
<span className="text-white/70">
|
||
|
|
{t("cameraWizard.testResultLabels.audio")}:
|
||
|
|
</span>{" "}
|
||
|
|
<span className="text-white">{testResult.audioCodec}</span>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|