2017-05-24 10:39:33 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2016-2017 The Thingsboard Authors
|
|
|
|
|
*
|
|
|
|
|
* Licensed 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*@ngInject*/
|
2017-06-08 21:15:47 +03:00
|
|
|
export default function AliasesEntitySelectPanelController(mdPanelRef, $scope, $filter, types, aliasController, onEntityAliasesUpdate) {
|
2017-05-24 10:39:33 +03:00
|
|
|
|
|
|
|
|
var vm = this;
|
|
|
|
|
vm._mdPanelRef = mdPanelRef;
|
2017-06-07 17:09:04 +03:00
|
|
|
vm.aliasController = aliasController;
|
2017-05-24 10:39:33 +03:00
|
|
|
vm.onEntityAliasesUpdate = onEntityAliasesUpdate;
|
2017-06-07 17:09:04 +03:00
|
|
|
vm.entityAliases = {};
|
|
|
|
|
vm.entityAliasesInfo = {};
|
2017-05-24 10:39:33 +03:00
|
|
|
|
2017-06-07 17:09:04 +03:00
|
|
|
vm.currentAliasEntityChanged = currentAliasEntityChanged;
|
|
|
|
|
|
|
|
|
|
var allEntityAliases = vm.aliasController.getEntityAliases();
|
|
|
|
|
for (var aliasId in allEntityAliases) {
|
|
|
|
|
var aliasInfo = vm.aliasController.getInstantAliasInfo(aliasId);
|
2017-08-07 18:41:13 +03:00
|
|
|
if (aliasInfo && !aliasInfo.resolveMultiple && aliasInfo.currentEntity
|
|
|
|
|
&& aliasInfo.resolvedEntities.length > 1) {
|
2017-06-07 17:09:04 +03:00
|
|
|
vm.entityAliasesInfo[aliasId] = angular.copy(aliasInfo);
|
2017-06-08 21:15:47 +03:00
|
|
|
vm.entityAliasesInfo[aliasId].selectedId = aliasInfo.currentEntity.id;
|
2017-06-07 17:09:04 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-08 21:15:47 +03:00
|
|
|
function currentAliasEntityChanged(aliasId, selectedId) {
|
|
|
|
|
var resolvedEntities = vm.entityAliasesInfo[aliasId].resolvedEntities;
|
|
|
|
|
var selected = $filter('filter')(resolvedEntities, {id: selectedId});
|
|
|
|
|
if (selected && selected.length) {
|
|
|
|
|
vm.aliasController.updateCurrentAliasEntity(aliasId, selected[0]);
|
|
|
|
|
if (onEntityAliasesUpdate) {
|
|
|
|
|
onEntityAliasesUpdate();
|
|
|
|
|
}
|
2017-05-24 10:39:33 +03:00
|
|
|
}
|
2017-06-07 17:09:04 +03:00
|
|
|
}
|
|
|
|
|
|
2017-05-24 10:39:33 +03:00
|
|
|
}
|