Must specify media type in viewer target search.

This commit is contained in:
Dermot Duffy
2022-04-23 16:34:39 -07:00
parent 7bf824d4e9
commit 7273e699a6
4 changed files with 18 additions and 7 deletions
+3 -2
View File
@@ -32,6 +32,7 @@ import {
FrigateEvent,
frigateCardConfigDefaults,
} from '../types';
import { CAMERA_BIRDSEYE } from '../const';
import { View, ViewContext } from '../view';
import {
dispatchErrorMessageEvent,
@@ -283,7 +284,7 @@ class TimelineEventManager {
if (
this._dateEnd &&
this._dateStart &&
cameraConfig.camera_name !== 'birdseye'
cameraConfig.camera_name !== CAMERA_BIRDSEYE
) {
const param = BrowseMediaUtil.getBrowseMediaQueryParameters(
hass,
@@ -592,7 +593,7 @@ export class FrigateCardTimelineCore extends LitElement {
protected _getGroups(): DataGroupCollectionType {
const groups: FrigateCardGroupData[] = [];
this.cameras?.forEach((cameraConfig, camera) => {
if (cameraConfig.camera_name !== 'birdseye') {
if (cameraConfig.camera_name !== CAMERA_BIRDSEYE) {
groups.push({
id: camera,
content: getCameraTitle(this.hass, cameraConfig),
+10 -2
View File
@@ -77,7 +77,12 @@ export class FrigateCardViewer extends LitElement {
);
if (!this.view.target) {
if (!browseMediaQueryParameters) {
// If the target is not specified, the view must tell us which mediaType
// to search for. When the target *is* specified, the view is not required
// to indicate the media type (e.g. the mixed 'events' view from the
// timeline).
const mediaType = this.view.getMediaType();
if (!browseMediaQueryParameters || !mediaType) {
return;
}
@@ -85,7 +90,10 @@ export class FrigateCardViewer extends LitElement {
this,
this.hass,
this.view,
browseMediaQueryParameters,
BrowseMediaUtil.overrideMultiBrowseMediaQueryParameters(
browseMediaQueryParameters,
{ mediaType: mediaType },
),
);
return renderProgressIndicator();
}