forked from gethomepage/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Frigate service widget (gethomepage#3743)
- Loading branch information
Showing
9 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Frigate | ||
description: Frigate Widget Configuration | ||
--- | ||
|
||
Learn more about [Frigate](https://frigate.video/). | ||
|
||
Allowed fields: `["cameras", "uptime", "version"]`. | ||
|
||
A recent event listing is disabled by default, but can be enabled with the `enableRecentEvents` option. | ||
|
||
```yaml | ||
widget: | ||
type: frigate | ||
url: http://frigate.host.or.ip:port | ||
enableRecentEvents: true # Optional, defaults to false | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import { useTranslation } from "next-i18next"; | ||
|
||
import Container from "components/services/widget/container"; | ||
import Block from "components/services/widget/block"; | ||
import useWidgetAPI from "utils/proxy/use-widget-api"; | ||
|
||
export default function Component({ service }) { | ||
const { t } = useTranslation(); | ||
const { widget } = service; | ||
|
||
const { data, error } = useWidgetAPI(widget, "stats"); | ||
const { data: eventsData, error: eventsError } = useWidgetAPI(widget, "events"); | ||
|
||
if (error) { | ||
return <Container service={service} error={error} />; | ||
} | ||
|
||
if (eventsError) { | ||
return <Container service={service} error={eventsError} />; | ||
} | ||
|
||
if (!data || !eventsData) { | ||
return ( | ||
<Container service={service}> | ||
<Block label="frigate.cameras" /> | ||
<Block label="frigate.uptime" /> | ||
<Block label="frigate.version" /> | ||
</Container> | ||
); | ||
} | ||
|
||
return ( | ||
<> | ||
<Container service={service}> | ||
<Block | ||
label="frigate.cameras" | ||
value={t("common.number", { | ||
value: data.num_cameras, | ||
})} | ||
/> | ||
<Block | ||
label="frigate.uptime" | ||
value={t("common.uptime", { | ||
value: data.uptime, | ||
})} | ||
/> | ||
<Block label="frigate.version" value={data.version} /> | ||
</Container> | ||
{widget.enableRecentEvents && | ||
eventsData?.map((event) => ( | ||
<div | ||
key={event.id} | ||
className="text-theme-700 dark:text-theme-200 _relative h-5 rounded-md bg-theme-200/50 dark:bg-theme-900/20 m-1 px-1 flex" | ||
> | ||
<div className="text-xs z-10 self-center ml-2 relative h-4 grow mr-2"> | ||
<div className="absolute w-full h-4 whitespace-nowrap text-ellipsis overflow-hidden text-left"> | ||
{event.camera} ({event.label} {t("common.percent", { value: event.score * 100 })}) | ||
</div> | ||
</div> | ||
<div className="self-center text-xs flex justify-end mr-1.5 pl-1 z-10 text-ellipsis overflow-hidden whitespace-nowrap"> | ||
{t("common.date", { | ||
value: event.start_time, | ||
formatParams: { value: { timeStyle: "short", dateStyle: "medium" } }, | ||
})} | ||
</div> | ||
</div> | ||
))} | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { asJson } from "utils/proxy/api-helpers"; | ||
import genericProxyHandler from "utils/proxy/handlers/generic"; | ||
|
||
const widget = { | ||
api: "{url}/api/{endpoint}", | ||
proxyHandler: genericProxyHandler, | ||
|
||
mappings: { | ||
stats: { | ||
endpoint: "stats", | ||
map: (data) => { | ||
const jsonData = asJson(data); | ||
return { | ||
num_cameras: jsonData?.cameras !== undefined ? Object.keys(jsonData?.cameras).length : 0, | ||
uptime: jsonData?.service?.uptime, | ||
version: jsonData?.service.version, | ||
}; | ||
}, | ||
}, | ||
events: { | ||
endpoint: "events", | ||
map: (data) => | ||
asJson(data) | ||
.slice(0, 5) | ||
.map((event) => ({ | ||
id: event.id, | ||
camera: event.camera, | ||
label: event.label, | ||
start_time: new Date(event.start_time * 1000), | ||
thumbnail: event.thumbnail, | ||
score: event.data.score, | ||
type: event.data.type, | ||
})), | ||
}, | ||
}, | ||
}; | ||
|
||
export default widget; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters