2018-03-26 01:18:56 -04:00
|
|
|
// vim: set et sw=2 ts=2:
|
|
|
|
//
|
2020-03-02 01:53:41 -05:00
|
|
|
// This file is part of Moonfire NVR, a security camera network video recorder.
|
|
|
|
// Copyright (C) 2018 The Moonfire NVR Authors
|
2018-03-26 01:18:56 -04:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// In addition, as a special exception, the copyright holders give
|
|
|
|
// permission to link the code of portions of this program with the
|
|
|
|
// OpenSSL library under certain conditions as described in each
|
|
|
|
// individual source file, and distribute linked combinations including
|
|
|
|
// the two.
|
|
|
|
//
|
|
|
|
// You must obey the GNU General Public License in all respects for all
|
|
|
|
// of the code used other than OpenSSL. If you modify file(s) with this
|
|
|
|
// exception, you may extend this exception to your version of the
|
|
|
|
// file(s), but you are not obligated to do so. If you do not wish to do
|
|
|
|
// so, delete this exception statement from your version. If you delete
|
|
|
|
// this exception statement from all source files in the program, then
|
|
|
|
// also delete it here.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
|
|
|
2018-04-28 09:39:29 -04:00
|
|
|
import 'jquery-ui/themes/base/button.css';
|
2018-03-26 01:18:56 -04:00
|
|
|
import 'jquery-ui/themes/base/core.css';
|
|
|
|
import 'jquery-ui/themes/base/dialog.css';
|
|
|
|
import 'jquery-ui/themes/base/theme.css';
|
|
|
|
// This not needed for pure dialog, but we want it resizable
|
|
|
|
import 'jquery-ui/themes/base/resizable.css';
|
|
|
|
|
|
|
|
// Get dialog ui widget
|
|
|
|
import 'jquery-ui/ui/widgets/dialog';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to implement a simple jQuery dialog based video player.
|
|
|
|
*/
|
|
|
|
export default class VideoDialogView {
|
|
|
|
/**
|
|
|
|
* Construct the player.
|
|
|
|
*
|
|
|
|
* This does not attach the player to the DOM anywhere! In fact, construction
|
|
|
|
* of the necessary video element is delayed until an attach is requested.
|
|
|
|
* Since the close of the video removes all traces of it in the DOM, this
|
2020-05-05 02:06:12 -04:00
|
|
|
* approach allows repeated use by calling attach again!
|
2018-03-26 01:18:56 -04:00
|
|
|
*/
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach the player to the specified DOM element.
|
|
|
|
*
|
|
|
|
* @param {Node} domElement DOM element to attach to
|
|
|
|
* @return {VideoDialogView} Returns "this" for chaining.
|
|
|
|
*/
|
|
|
|
attach(domElement) {
|
2020-03-14 18:20:18 -04:00
|
|
|
this.videoElement_ = $('<video controls preload="auto" autoplay="true" />');
|
|
|
|
this.dialogElement_ = $('<div class="playdialog" />').append(
|
|
|
|
this.videoElement_
|
2018-03-26 01:18:56 -04:00
|
|
|
);
|
2020-03-14 18:20:18 -04:00
|
|
|
$(domElement).append(this.dialogElement_);
|
2018-03-26 01:18:56 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the player, and start playing the given url.
|
|
|
|
*
|
|
|
|
* @param {String} title Title of the video player
|
|
|
|
* @param {Number} width Width of the player
|
|
|
|
* @param {String} url URL for source media
|
|
|
|
* @return {VideoDialogView} Returns "this" for chaining.
|
|
|
|
*/
|
|
|
|
play(title, width, url) {
|
2020-05-05 02:06:12 -04:00
|
|
|
const videoDomElement = this.videoElement_[0];
|
2020-03-14 18:20:18 -04:00
|
|
|
this.dialogElement_.dialog({
|
2018-03-26 01:18:56 -04:00
|
|
|
title: title,
|
|
|
|
width: width,
|
|
|
|
close: () => {
|
2020-05-05 02:06:12 -04:00
|
|
|
videoDomElement.pause();
|
|
|
|
videoDomElement.src = ''; // Remove current source to stop loading
|
2020-03-14 18:20:18 -04:00
|
|
|
this.videoElement_ = null;
|
|
|
|
this.dialogElement_.remove();
|
|
|
|
this.dialogElement_ = null;
|
2018-03-26 01:18:56 -04:00
|
|
|
},
|
|
|
|
});
|
|
|
|
// Now that dialog is up, set the src so video starts
|
|
|
|
console.log('Video url: ' + url);
|
2020-03-14 18:20:18 -04:00
|
|
|
this.videoElement_.attr('src', url);
|
2020-05-05 02:06:12 -04:00
|
|
|
|
|
|
|
// On narrow displays (as defined by index.css), play videos in
|
|
|
|
// full-screen mode. When the user exits full-screen mode, close the
|
|
|
|
// dialog.
|
|
|
|
const narrowWindow = $('#nav').css('float') == 'none';
|
|
|
|
if (narrowWindow) {
|
|
|
|
console.log('Narrow window; starting video in full-screen mode.');
|
|
|
|
videoDomElement.requestFullscreen();
|
|
|
|
videoDomElement.addEventListener('fullscreenchange', (event) => {
|
|
|
|
if (document.fullscreenElement !== videoDomElement) {
|
|
|
|
console.log('Closing video because user exited full-screen mode.');
|
|
|
|
this.dialogElement_.dialog("close");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-03-26 01:18:56 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|