UI changes and fixes (#14516)

* Add camera webui link to debug view

* fix optimistic description update

* simplify

* clean up

* params
This commit is contained in:
Josh Hawkins 2024-10-22 16:11:05 -05:00 committed by GitHub
parent 828fdbfd2d
commit c7d9f83638
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 13 deletions

View File

@ -321,22 +321,16 @@ function ObjectDetailsTab({
(key.includes("events") ||
key.includes("events/search") ||
key.includes("events/explore")),
(currentData: SearchResult[][] | undefined) => {
(currentData: SearchResult[][] | SearchResult[] | undefined) => {
if (!currentData) return currentData;
// optimistic update
return currentData.map((page) =>
page.map((event) =>
return currentData
.flat()
.map((event) =>
event.id === search.id
? {
...event,
data: {
...event.data,
description: desc,
},
}
? { ...event, data: { ...event.data, description: desc } }
: event,
),
);
);
},
{
optimisticData: true,

View File

@ -21,7 +21,8 @@ import useDeepMemo from "@/hooks/use-deep-memo";
import { Card } from "@/components/ui/card";
import { getIconForLabel } from "@/utils/iconUtil";
import { capitalizeFirstLetter } from "@/utils/stringUtil";
import { LuInfo } from "react-icons/lu";
import { LuExternalLink, LuInfo } from "react-icons/lu";
import { Link } from "react-router-dom";
type ObjectSettingsViewProps = {
selectedCamera?: string;
@ -187,6 +188,21 @@ export default function ObjectSettingsView({
objects.
</p>
</div>
{config?.cameras[cameraConfig.name]?.webui_url && (
<div className="mb-5 text-sm text-muted-foreground">
<div className="mt-2 flex flex-row items-center text-primary">
<Link
to={config?.cameras[cameraConfig.name]?.webui_url ?? ""}
target="_blank"
rel="noopener noreferrer"
className="inline"
>
Open {capitalizeFirstLetter(cameraConfig.name)}'s Web UI
<LuExternalLink className="ml-2 inline-flex size-3" />
</Link>
</div>
</div>
)}
<Tabs defaultValue="debug" className="w-full">
<TabsList className="grid w-full grid-cols-2">