aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/elements/checkbox/checkbox.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/directives/elements/checkbox/checkbox.ts')
-rw-r--r--catalog-ui/src/app/directives/elements/checkbox/checkbox.ts43
1 files changed, 43 insertions, 0 deletions
diff --git a/catalog-ui/src/app/directives/elements/checkbox/checkbox.ts b/catalog-ui/src/app/directives/elements/checkbox/checkbox.ts
new file mode 100644
index 0000000000..ec0be8ab07
--- /dev/null
+++ b/catalog-ui/src/app/directives/elements/checkbox/checkbox.ts
@@ -0,0 +1,43 @@
+'use strict';
+
+export interface ICheckboxElementScope extends ng.IScope {
+ elemId:string;
+ text:string;
+ sdcChecklistModel:any;
+ sdcChecklistValue:string;
+ disabled:boolean;
+}
+
+export class CheckboxElementDirective implements ng.IDirective {
+
+ constructor(private $filter:ng.IFilterService) {
+ }
+
+ public replace = true;
+ public restrict = 'E';
+ public transclude = false;
+
+ scope = {
+ elemId: '@',
+ text: '@',
+ disabled: '=',
+ sdcChecklistModel: '=',
+ sdcChecklistValue: '=',
+ sdcChecklistChange: '&'
+ };
+
+ template = ():string => {
+ return require('./checkbox.html');
+ };
+
+ public link = (scope:ICheckboxElementScope, $elem:ng.IAugmentedJQuery, $attrs:angular.IAttributes) => {
+
+ };
+
+ public static factory = ($filter:ng.IFilterService)=> {
+ return new CheckboxElementDirective($filter);
+ };
+
+}
+
+CheckboxElementDirective.factory.$inject = ['$filter'];