Add editor support for go2rtc modes.
This commit is contained in:
@@ -129,6 +129,7 @@ import {
|
||||
CONF_VIEW_UPDATE_SECONDS,
|
||||
CONF_PERFORMANCE_FEATURES_MEDIA_CHUNK_SIZE,
|
||||
MEDIA_CHUNK_SIZE_MAX,
|
||||
CONF_CAMERAS_ARRAY_GO2RTC_MODES,
|
||||
} from './const.js';
|
||||
import { localize } from './localize/localize.js';
|
||||
import frigate_card_editor_style from './scss/editor.scss';
|
||||
@@ -156,6 +157,7 @@ const MENU_BUTTONS = 'buttons';
|
||||
const MENU_CAMERAS = 'cameras';
|
||||
const MENU_CAMERAS_DEPENDENCIES = 'cameras.dependencies';
|
||||
const MENU_CAMERAS_FRIGATE = 'cameras.frigate';
|
||||
const MENU_CAMERAS_GO2RTC = 'cameras.go2rtc';
|
||||
const MENU_CAMERAS_TRIGGERS = 'cameras.triggers';
|
||||
const MENU_CAMERAS_WEBRTC = 'cameras.webrtc';
|
||||
const MENU_IMAGE_LAYOUT = 'image.layout';
|
||||
@@ -491,6 +493,14 @@ export class FrigateCardEditor extends LitElement implements LovelaceCardEditor
|
||||
{ value: 'high', label: localize('config.performance.profiles.high') },
|
||||
];
|
||||
|
||||
protected _go2rtcModes: EditorSelectOption[] = [
|
||||
{ value: '', label: '' },
|
||||
{ value: 'mse', label: localize('config.cameras.go2rtc.modes.mse') },
|
||||
{ value: 'webrtc', label: localize('config.cameras.go2rtc.modes.webrtc') },
|
||||
{ value: 'mp4', label: localize('config.cameras.go2rtc.modes.mp4') },
|
||||
{ value: 'mjpeg', label: localize('config.cameras.go2rtc.modes.mjpeg') },
|
||||
];
|
||||
|
||||
public setConfig(config: RawFrigateCardConfig): void {
|
||||
// Note: This does not use Zod to parse the configuration, so it may be
|
||||
// partially or completely invalid. It's more useful to have a partially
|
||||
@@ -1404,6 +1414,23 @@ export class FrigateCardEditor extends LitElement implements LovelaceCardEditor
|
||||
},
|
||||
)}`,
|
||||
)}
|
||||
${this._putInSubmenu(
|
||||
MENU_CAMERAS_GO2RTC,
|
||||
cameraIndex,
|
||||
'config.cameras.go2rtc.editor_label',
|
||||
{ name: 'mdi:alpha-g-circle' },
|
||||
html`${this._renderOptionSelector(
|
||||
getArrayConfigPath(CONF_CAMERAS_ARRAY_GO2RTC_MODES, cameraIndex),
|
||||
this._go2rtcModes,
|
||||
{
|
||||
multiple: true,
|
||||
label: localize('config.cameras.go2rtc.modes.editor_label')
|
||||
}
|
||||
)}
|
||||
${this._renderStringInput(
|
||||
getArrayConfigPath(CONF_CAMERAS_ARRAY_WEBRTC_CARD_URL, cameraIndex),
|
||||
)}`,
|
||||
)}
|
||||
${this._putInSubmenu(
|
||||
MENU_CAMERAS_WEBRTC,
|
||||
cameraIndex,
|
||||
|
||||
Reference in New Issue
Block a user