summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/tag/tag-directive.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/directives/tag/tag-directive.ts')
-rw-r--r--catalog-ui/src/app/directives/tag/tag-directive.ts49
1 files changed, 49 insertions, 0 deletions
diff --git a/catalog-ui/src/app/directives/tag/tag-directive.ts b/catalog-ui/src/app/directives/tag/tag-directive.ts
new file mode 100644
index 0000000000..77a26fc6f7
--- /dev/null
+++ b/catalog-ui/src/app/directives/tag/tag-directive.ts
@@ -0,0 +1,49 @@
+'use strict';
+
+export class TagData {
+ tag:string;
+ tooltip:string;
+ id:string;
+}
+
+export interface ITagScope extends ng.IScope {
+ tagData:TagData;
+ onDelete:Function;
+ delete:Function;
+ hideTooltip:boolean;
+ hideDelete:boolean;
+ sdcDisable:boolean;
+}
+
+export class TagDirective implements ng.IDirective {
+
+ constructor() {
+ }
+
+ scope = {
+ tagData: '=',
+ onDelete: '&',
+ hideTooltip: '=',
+ hideDelete: '=',
+ sdcDisable: '='
+ };
+
+ replace = true;
+ restrict = 'EA';
+ template = ():string => {
+ return require('./tag-directive.html');
+ };
+
+ link = (scope:ITagScope) => {
+ scope.delete = ()=> {
+ scope.onDelete({'uniqueId': scope.tagData.id});
+ }
+ };
+
+ public static factory = ()=> {
+ return new TagDirective();
+ };
+
+}
+
+TagDirective.factory.$inject = [];