From b2a3acea0d0f66028c9ce5fad02d4ecc64abf70c Mon Sep 17 00:00:00 2001 From: Israel Lavi Date: Tue, 7 Aug 2018 10:54:17 +0300 Subject: Initial commit. Adding files needed for Linux Foundation. Change-Id: I9f2b4851a5ae01f83800c7f8bab8608a2221c730 Issue-ID: SDC-1608 Signed-off-by: Israel Lavi --- .../form-elements/dropdown/dropdown-models.ts | 14 +++++++------- .../dropdown/dropdown.component.html.ts | 2 +- .../form-elements/dropdown/dropdown.component.ts | 20 ++++++++++++++------ 3 files changed, 22 insertions(+), 14 deletions(-) (limited to 'src/angular/form-elements/dropdown') 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 = `
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); -- cgit