aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/form-elements/dropdown
diff options
context:
space:
mode:
authorIsrael Lavi <il0695@att.com>2018-08-07 10:54:17 +0300
committerIsrael Lavi <il0695@att.com>2018-08-07 11:06:44 +0300
commitb2a3acea0d0f66028c9ce5fad02d4ecc64abf70c (patch)
tree8d70110f34cb845965c42a5915e950bca967d2c3 /src/angular/form-elements/dropdown
parent05b37297177e8a342668c15e5d6f738b51f7aedd (diff)
Initial commit.
Adding files needed for Linux Foundation. Change-Id: I9f2b4851a5ae01f83800c7f8bab8608a2221c730 Issue-ID: SDC-1608 Signed-off-by: Israel Lavi <il0695@att.com>
Diffstat (limited to 'src/angular/form-elements/dropdown')
-rw-r--r--src/angular/form-elements/dropdown/dropdown-models.ts14
-rw-r--r--src/angular/form-elements/dropdown/dropdown.component.html.ts2
-rw-r--r--src/angular/form-elements/dropdown/dropdown.component.ts20
3 files changed, 22 insertions, 14 deletions
diff --git a/src/angular/form-elements/dropdown/dropdown-models.ts b/src/angular/form-elements/dropdown/dropdown-models.ts
index fa8dc23..a718c07 100644
--- a/src/angular/form-elements/dropdown/dropdown-models.ts
+++ b/src/angular/form-elements/dropdown/dropdown-models.ts
@@ -1,14 +1,14 @@
export enum DropDownTypes {
- Regular,
- Headless,
- Auto
+ Regular = "Regular",
+ Headless = "Headless",
+ Auto = "Auto"
}
export enum DropDownOptionType {
- Simple, // default
- Header,
- Disable,
- HorizontalLine
+ Simple = "Simple", // default
+ Header = "Header",
+ Disable = "Disable",
+ HorizontalLine = "HorizontalLine"
}
export interface IDropDownOption {
diff --git a/src/angular/form-elements/dropdown/dropdown.component.html.ts b/src/angular/form-elements/dropdown/dropdown.component.html.ts
index a4247a4..36ce17c 100644
--- a/src/angular/form-elements/dropdown/dropdown.component.html.ts
+++ b/src/angular/form-elements/dropdown/dropdown.component.html.ts
@@ -1,4 +1,4 @@
-export default `
+export const template = `
<div class="sdc-dropdown" #dropDownWrapper
[ngClass]="{
'headless': type === cIDropDownTypes.Headless,
diff --git a/src/angular/form-elements/dropdown/dropdown.component.ts b/src/angular/form-elements/dropdown/dropdown.component.ts
index a23072f..33f54ac 100644
--- a/src/angular/form-elements/dropdown/dropdown.component.ts
+++ b/src/angular/form-elements/dropdown/dropdown.component.ts
@@ -1,7 +1,7 @@
import { Component, EventEmitter, Input, Output, forwardRef, OnChanges, SimpleChanges, OnInit, ElementRef, ViewChild, AfterViewInit, HostListener, Renderer } from '@angular/core';
import { IDropDownOption, DropDownOptionType, DropDownTypes } from "./dropdown-models";
import { ValidatableComponent } from './../validation/validatable.component';
-import template from './dropdown.component.html';
+import { template } from './dropdown.component.html';
@Component({
selector: 'sdc-dropdown',
@@ -24,7 +24,7 @@ export class DropDownComponent extends ValidatableComponent implements OnChanges
this.onClickDocument(e);
}
- private bottomVisible = true;
+ public bottomVisible = true;
private myRenderer: Renderer;
// Drop-down show/hide flag. default is false (closed)
@@ -57,7 +57,9 @@ export class DropDownComponent extends ValidatableComponent implements OnChanges
ngOnInit(): void {
if (this.options) {
this.allOptions = this.options;
- if (this.options.find(option => option.type === DropDownOptionType.Header)) {
+ // To support ES5
+ if (this.options.filter(option => option.type === DropDownOptionType.Header).length>0) {
+ // if (this.options.find(option => option.type === DropDownOptionType.Header)) {
this.isGroupDesign = true;
}
}
@@ -114,14 +116,20 @@ export class DropDownComponent extends ValidatableComponent implements OnChanges
}
private isSelectable = (value: string): boolean => {
- const option: IDropDownOption = this.options.find(o => o.value === value);
+ // Support ES5
+ // const option: IDropDownOption = this.options.find(o => o.value === value);
+ const option: IDropDownOption = this.options.filter(o => o.value === value)[0];
if (!option) { return false; }
if (!option.type) { return true; }
- return !this.unselectableOptions.find(optionType => optionType === option.type);
+ // Support ES5
+ // return !this.unselectableOptions.find(optionType => optionType === option.type);
+ return !this.unselectableOptions.filter(optionType => optionType === option.type)[0];
}
private setSelected = (value: string): void => {
- this.selectedOption = this.options.find(o => o.value === value);
+ // Support ES5
+ // this.selectedOption = this.options.find(o => o.value === value);
+ this.selectedOption = this.options.filter(o => o.value === value)[0];
if (this.type === DropDownTypes.Auto) { this.filterValue = value; }
this.show = false;
this.changeEmitter.next(this.selectedOption);