mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
support realtime monitor per library
This commit is contained in:
parent
ee908c0726
commit
9e62e292f6
2 changed files with 11 additions and 7 deletions
|
@ -38,19 +38,14 @@
|
||||||
} else {
|
} else {
|
||||||
parent.querySelector('.chkEnablePhotosContainer').classList.add('hide');
|
parent.querySelector('.chkEnablePhotosContainer').classList.add('hide');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (contentType == 'music' || contentType == 'tvshows' || contentType == 'movies' || contentType == 'homevideos' || contentType == 'musicvideos' || contentType == 'mixed') {
|
|
||||||
parent.classList.remove('hide');
|
|
||||||
} else {
|
|
||||||
parent.classList.add('hide');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLibraryOptions(parent) {
|
function getLibraryOptions(parent) {
|
||||||
|
|
||||||
var options = {
|
var options = {
|
||||||
EnableArchiveMediaFiles: parent.querySelector('.chkArhiveAsMedia').checked,
|
EnableArchiveMediaFiles: parent.querySelector('.chkArhiveAsMedia').checked,
|
||||||
EnablePhotos: parent.querySelector('.chkEnablePhotos').checked
|
EnablePhotos: parent.querySelector('.chkEnablePhotos').checked,
|
||||||
|
EnableRealtimeMonitor: parent.querySelector('.chkEnableRealtimeMonitor').checked
|
||||||
};
|
};
|
||||||
|
|
||||||
return options;
|
return options;
|
||||||
|
@ -60,6 +55,7 @@
|
||||||
|
|
||||||
parent.querySelector('.chkArhiveAsMedia').checked = options.EnableArchiveMediaFiles;
|
parent.querySelector('.chkArhiveAsMedia').checked = options.EnableArchiveMediaFiles;
|
||||||
parent.querySelector('.chkEnablePhotos').checked = options.EnablePhotos;
|
parent.querySelector('.chkEnablePhotos').checked = options.EnablePhotos;
|
||||||
|
parent.querySelector('.chkEnableRealtimeMonitor').checked = options.EnableRealtimeMonitor;
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -6,6 +6,14 @@
|
||||||
</label>
|
</label>
|
||||||
<div class="fieldDescription checkboxFieldDescription">${EnablePhotosHelp}</div>
|
<div class="fieldDescription checkboxFieldDescription">${EnablePhotosHelp}</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" is="emby-checkbox" class="chkEnableRealtimeMonitor" checked />
|
||||||
|
<span>${LabelEnableRealtimeMonitor}</span>
|
||||||
|
</label>
|
||||||
|
<div class="fieldDescription checkboxFieldDescription">${LabelEnableRealtimeMonitorHelp}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="checkboxContainer checkboxContainer-withDescription chkArhiveAsMediaContainer">
|
<div class="checkboxContainer checkboxContainer-withDescription chkArhiveAsMediaContainer">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" is="emby-checkbox" class="chkArhiveAsMedia" />
|
<input type="checkbox" is="emby-checkbox" class="chkArhiveAsMedia" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue