Allow viewing only Archived videos in Videos page
parent
7442214efe
commit
1bff50199b
|
@ -7426,6 +7426,11 @@ module.exports = function(s,config,lang){
|
|||
"class": "default toggle-live-grid-monitor-menu",
|
||||
"icon": "bars"
|
||||
},
|
||||
"Fullscreen": {
|
||||
"label": lang['Fullscreen'],
|
||||
"class": "default toggle-live-grid-monitor-fullscreen",
|
||||
"icon": "arrows-alt"
|
||||
},
|
||||
"Monitor Settings": {
|
||||
"label": lang['Monitor Settings'],
|
||||
"class": "default open-monitor-settings",
|
||||
|
@ -8199,6 +8204,10 @@ module.exports = function(s,config,lang){
|
|||
"name": lang.Local,
|
||||
"value": "local"
|
||||
},
|
||||
{
|
||||
"name": lang.Archive,
|
||||
"value": "archive"
|
||||
},
|
||||
{
|
||||
"name": lang.Cloud,
|
||||
"value": "cloud"
|
||||
|
|
|
@ -210,6 +210,7 @@ module.exports = function(s,config,lang,app,io){
|
|||
startTimeOperator: req.query.startOperator,
|
||||
endTimeOperator: req.query.endOperator,
|
||||
limit: req.query.limit,
|
||||
archived: req.query.archived,
|
||||
endIsStartTo: true,
|
||||
noFormat: true,
|
||||
noCount: true,
|
||||
|
|
|
@ -1142,6 +1142,7 @@ module.exports = function(s,config,lang,app,io){
|
|||
endTimeOperator: req.query.endOperator,
|
||||
noLimit: req.query.noLimit,
|
||||
limit: req.query.limit,
|
||||
archived: req.query.archived,
|
||||
endIsStartTo: true,
|
||||
parseRowDetails: true,
|
||||
noFormat: true,
|
||||
|
|
|
@ -441,6 +441,7 @@ function getVideos(options,callback){
|
|||
var searchQuery = options.searchQuery
|
||||
var requestQueries = []
|
||||
var monitorId = options.monitorId
|
||||
var archived = options.archived
|
||||
var customVideoSet = options.customVideoSet
|
||||
var limit = options.limit || 300
|
||||
var eventStartTime
|
||||
|
@ -458,6 +459,9 @@ function getVideos(options,callback){
|
|||
if(searchQuery){
|
||||
requestQueries.push(`search=${searchQuery}`)
|
||||
}
|
||||
if(archived){
|
||||
requestQueries.push(`archived=1`)
|
||||
}
|
||||
$.getJSON(`${getApiPrefix(customVideoSet ? customVideoSet : searchQuery ? `videosByEventTag` : `videos`)}${monitorId ? `/${monitorId}` : ''}?${requestQueries.concat([`noLimit=1`]).join('&')}`,function(data){
|
||||
var videos = data.videos
|
||||
$.getJSON(`${getApiPrefix(`timelapse`)}${monitorId ? `/${monitorId}` : ''}?${requestQueries.concat([`noLimit=1`]).join('&')}`,function(timelapseFrames){
|
||||
|
|
|
@ -32,8 +32,9 @@ $(document).ready(function(e){
|
|||
const monitorId = el.attr('data-mid')
|
||||
const startDate = el.attr('data-time')
|
||||
const endDate = el.attr('data-end')
|
||||
const imgBlock = el.find('.video-thumbnail-img-block')
|
||||
const href = await getSnapshotFromVideoTimeFrame(monitorId,startDate,endDate)
|
||||
imgEl.innerHTML = href ? imgEl.innerHTML + `<img class="pop-image cursor-pointer" src="${href}">` : ''
|
||||
imgBlock.html(`<img class="pop-image cursor-pointer" src="${href}">`)
|
||||
})
|
||||
}
|
||||
function openVideosTableView(monitorId,startDate,endDate){
|
||||
|
@ -80,6 +81,7 @@ $(document).ready(function(e){
|
|||
var startDate = dateRange.startDate
|
||||
var endDate = dateRange.endDate
|
||||
var monitorId = monitorsList.val()
|
||||
var wantsArchivedVideo = getVideoSetSelected() === 'archive'
|
||||
var frameIconsHtml = ''
|
||||
if(!usePreloadedData){
|
||||
loadedVideosTable = (await getVideos({
|
||||
|
@ -87,6 +89,7 @@ $(document).ready(function(e){
|
|||
startDate,
|
||||
endDate,
|
||||
searchQuery,
|
||||
archived: wantsArchivedVideo,
|
||||
customVideoSet: wantCloudVideos() ? 'cloudVideos' : null,
|
||||
})).videos;
|
||||
$.each(loadedVideosTable,function(n,v){
|
||||
|
@ -157,6 +160,8 @@ $(document).ready(function(e){
|
|||
var loadedMonitor = loadedMonitors[file.mid]
|
||||
return {
|
||||
image: `<div class="video-thumbnail" data-mid="${file.mid}" data-ke="${file.ke}" data-time="${file.time}" data-end="${file.end}" data-filename="${file.filename}">
|
||||
<div class="video-thumbnail-img-block">
|
||||
</div>
|
||||
<div class="video-thumbnail-buttons d-flex">
|
||||
<a class="video-thumbnail-button-cell open-snapshot p-3">
|
||||
<i class="fa fa-camera"></i>
|
||||
|
@ -206,8 +211,11 @@ $(document).ready(function(e){
|
|||
})
|
||||
return rowsSelected
|
||||
}
|
||||
function getVideoSetSelected(){
|
||||
return cloudVideoCheckSwitch.val()
|
||||
}
|
||||
function wantCloudVideos(){
|
||||
const isChecked = cloudVideoCheckSwitch.val() === 'cloud'
|
||||
const isChecked = getVideoSetSelected() === 'cloud'
|
||||
return isChecked
|
||||
}
|
||||
function drawCompressedVideoProgressBar(data){
|
||||
|
@ -268,7 +276,7 @@ $(document).ready(function(e){
|
|||
})
|
||||
.on('click','.open-snapshot',function(e){
|
||||
e.preventDefault()
|
||||
var href = $(this).parents('.video-thumbnail').find('img').click()
|
||||
var href = $(this).parents('.video-thumbnail-img-block').find('img').click()
|
||||
return false;
|
||||
})
|
||||
.on('click','.delete-selected-videos',function(e){
|
||||
|
|
Loading…
Reference in New Issue