mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 07:01:21 +00:00
159 lines
5.1 KiB
JavaScript
159 lines
5.1 KiB
JavaScript
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
/**
|
|
* A directive for displaying a Guacamole client as a non-interactive
|
|
* thumbnail.
|
|
*/
|
|
angular.module('client').directive('guacThumbnail', [function guacThumbnail() {
|
|
|
|
return {
|
|
// Element only
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
|
|
/**
|
|
* The client to display within this guacThumbnail directive.
|
|
*
|
|
* @type ManagedClient
|
|
*/
|
|
client : '='
|
|
|
|
},
|
|
templateUrl: 'app/client/templates/guacThumbnail.html',
|
|
controller: ['$scope', '$injector', '$element', function guacThumbnailController($scope, $injector, $element) {
|
|
|
|
// Required services
|
|
var $window = $injector.get('$window');
|
|
|
|
/**
|
|
* The optimal thumbnail width, in pixels.
|
|
*
|
|
* @type Number
|
|
*/
|
|
var THUMBNAIL_WIDTH = 320;
|
|
|
|
/**
|
|
* The optimal thumbnail height, in pixels.
|
|
*
|
|
* @type Number
|
|
*/
|
|
var THUMBNAIL_HEIGHT = 240;
|
|
|
|
/**
|
|
* The display of the current Guacamole client instance.
|
|
*
|
|
* @type Guacamole.Display
|
|
*/
|
|
var display = null;
|
|
|
|
/**
|
|
* The element associated with the display of the current
|
|
* Guacamole client instance.
|
|
*
|
|
* @type Element
|
|
*/
|
|
var displayElement = null;
|
|
|
|
/**
|
|
* The element which must contain the Guacamole display element.
|
|
*
|
|
* @type Element
|
|
*/
|
|
var displayContainer = $element.find('.display')[0];
|
|
|
|
/**
|
|
* The main containing element for the entire directive.
|
|
*
|
|
* @type Element
|
|
*/
|
|
var main = $element[0];
|
|
|
|
/**
|
|
* Updates the scale of the attached Guacamole.Client based on current window
|
|
* size and "auto-fit" setting.
|
|
*/
|
|
$scope.updateDisplayScale = function updateDisplayScale() {
|
|
|
|
if (!display) return;
|
|
|
|
// Fit within available area
|
|
display.scale(Math.min(
|
|
main.offsetWidth / Math.max(display.getWidth(), 1),
|
|
main.offsetHeight / Math.max(display.getHeight(), 1)
|
|
));
|
|
|
|
};
|
|
|
|
// Attach any given managed client
|
|
$scope.$watch('client', function attachManagedClient(managedClient) {
|
|
|
|
// Remove any existing display
|
|
displayContainer.innerHTML = "";
|
|
|
|
// Only proceed if a client is given
|
|
if (!managedClient)
|
|
return;
|
|
|
|
// Get Guacamole client instance
|
|
var client = managedClient.client;
|
|
|
|
// Attach possibly new display
|
|
display = client.getDisplay();
|
|
|
|
// Add display element
|
|
displayElement = display.getElement();
|
|
displayContainer.appendChild(displayElement);
|
|
|
|
});
|
|
|
|
// Update scale when display is resized
|
|
$scope.$watch('client.managedDisplay.size', function setDisplaySize(size) {
|
|
|
|
var width;
|
|
var height;
|
|
|
|
// If no display size yet, assume optimal thumbnail size
|
|
if (!size || size.width === 0 || size.height === 0) {
|
|
width = THUMBNAIL_WIDTH;
|
|
height = THUMBNAIL_HEIGHT;
|
|
}
|
|
|
|
// Otherwise, generate size that fits within thumbnail bounds
|
|
else {
|
|
var scale = Math.min(THUMBNAIL_WIDTH / size.width, THUMBNAIL_HEIGHT / size.height, 1);
|
|
width = size.width * scale;
|
|
height = size.height * scale;
|
|
}
|
|
|
|
// Generate dummy background image
|
|
var thumbnail = document.createElement("canvas");
|
|
thumbnail.width = width;
|
|
thumbnail.height = height;
|
|
$scope.thumbnail = thumbnail.toDataURL("image/png");
|
|
|
|
// Init display scale
|
|
$scope.$evalAsync($scope.updateDisplayScale);
|
|
|
|
});
|
|
|
|
}]
|
|
};
|
|
}]); |