blob: b99f11fcf9ad2fb01d74bd02e9f8f379d79879d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
'use strict';
export interface IEditNamePopoverDirectiveScope extends ng.IScope {
isOpen:boolean;
templateUrl:string;
module:any;
direction:string;
header:string;
heatNameValidationPattern:RegExp;
originalName:string;
onSave:any;
closePopover(isCancel:boolean):void;
validateField(field:any, originalName:string):boolean;
updateHeatName(heatName:string):void;
onInit():void;
}
export class EditNamePopoverDirective implements ng.IDirective {
constructor(private ValidationPattern:RegExp,private $templateCache:ng.ITemplateCacheService) {
}
scope = {
direction: "@?",
module: "=",
header: "@?",
onSave: "&"
};
link = (scope:IEditNamePopoverDirectiveScope) => {
if (!scope.direction) {
scope.direction = 'top';
}
scope.originalName = '';
this.$templateCache.put("edit-module-name-popover.html", require('./edit-module-name-popover.html'));
scope.templateUrl = "edit-module-name-popover.html";
scope.isOpen = false;
scope.closePopover = (isCancel:boolean = true) => {
scope.isOpen = !scope.isOpen;
if (isCancel) {
scope.module.heatName = scope.originalName;
}
};
scope.onInit = () => {
scope.originalName = scope.module.heatName;
};
scope.validateField = (field:any):boolean => {
return !!(field && field.$dirty && field.$invalid);
};
scope.heatNameValidationPattern = this.ValidationPattern;
scope.updateHeatName = () => {
scope.closePopover(false);
scope.onSave();
}
};
replace = true;
restrict = 'E';
template = ():string => {
return require('./edit-name-popover-view.html');
};
public static factory = (ValidationPattern:RegExp,$templateCache:ng.ITemplateCacheService)=> {
return new EditNamePopoverDirective(ValidationPattern,$templateCache);
}
}
EditNamePopoverDirective.factory.$inject = ['ValidationPattern','$templateCache'];
|