mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
100 lines
3.2 KiB
JavaScript
100 lines
3.2 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.
|
|
*/
|
|
|
|
/**
|
|
* The controller for the home page.
|
|
*/
|
|
angular.module('home').controller('homeController', ['$scope', '$injector',
|
|
function homeController($scope, $injector) {
|
|
|
|
// Get required types
|
|
var ConnectionGroup = $injector.get('ConnectionGroup');
|
|
var GroupListItem = $injector.get('GroupListItem');
|
|
|
|
// Get required services
|
|
var authenticationService = $injector.get('authenticationService');
|
|
var connectionGroupService = $injector.get('connectionGroupService');
|
|
var dataSourceService = $injector.get('dataSourceService');
|
|
var preferenceService = $injector.get('preferenceService');
|
|
var requestService = $injector.get('requestService');
|
|
|
|
/**
|
|
* Map of data source identifier to the root connection group of that data
|
|
* source, or null if the connection group hierarchy has not yet been
|
|
* loaded.
|
|
*
|
|
* @type Object.<String, ConnectionGroup>
|
|
*/
|
|
$scope.rootConnectionGroups = null;
|
|
|
|
/**
|
|
* Array of all connection properties that are filterable.
|
|
*
|
|
* @type String[]
|
|
*/
|
|
$scope.filteredConnectionProperties = [
|
|
'name'
|
|
];
|
|
|
|
/**
|
|
* Array of all connection group properties that are filterable.
|
|
*
|
|
* @type String[]
|
|
*/
|
|
$scope.filteredConnectionGroupProperties = [
|
|
'name'
|
|
];
|
|
|
|
/**
|
|
* Returns whether the "Recent Connections" section should be displayed on
|
|
* the home screen.
|
|
*
|
|
* @returns {!boolean}
|
|
* true if recent connections should be displayed on the home screen,
|
|
* false otherwise.
|
|
*/
|
|
$scope.isRecentConnectionsVisible = function isRecentConnectionsVisible() {
|
|
return preferenceService.preferences.showRecentConnections;
|
|
};
|
|
|
|
/**
|
|
* Returns whether critical data has completed being loaded.
|
|
*
|
|
* @returns {Boolean}
|
|
* true if enough data has been loaded for the user interface to be
|
|
* useful, false otherwise.
|
|
*/
|
|
$scope.isLoaded = function isLoaded() {
|
|
|
|
return $scope.rootConnectionGroups !== null;
|
|
|
|
};
|
|
|
|
// Retrieve root groups and all descendants
|
|
dataSourceService.apply(
|
|
connectionGroupService.getConnectionGroupTree,
|
|
authenticationService.getAvailableDataSources(),
|
|
ConnectionGroup.ROOT_IDENTIFIER
|
|
)
|
|
.then(function rootGroupsRetrieved(rootConnectionGroups) {
|
|
$scope.rootConnectionGroups = rootConnectionGroups;
|
|
}, requestService.DIE);
|
|
|
|
}]);
|