aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/layout/top-progress/top-progress.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/directives/layout/top-progress/top-progress.ts')
-rw-r--r--catalog-ui/src/app/directives/layout/top-progress/top-progress.ts36
1 files changed, 36 insertions, 0 deletions
diff --git a/catalog-ui/src/app/directives/layout/top-progress/top-progress.ts b/catalog-ui/src/app/directives/layout/top-progress/top-progress.ts
new file mode 100644
index 0000000000..06beb43ea1
--- /dev/null
+++ b/catalog-ui/src/app/directives/layout/top-progress/top-progress.ts
@@ -0,0 +1,36 @@
+'use strict';
+
+export interface ITopProgressScope extends ng.IScope {
+ progressValue:number;
+ progressMessage:string;
+}
+
+export class TopProgressDirective implements ng.IDirective {
+
+ constructor() {
+ }
+
+ public replace = true;
+ public restrict = 'E';
+ public transclude = false;
+
+ scope = {
+ progressValue: '=',
+ progressMessage: '='
+ };
+
+ template = ():string => {
+ return require('./top-progress.html');
+ };
+
+ public link = (scope:ITopProgressScope, $elem:ng.IAugmentedJQuery, $attrs:angular.IAttributes) => {
+
+ };
+
+ public static factory = ()=> {
+ return new TopProgressDirective();
+ };
+
+}
+
+TopProgressDirective.factory.$inject = [];