Skip to content

Commit

Permalink
fix(select): stores string | string[]
Browse files Browse the repository at this point in the history
fixes #11337
  • Loading branch information
manucorporat committed Apr 25, 2017
1 parent 3b32b8e commit ba44780
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
17 changes: 6 additions & 11 deletions src/components/select/select.ts
Expand Up @@ -147,12 +147,13 @@ import { SelectPopover, SelectPopoverOption } from './select-popover-component';
providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: Select, multi: true } ],
encapsulation: ViewEncapsulation.None,
})
export class Select extends BaseInput<string[]> implements AfterViewInit, OnDestroy {
export class Select extends BaseInput<string[]|string> implements AfterViewInit, OnDestroy {

_multi: boolean = false;
_options: QueryList<Option>;
_texts: string[] = [];
_text: string = '';
_values: string[] = [];

/**
* @input {string} The text to display on the cancel button. Default: `Cancel`.
Expand Down Expand Up @@ -394,7 +395,7 @@ export class Select extends BaseInput<string[]> implements AfterViewInit, OnDest
set options(val: QueryList<Option>) {
this._options = val;

if (this._value.length === 0) {
if (this._values.length === 0) {
// there are no values set at this point
// so check to see who should be selected
// we use writeValue() because we don't want to update ngModel
Expand All @@ -404,14 +405,7 @@ export class Select extends BaseInput<string[]> implements AfterViewInit, OnDest
}
}

_inputNormalize(val: any): string[] {
if (Array.isArray(val)) {
return val;
}
return [val + ''];
}

_inputShouldChange(val: string[]): boolean {
_inputShouldChange(val: string[]|string): boolean {
return !deepEqual(this._value, val);
}

Expand All @@ -420,11 +414,12 @@ export class Select extends BaseInput<string[]> implements AfterViewInit, OnDest
*/
_inputUpdated() {
this._texts.length = 0;
this._values = Array.isArray(this._value) ? this._value : [this._value + ''];

if (this._options) {
this._options.forEach(option => {
// check this option if the option's value is in the values array
option.selected = this._value.some(selectValue => {
option.selected = this._values.some(selectValue => {
return isCheckedProperty(selectValue, option.value);
});

Expand Down
2 changes: 1 addition & 1 deletion src/components/select/test/select.spec.ts
Expand Up @@ -21,7 +21,7 @@ describe('Select', () => {
corpus: [
[['hola'], ['hola']],
[null, []],
['hola', ['hola']],
['hola', 'hola'],
[['hola', 'adios'], ['hola', 'adios']]
]
});
Expand Down
17 changes: 11 additions & 6 deletions src/util/base-input.ts
Expand Up @@ -238,6 +238,16 @@ export class BaseInput<T> extends Ion implements CommonInput<T> {
return this._isFocus;
}

/**
* @hidden
*/
hasValue(): boolean {
const val = this._value;
return isArray(val)
? val.length > 0
: isPresent(val);
}

/**
* @hidden
*/
Expand All @@ -260,12 +270,7 @@ export class BaseInput<T> extends Ion implements CommonInput<T> {
if (!this._item) {
return;
}

const hasValue = isArray(val)
? val.length > 0
: isPresent(val);

this._item.setElementClass('input-has-value', hasValue);
this._item.setElementClass('input-has-value', this.hasValue());
}

/**
Expand Down

0 comments on commit ba44780

Please sign in to comment.