2018-09-06 10:23:58 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2016-2018 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.
|
|
|
|
|
*/
|
|
|
|
|
/* eslint-disable import/no-unresolved, import/default */
|
|
|
|
|
|
|
|
|
|
import entityViewFieldsetTemplate from './entity-view-fieldset.tpl.html';
|
|
|
|
|
|
|
|
|
|
/* eslint-enable import/no-unresolved, import/default */
|
|
|
|
|
|
|
|
|
|
/*@ngInject*/
|
2018-09-11 12:56:43 +03:00
|
|
|
export default function EntityViewDirective($compile, $templateCache, $filter, toast, $translate, $mdConstant,
|
|
|
|
|
types, clipboardService, entityViewService, customerService) {
|
2018-09-06 10:23:58 +03:00
|
|
|
var linker = function (scope, element) {
|
|
|
|
|
var template = $templateCache.get(entityViewFieldsetTemplate);
|
|
|
|
|
element.html(template);
|
|
|
|
|
|
|
|
|
|
scope.types = types;
|
|
|
|
|
scope.isAssignedToCustomer = false;
|
2018-09-10 11:11:07 +03:00
|
|
|
scope.isPublic = false;
|
2018-09-06 10:23:58 +03:00
|
|
|
scope.assignedCustomer = null;
|
|
|
|
|
|
2018-09-10 14:37:46 +03:00
|
|
|
scope.allowedEntityTypes = [types.entityType.device, types.entityType.asset];
|
|
|
|
|
|
2018-09-11 12:56:43 +03:00
|
|
|
var semicolon = 186;
|
|
|
|
|
scope.separatorKeys = [$mdConstant.KEY_CODE.ENTER, $mdConstant.KEY_CODE.COMMA, semicolon];
|
|
|
|
|
|
2018-09-06 10:23:58 +03:00
|
|
|
scope.$watch('entityView', function(newVal) {
|
|
|
|
|
if (newVal) {
|
|
|
|
|
if (scope.entityView.customerId && scope.entityView.customerId.id !== types.id.nullUid) {
|
|
|
|
|
scope.isAssignedToCustomer = true;
|
|
|
|
|
customerService.getShortCustomerInfo(scope.entityView.customerId.id).then(
|
|
|
|
|
function success(customer) {
|
|
|
|
|
scope.assignedCustomer = customer;
|
2018-09-10 11:11:07 +03:00
|
|
|
scope.isPublic = customer.isPublic;
|
2018-09-06 10:23:58 +03:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
scope.isAssignedToCustomer = false;
|
2018-09-10 11:11:07 +03:00
|
|
|
scope.isPublic = false;
|
2018-09-06 10:23:58 +03:00
|
|
|
scope.assignedCustomer = null;
|
|
|
|
|
}
|
2018-09-12 15:51:18 +03:00
|
|
|
if (scope.entityView.startTimeMs > 0) {
|
|
|
|
|
scope.startTimeMs = new Date(scope.entityView.startTimeMs);
|
|
|
|
|
}
|
|
|
|
|
if (scope.entityView.endTimeTs > 0) {
|
|
|
|
|
scope.endTimeTs = new Date(scope.entityView.endTimeTs);
|
|
|
|
|
}
|
2018-09-11 12:56:43 +03:00
|
|
|
if (!scope.entityView.keys) {
|
|
|
|
|
scope.entityView.keys = {};
|
|
|
|
|
scope.entityView.keys.timeseries = [];
|
|
|
|
|
scope.entityView.keys.attributes = {};
|
|
|
|
|
scope.entityView.keys.attributes.ss = [];
|
|
|
|
|
scope.entityView.keys.attributes.cs = [];
|
|
|
|
|
scope.entityView.keys.attributes.sh = [];
|
|
|
|
|
}
|
2018-09-10 14:37:46 +03:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2018-09-12 15:51:18 +03:00
|
|
|
scope.$watch('startTimeMs', function (newDate) {
|
2018-09-10 14:37:46 +03:00
|
|
|
if (newDate) {
|
2018-09-12 15:51:18 +03:00
|
|
|
if (newDate.getTime() > scope.maxStartTimeMs) {
|
|
|
|
|
scope.startTimeMs = angular.copy(scope.maxStartTimeMs);
|
2018-09-10 14:37:46 +03:00
|
|
|
}
|
|
|
|
|
updateMinMaxDates();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2018-09-12 15:51:18 +03:00
|
|
|
scope.$watch('endTimeTs', function (newDate) {
|
2018-09-10 14:37:46 +03:00
|
|
|
if (newDate) {
|
2018-09-12 15:51:18 +03:00
|
|
|
if (newDate.getTime() < scope.minEndTimeTs) {
|
|
|
|
|
scope.endTimeTs = angular.copy(scope.minEndTimeTs);
|
2018-09-10 14:37:46 +03:00
|
|
|
}
|
|
|
|
|
updateMinMaxDates();
|
2018-09-06 10:23:58 +03:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2018-09-10 14:37:46 +03:00
|
|
|
function updateMinMaxDates() {
|
2018-09-12 15:51:18 +03:00
|
|
|
if (scope.endTimeTs) {
|
|
|
|
|
scope.maxStartTimeMs = angular.copy(new Date(scope.endTimeTs.getTime()));
|
|
|
|
|
scope.entityView.endTimeTs = scope.endTimeTs.getTime();
|
2018-09-10 14:37:46 +03:00
|
|
|
}
|
2018-09-12 15:51:18 +03:00
|
|
|
if (scope.startTimeMs) {
|
|
|
|
|
scope.minEndTimeTs = angular.copy(new Date(scope.startTimeMs.getTime()));
|
|
|
|
|
scope.entityView.startTimeMs = scope.startTimeMs.getTime();
|
2018-09-10 14:37:46 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-06 10:23:58 +03:00
|
|
|
scope.onEntityViewIdCopied = function() {
|
|
|
|
|
toast.showSuccess($translate.instant('entity-view.idCopiedMessage'), 750, angular.element(element).parent().parent(), 'bottom left');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$compile(element.contents())(scope);
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
restrict: "E",
|
|
|
|
|
link: linker,
|
|
|
|
|
scope: {
|
|
|
|
|
entityView: '=',
|
|
|
|
|
isEdit: '=',
|
|
|
|
|
entityViewScope: '=',
|
|
|
|
|
theForm: '=',
|
|
|
|
|
onAssignToCustomer: '&',
|
2018-09-10 11:11:07 +03:00
|
|
|
onMakePublic: '&',
|
2018-09-06 10:23:58 +03:00
|
|
|
onUnassignFromCustomer: '&',
|
|
|
|
|
onDeleteEntityView: '&'
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|