VisiOmatic web client

source

control/FullScreen.js

/**
 #	This file part of:	VisiOmatic
 * @file Add a full screen toggle button to the map.

 * @author Emmanuel Bertin <bertin@cfht.hawaii.edu>
 * @copyright (c) 2013-2023 CNRS/IAP/CFHT/SorbonneU.
   Adapted from the leaflet.fullscreen plugin by Bruno Bergot (fixed lint errors)
   (original copyright notice reproduced below).

Original code Copyright (c) 2013, Bruno Bergot
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:

   1. Redistributions of source code must retain the above copyright notice, this list of
      conditions and the following disclaimer.

   2. Redistributions in binary form must reproduce the above copyright notice, this list
      of conditions and the following disclaimer in the documentation and/or other materials
      provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import {
	Control,
	DomEvent,
	DomUtil,
	Map,
	Util
} from 'leaflet';


/* 
Native FullScreen JavaScript API
-------------
Assumes Mozilla naming conventions instead of W3C for now

source : http://johndyer.name/native-fullscreen-javascript-api-plus-jquery-plugin/

*/

var fullScreenApi = {
		supportsFullScreen: false,
		isFullScreen: function () { return false; },
		requestFullScreen: function () {},
		cancelFullScreen: function () {},
		fullScreenEventName: '',
		prefix: ''
	},
	browserPrefixes = 'webkit moz o ms khtml'.split(' ');

// check for native support
if (typeof document.exitFullscreen !== 'undefined') {
	fullScreenApi.supportsFullScreen = true;
} else {
	// check for fullscreen support by vendor prefix
	for (var i = 0, il = browserPrefixes.length; i < il; i++) {
		fullScreenApi.prefix = browserPrefixes[i];
		if (typeof document[fullScreenApi.prefix + 'CancelFullScreen'] !== 'undefined') {
			fullScreenApi.supportsFullScreen = true;
			break;
		}
	}
}

// update methods to do something useful
if (fullScreenApi.supportsFullScreen) {
	fullScreenApi.fullScreenEventName = fullScreenApi.prefix + 'fullscreenchange';
	fullScreenApi.isFullScreen = function () {
		switch (this.prefix) {
		case '':
			return document.fullScreen;
		case 'webkit':
			return document.webkitIsFullScreen;
		default:
			return document[this.prefix + 'FullScreen'];
		}
	};
	fullScreenApi.requestFullScreen = function (el) {
		return (this.prefix === '') ? el.requestFullscreen() : el[this.prefix + 'RequestFullScreen']();
	};
	fullScreenApi.cancelFullScreen = function (el) {
		return (this.prefix === '') ? document.exitFullscreen() : document[this.prefix + 'CancelFullScreen']();
	};
}


// export api
window.fullScreenApi = fullScreenApi;

export const FullScreen = Control.extend( /** @lends FullScreen */ {
	options: {
		title: 'Toggle full screen mode',
		position: 'topleft',
		forceSeparateButton: false
	},

	/**
	 * Create a new full-screen toggle button.

	 * @name FullScreen
	 * @extends leaflet.Control
	 * @memberof module:control/FullScreen.js
	 * @constructs
	 * @param {object} [options] - Options.

	 * @param {string} [options.title='Toggle full screen mode']
	   Title of the panel.

	 * @param {'bottomleft'|'bottomright'|'topleft'|'topright'} [options.position='topleft']
	   Position of the full-screen button.

	 * @param {boolean} [options.forceSeparateButton=false]
	   Sidebar button separate from zoom control?

	 * @returns {FullScreen} Full screen toggle control.
	 */
	// Initialize() is inherited from the parent class


	/**
	 * Add this full screen toggle to the specified map.
	 *
	 * @param {L.Map} map
	 * @returns {object} Element containing the full screen toggle button.
	 */
	onAdd: function (map) {
		const	className = 'leaflet-control-zoom-fullscreen';
		var	container;

		if (map.zoomControl && !this.options.forceSeparateButton) {
			container = map.zoomControl._container;
		} else {
			container = DomUtil.create('div', 'leaflet-bar');
		}

		this._addButton(
			this.options.title,
			className,
			container,
			this.toogleFullScreen,
			map
		);

		return container;
	},

	/**
	 * Add a button
	 *
	 * @private
	 * @param {string} [title]
	   Title of the button.
	 * @param {string} className
	   Class name of the button.
	 * @param {object} container
	   Element containing the button.
	 * @param {function} fn
	   Callback function to call when the button is pressed.
	 * @param {object} context
	   Context (this) for the callback function.
	 * @returns {object} New link (button) element.
	 */
	_addButton: function (title, className, container, fn, context) {
		const	link = DomUtil.create('a', className, container);
		link.href = '#';
		link.title = title;

		DomEvent
			.addListener(link, 'click', DomEvent.stopPropagation)
			.addListener(link, 'click', DomEvent.preventDefault)
			.addListener(link, 'click', fn, context);

		DomEvent
			.addListener(container, fullScreenApi.fullScreenEventName, DomEvent.stopPropagation)
			.addListener(container, fullScreenApi.fullScreenEventName, DomEvent.preventDefault)
			.addListener(container, fullScreenApi.fullScreenEventName, this._handleEscKey, context);

		return link;
	},

	/**
	 * Toggle full-screen mode.
	 */
	toogleFullScreen: function () {
		this._exitFired = false;
		const	container = this._container;
		if (this._isFullscreen) {
			if (fullScreenApi.supportsFullScreen) {
				fullScreenApi.cancelFullScreen(container);
			} else {
				DomUtil.removeClass(container, 'leaflet-pseudo-fullscreen');
			}
			this.invalidateSize();
			this.fire('exitFullscreen');
			this._exitFired = true;
			this._isFullscreen = false;
		} else {
			if (fullScreenApi.supportsFullScreen) {
				fullScreenApi.requestFullScreen(container);
			} else {
				DomUtil.addClass(container, 'leaflet-pseudo-fullscreen');
			}
			this.invalidateSize();
			this.fire('enterFullscreen');
			this._isFullscreen = true;
		}
	},

	/**
	 * Exit full-screen mode when ESC key is pressed.
	 */
	_handleEscKey: function () {
		if (!fullScreenApi.isFullScreen(this) && !this._exitFired) {
			this.fire('exitFullscreen');
			this._exitFired = true;
			this._isFullscreen = false;
		}
	}
});


/**
 * Instantiate a full-screen control.
 * @function
 * @param {object} [options] - Options: see {@link FullScreen}.
 * @returns {FullScreen} Instance of a full-screen control.
*/
export const fullScreen = function (options) {
	return new FullScreen(options);
};


/**
 * Add a hook to maps for full-screen control.
 * @method
 * @static
 * @memberof leaflet.Map
 */
Map.addInitHook(function () {
	if (this.options.fullScreenControl) {
		this.fullScreenControl = fullscreen(this.options.fullScreenControlOptions);
		this.addControl(this.fullScreenControl);
	}
});