mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Merge branch 'searchbar-refactor'
This commit is contained in:
@@ -186,6 +186,10 @@ ion-searchbar {
|
||||
ion-searchbar[#{$color-name}] {
|
||||
.searchbar-ios-cancel {
|
||||
color: $color-value;
|
||||
|
||||
&:hover:not(.disable-hover) {
|
||||
color: color-shade($color-value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,11 +1,35 @@
|
||||
import {ElementRef, Renderer, Directive, Host, forwardRef, ViewChild, Output, EventEmitter} from 'angular2/core';
|
||||
import {ElementRef, Component, Directive, Host, HostBinding, HostListener, ViewChild, Input, Output, EventEmitter, Optional} from 'angular2/core';
|
||||
import {NgIf, NgClass, NgControl, FORM_DIRECTIVES} from 'angular2/common';
|
||||
|
||||
import {Ion} from '../ion';
|
||||
import {Config} from '../../config/config';
|
||||
import {ConfigComponent} from '../../decorators/config-component';
|
||||
import {Icon} from '../icon/icon';
|
||||
import {Button} from '../button/button';
|
||||
import {isDefined} from '../../util/util';
|
||||
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
@Directive({
|
||||
selector: '.searchbar-input',
|
||||
})
|
||||
export class SearchbarInput {
|
||||
@HostListener('input', ['$event'])
|
||||
/**
|
||||
* @private
|
||||
* Don't send the input's input event
|
||||
*/
|
||||
private stopInput(ev) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
}
|
||||
|
||||
constructor(elementRef: ElementRef) {
|
||||
this.elementRef = elementRef;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @name Searchbar
|
||||
@@ -15,65 +39,74 @@ import {Button} from '../button/button';
|
||||
*
|
||||
* @usage
|
||||
* ```html
|
||||
* <ion-searchbar [(ngModel)]="defaultSearch"></ion-searchbar>
|
||||
* <ion-searchbar [(ngModel)]="defaultSearch" (input)="triggerInput($event)" (cancel)="onCancelSearchbar($event)" (clear)="onClearSearchbar($event)"></ion-searchbar>
|
||||
* ```
|
||||
*
|
||||
* @property {function} [cancelButtonAction] - the function that gets called by clicking the cancel button
|
||||
* @property {string} [cancelButtonText=Cancel] - sets the cancel button text to the value passed in
|
||||
* @property {string} [cancelButtonText=Cancel] - Sets the cancel button text to the value passed in
|
||||
* @property {boolean} [hideCancelButton=false] - Hides the cancel button
|
||||
* @property {string} [placeholder=Search] - Sets input placeholder to the value passed in
|
||||
*
|
||||
* @property {Any} [input] - Expression to evaluate when the Searchbar input has changed
|
||||
* @property {Any} [cancel] - Expression to evaluate when the cancel button is clicked.
|
||||
* @property {Any} [clear] - Expression to evaluate when the clear input button is clicked.
|
||||
*
|
||||
* @see {@link /docs/v2/components#search Search Component Docs}
|
||||
*/
|
||||
@ConfigComponent({
|
||||
@Component({
|
||||
selector: 'ion-searchbar',
|
||||
inputs: [
|
||||
'cancelButtonAction',
|
||||
'cancelButtonText',
|
||||
'hideCancelButton',
|
||||
'placeholder'
|
||||
],
|
||||
outputs: ['input'],
|
||||
host: {
|
||||
'[class.searchbar-left-aligned]': 'shouldLeftAlign',
|
||||
'[class.searchbar-focused]': 'isFocused',
|
||||
},
|
||||
template:
|
||||
'<div class="searchbar-input-container">' +
|
||||
'<button (click)="cancelSearchbar($event, query)" (mousedown)="cancelSearchbar($event, query)" clear dark class="searchbar-md-cancel">' +
|
||||
'<button (click)="cancelSearchbar()" (mousedown)="cancelSearchbar()" clear dark class="searchbar-md-cancel">' +
|
||||
'<icon arrow-back></icon>' +
|
||||
'</button>' +
|
||||
'<div class="searchbar-search-icon"></div>' +
|
||||
'<input [value]="query" (blur)="inputBlurred($event)" (focus)="inputFocused()" class="searchbar-input" type="search" [attr.placeholder]="placeholder">' +
|
||||
'<button clear *ngIf="query" class="searchbar-clear-icon" (click)="clearInput()" (mousedown)="clearInput()"></button>' +
|
||||
'<input [value]="value" (keyup)="inputChanged($event)" (blur)="inputBlurred()" (focus)="inputFocused()" class="searchbar-input" type="search" [attr.placeholder]="placeholder">' +
|
||||
'<button clear *ngIf="value" class="searchbar-clear-icon" (click)="clearInput()" (mousedown)="clearInput()"></button>' +
|
||||
'</div>' +
|
||||
'<button clear (click)="cancelSearchbar($event)" (mousedown)="cancelSearchbar($event)" [hidden]="hideCancelButton" class="searchbar-ios-cancel">{{cancelButtonText}}</button>',
|
||||
directives: [FORM_DIRECTIVES, NgIf, NgClass, Icon, Button, forwardRef(() => SearchbarInput)]
|
||||
'<button clear (click)="cancelSearchbar()" (mousedown)="cancelSearchbar()" [hidden]="hideCancelButton" class="searchbar-ios-cancel">{{cancelButtonText}}</button>',
|
||||
directives: [FORM_DIRECTIVES, NgIf, NgClass, Icon, Button, SearchbarInput]
|
||||
})
|
||||
export class Searchbar extends Ion {
|
||||
@ViewChild(forwardRef(() => SearchbarInput)) searchbarInput;
|
||||
query: string;
|
||||
blurInput = true;
|
||||
@ViewChild(SearchbarInput) searchbarInput;
|
||||
|
||||
@Input() cancelButtonText: string;
|
||||
@Input() hideCancelButton: any;
|
||||
@Input() placeholder: string;
|
||||
@Input() ngModel: any;
|
||||
|
||||
@Output() input: EventEmitter<Searchbar> = new EventEmitter();
|
||||
@Output() cancel: EventEmitter<Searchbar> = new EventEmitter();
|
||||
@Output() clear: EventEmitter<Searchbar> = new EventEmitter();
|
||||
|
||||
value: string = '';
|
||||
blurInput: boolean = true;
|
||||
|
||||
@HostBinding('class.searchbar-focused') isFocused;
|
||||
|
||||
@HostBinding('class.searchbar-left-aligned') shouldLeftAlign;
|
||||
|
||||
@HostListener('keyup', ['$event'])
|
||||
/**
|
||||
* @private
|
||||
* Update the Searchbar input value when the input changes
|
||||
*/
|
||||
private inputChanged(ev) {
|
||||
this.value = ev.target.value;
|
||||
this.onChange(this.value);
|
||||
this.input.emit(this);
|
||||
}
|
||||
|
||||
constructor(
|
||||
elementRef: ElementRef,
|
||||
config: Config,
|
||||
ngControl: NgControl,
|
||||
renderer: Renderer
|
||||
@Optional() ngControl: NgControl
|
||||
) {
|
||||
super(elementRef, config);
|
||||
this.renderer = renderer;
|
||||
this.elementRef = elementRef;
|
||||
|
||||
this.input = new EventEmitter('input');
|
||||
|
||||
// If there is no control then we shouldn't do anything
|
||||
if (!ngControl) return;
|
||||
|
||||
this.ngControl = ngControl;
|
||||
this.ngControl.valueAccessor = this;
|
||||
|
||||
this.query = '';
|
||||
// If the user passed a ngControl we need to set the valueAccessor
|
||||
if (ngControl) {
|
||||
ngControl.valueAccessor = this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -88,14 +121,25 @@ export class Searchbar extends Ion {
|
||||
|
||||
this.cancelButtonText = this.cancelButtonText || 'Cancel';
|
||||
this.placeholder = this.placeholder || 'Search';
|
||||
|
||||
if (this.ngModel) this.value = this.ngModel;
|
||||
this.onChange(this.value);
|
||||
|
||||
this.shouldLeftAlign = this.value && this.value.trim() != '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* After the view has initialized check if the Searchbar has a value
|
||||
* After View Initialization check the value
|
||||
*/
|
||||
ngAfterViewInit() {
|
||||
this.shouldLeftAlign = this.searchbarInput.value && this.searchbarInput.value.trim() != '';
|
||||
// If the user passes an undefined variable to ngModel this will warn
|
||||
// and set the value to an empty string
|
||||
if (!isDefined(this.value)) {
|
||||
console.warn('Searchbar was passed an undefined value in ngModel. Please make sure the variable is defined.');
|
||||
this.value = '';
|
||||
this.onChange(this.value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -120,9 +164,8 @@ export class Searchbar extends Ion {
|
||||
this.blurInput = true;
|
||||
return;
|
||||
}
|
||||
//console.log("Blurring input");
|
||||
this.isFocused = false;
|
||||
this.shouldLeftAlign = this.searchbarInput.value && this.searchbarInput.value.trim() != '';
|
||||
this.shouldLeftAlign = this.value && this.value.trim() != '';
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -130,9 +173,10 @@ export class Searchbar extends Ion {
|
||||
* Clears the input field and triggers the control change.
|
||||
*/
|
||||
clearInput() {
|
||||
//console.log("Clearing input");
|
||||
this.searchbarInput.writeValue('');
|
||||
this.searchbarInput.onChange('');
|
||||
this.clear.emit(this);
|
||||
|
||||
this.value = '';
|
||||
this.onChange(this.value);
|
||||
this.blurInput = false;
|
||||
}
|
||||
|
||||
@@ -142,69 +186,29 @@ export class Searchbar extends Ion {
|
||||
* the clearInput function doesn't want the input to blur
|
||||
* then calls the custom cancel function if the user passed one in.
|
||||
*/
|
||||
cancelSearchbar(event, value) {
|
||||
//console.log("Cancel searchbar");
|
||||
cancelSearchbar() {
|
||||
this.cancel.emit(this);
|
||||
|
||||
this.clearInput();
|
||||
this.blurInput = true;
|
||||
|
||||
this.cancelButtonAction && this.cancelButtonAction(event, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Updates the value of query
|
||||
*/
|
||||
updateQuery(value) {
|
||||
this.query = value;
|
||||
this.input.next(value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Updates the value of query
|
||||
*/
|
||||
@Directive({
|
||||
selector: '.searchbar-input',
|
||||
host: {
|
||||
'(keyup)': 'inputChanged($event)'
|
||||
}
|
||||
})
|
||||
export class SearchbarInput {
|
||||
constructor(
|
||||
@Host() searchbar: Searchbar,
|
||||
elementRef: ElementRef,
|
||||
renderer: Renderer
|
||||
) {
|
||||
this.searchbar = searchbar;
|
||||
this.renderer = renderer;
|
||||
this.elementRef = elementRef;
|
||||
|
||||
if (!searchbar.ngControl) return;
|
||||
|
||||
this.onChange = (_) => {};
|
||||
this.onTouched = (_) => {};
|
||||
|
||||
this.ngControl = searchbar.ngControl;
|
||||
this.ngControl.valueAccessor = this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Write a new value to the element.
|
||||
*/
|
||||
writeValue(value) {
|
||||
public writeValue(value: any) {
|
||||
this.value = value;
|
||||
if (typeof value === 'string') {
|
||||
this.searchbar.updateQuery(value);
|
||||
}
|
||||
}
|
||||
|
||||
public onChange = (_:any) => {};
|
||||
public onTouched = () => {};
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Set the function to be called when the control receives a change event.
|
||||
*/
|
||||
registerOnChange(fn) {
|
||||
public registerOnChange(fn:(_:any) => {}):void {
|
||||
this.onChange = fn;
|
||||
}
|
||||
|
||||
@@ -212,17 +216,7 @@ export class SearchbarInput {
|
||||
* @private
|
||||
* Set the function to be called when the control receives a touch event.
|
||||
*/
|
||||
registerOnTouched(fn) {
|
||||
public registerOnTouched(fn:() => {}):void {
|
||||
this.onTouched = fn;
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* Update the Searchbar input value when the input changes
|
||||
*/
|
||||
inputChanged(event) {
|
||||
this.writeValue(event.target.value);
|
||||
this.onChange(event.target.value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,27 +8,23 @@ import {SearchPipe} from 'ionic/components/searchbar/searchbar';
|
||||
directives: [FORM_DIRECTIVES]
|
||||
})
|
||||
class E2EApp {
|
||||
defaultSearch: string = '';
|
||||
defaultSearch: string = 'test';
|
||||
customPlaceholder: string = '';
|
||||
defaultCancel: string = '';
|
||||
customCancel: string = '';
|
||||
customCancelAction: string = '';
|
||||
clickedCustomAction: boolean = false;
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
myCancelAction(event, query) {
|
||||
console.log("Clicked cancel action with", query);
|
||||
this.clickedCustomAction = true;
|
||||
onClearSearchbar(searchbar) {
|
||||
console.log("Clicked clear input on", searchbar);
|
||||
}
|
||||
|
||||
triggerInput(ev) {
|
||||
// The defaultSearch doesn't get updated before this function is called
|
||||
// so we have to wrap it in a timeout
|
||||
setTimeout(() => {
|
||||
console.log("Triggered input", this.defaultSearch);
|
||||
});
|
||||
onCancelSearchbar(searchbar) {
|
||||
console.log("Clicked cancel button with", searchbar);
|
||||
}
|
||||
|
||||
triggerInput(searchbar) {
|
||||
console.log("Triggered input", searchbar);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,24 +1,25 @@
|
||||
<ion-content>
|
||||
<h5 padding-left> Search - Default </h5>
|
||||
<ion-searchbar [(ngModel)]="defaultSearch" (input)="triggerInput($event)" class="e2eDefaultFloatingSearchbar"></ion-searchbar>
|
||||
<ion-searchbar [(ngModel)]="defaultSearch" (input)="triggerInput($event)" (cancel)="onCancelSearchbar($event)" (clear)="onClearSearchbar($event)" class="e2eDefaultFloatingSearchbar"></ion-searchbar>
|
||||
|
||||
<p padding-left>
|
||||
Default Search: <b>{{ defaultSearch }}</b>
|
||||
defaultSearch: <b>{{ defaultSearch }}</b>
|
||||
</p>
|
||||
|
||||
<h5 padding-left> Search - Custom Placeholder </h5>
|
||||
<ion-searchbar [(ngModel)]="customPlaceholder" placeholder="Filter Schedules" class="e2eCustomPlaceholderFloatingSearchbar"></ion-searchbar>
|
||||
<ion-searchbar [(ngModel)]="customPlaceholder" (input)="triggerInput($event)" (cancel)="onCancelSearchbar($event)" (clear)="onClearSearchbar($event)" placeholder="Filter Schedules" class="e2eCustomPlaceholderFloatingSearchbar"></ion-searchbar>
|
||||
|
||||
<p padding-left>
|
||||
customPlaceholder: <b>{{ customPlaceholder }}</b>
|
||||
</p>
|
||||
|
||||
<h5 padding-left> Search - Hide Cancel Button </h5>
|
||||
<ion-searchbar [(ngModel)]="defaultCancel" hideCancelButton class="e2eDefaultCancelButtonFloatingSearchbar"></ion-searchbar>
|
||||
<ion-searchbar [(ngModel)]="defaultCancel" (input)="triggerInput($event)" (cancel)="onCancelSearchbar($event)" (clear)="onClearSearchbar($event)" hideCancelButton class="e2eDefaultCancelButtonFloatingSearchbar"></ion-searchbar>
|
||||
|
||||
<p padding-left>
|
||||
defaultCancel: <b>{{ defaultCancel }}</b>
|
||||
</p>
|
||||
|
||||
<h5 padding-left> Search - Custom Cancel Button Danger </h5>
|
||||
<ion-searchbar [(ngModel)]="customCancel" cancelButtonText="Really Long Cancel" class="e2eCustomCancelButtonFloatingSearchbar" danger></ion-searchbar>
|
||||
|
||||
<h5 padding-left> Search - Custom Cancel Action</h5>
|
||||
<ion-searchbar [(ngModel)]="customCancelAction" cancelButtonText="Done" [cancelAction]="myCancelAction" class="e2eCustomCancelActionFloatingSearchbar"></ion-searchbar>
|
||||
|
||||
<div *ngIf="clickedCustomAction">
|
||||
Clicked custom action with input = {{customCancelAction}}
|
||||
</div>
|
||||
<ion-searchbar (input)="triggerInput($event)" (cancel)="onCancelSearchbar($event)" (clear)="onClearSearchbar($event)" cancelButtonText="Really Long Cancel" class="e2eCustomCancelButtonFloatingSearchbar" danger></ion-searchbar>
|
||||
</ion-content>
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
import {NgControl, FORM_DIRECTIVES, FormBuilder, Validators, Control, ControlGroup} from 'angular2/common';
|
||||
|
||||
import {App} from 'ionic/ionic';
|
||||
import {SearchPipe} from 'ionic/components/searchbar/searchbar';
|
||||
|
||||
|
||||
function randomTitle() {
|
||||
var items = ['Soylent', 'Pizza', 'Pumpkin', 'Apple', 'Bologna', 'Turkey', 'Kabob', 'Salad', 'Fruit bowl', 'Fish Tacos', 'Chimichongas', 'Meatloaf'];
|
||||
return items[Math.floor(Math.random() * items.length)];
|
||||
}
|
||||
|
||||
@App({
|
||||
templateUrl: 'main.html',
|
||||
providers: [NgControl],
|
||||
directives: [FORM_DIRECTIVES]
|
||||
})
|
||||
class E2EApp {
|
||||
constructor() {
|
||||
var fb = new FormBuilder();
|
||||
|
||||
this.searchQuery = '';
|
||||
|
||||
this.items = []
|
||||
for(let i = 0; i < 100; i++) {
|
||||
this.items.push({
|
||||
title: randomTitle()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
getItems() {
|
||||
var q = this.searchQuery;
|
||||
if(q.trim() == '') {
|
||||
return this.items;
|
||||
}
|
||||
return this.items.filter((v) => {
|
||||
if(v.title.toLowerCase().indexOf(q.toLowerCase()) >= 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
})
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,10 @@ import {SearchPipe} from 'ionic/components/searchbar/searchbar';
|
||||
templateUrl: 'main.html'
|
||||
})
|
||||
class E2EApp {
|
||||
defaultToolbarSearch: string = '';
|
||||
primaryToolbarSearch: string = '';
|
||||
dangerToolbarSearch: string = '';
|
||||
lightToolbarSearch: string = '';
|
||||
|
||||
constructor() {
|
||||
|
||||
|
||||
@@ -489,10 +489,8 @@ export class TextInputElement {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
if (this.ngModel) console.log("Value", this.ngModel);
|
||||
if (this.ngModel) this.value = this.ngModel;
|
||||
this.wrapper && this.wrapper.hasValue(this.value);
|
||||
console.log(this.value);
|
||||
}
|
||||
|
||||
focusChange(changed) {
|
||||
|
||||
Reference in New Issue
Block a user