9.2.0 • Published 3 years ago

ngx-typeahead v9.2.0

Weekly downloads
2,483
License
-
Repository
-
Last release
3 years ago

Build Status npm version npm npm

Angular Typeahead Component

This is an extract of the typeahead component from the open source Echoes Player.

Data Sources Support

Its built with JSONP support by default.
Supports HTTP remote source with any http method (get, post etc..). Supports static list (in array form).

Angular Support

Now, ngx-typeahead now follows Angular versions, starting with ngx-typeahead@6.0.0 for Angular 6.X.X.
For Angular 4.3/5.X (With the new HttpClient)- please use version > 0.2.1
For Angular 2, 4 (Without HttpClient)- please use version 0.0.3

AOT compatible

Angular Consulting Services

I'm a Senior Javascript Engineer & A Front End Consultant at Orizens. My services include:

  • consulting on how to approach code in projects and keep it maintainable.
  • I provide project bootstrapping and development - while afterwards, I integrate it on site and guide the team on it.

Contact Me Here

Installation

npm install ngx-typeahead --save-dev

Supported API

Inputs

InputTypeRequiredDescription
taUrlstringYESthe url of a remote server that supports jsonp calls.
taParams{ key: string, value: any}optional, default: {}a {key,value} (json) object to include as params for the json call. Each api supports different structure.
taQueryParamqueryoptional, default: 'q'a string member which is set with the query value for search.
taCallbackParamValuequeryoptional, NO Defaulta string value for the callback query parameter.
taItemTplTemplateRef- optionala template reference to be used for each result item.
taApistringoptional, default: 'jsonp'the utility to make a request with - 'jsonp', 'http'.
taApiMethodstringoptional, default: 'get'the method to be used in either 'jsonp' or 'http'.
taListany[]optionalprovide a static list of items to display. This prevents any remote request and has first precedence.
taListItemFieldstring[]optionalif item in static list is an object, this list of keys in the object that are checked when the list is filtered with the query. if list is empty, all keys are checked
taListItemLabelstringoptionalif static list of type object - this label is used as the key for displaying the item in the suggestions list - itemlabel
taDebouncenumberoptionalset the debounce time before a request is called
taAllowEmptybooleanoptional, default: falseif true, it allows empty strings to pass and invoke search
taCaseSensitivebooleanoptional, default: falseif true, comparing query is performed with case sensitive
taDisplayOnFocusbooleanoptional, default: falseif true, will display results (if exist) when input is clicked

Outputs

OutputTypeRequiredDescription
taSelectedstringYESemits an event once the item is selected.

DEMO

Demo with all parameters StackBlitz

Usage

First, import the NgxTypeaheadModule to your module:

import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { NgxTypeaheadModule } from "ngx-typeahead";
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
import { AppComponent } from "./app";

@NgModule({
  imports: [BrowserModule, NgxTypeaheadModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

platformBrowserDynamic().bootstrapModule(AppModule);

Then, in app component:

import { Component } from "@angular/core";

@Component({
  selector: "app",
  template: `
    <div class="search-results">
      <input
        [value]="search"
        ngxTypeahead
        [taUrl]="url"
        [taParams]="params"
        (taSelected)="handleResultSelected($event)"
      />
    </div>
  `,
})
export class AppComponent {
  public url = "http://suggestqueries.google.com/complete/search";
  public params = {
    hl: "en",
    ds: "yt",
    xhr: "t",
    client: "youtube",
    q: query,
  };
  public search = "";

  handleResultSelected(result) {
    this.search = result;
  }
}

Custom Template For Item

import { Component } from "@angular/core";

@Component({
  selector: "app",
  template: `
    <div class="search-results">
      <input
        [value]="search"
        ngxTypeahead
        [taUrl]="url"
        [taParams]="params"
        [taItemTpl]="itemTpl"
        (taSelected)="handleResultSelected($event)"
      />
      <ng-template #itemTpl let-result>
        <strong>MY {{ result.result }}</strong>
      </ng-template>
    </div>
  `,
})
export class AppComponent {
  public url = "http://suggestqueries.google.com/complete/search";
  public params = {
    hl: "en",
    ds: "yt",
    xhr: "t",
    client: "youtube",
    q: query,
  };
  public search = "";

  handleResultSelected(result) {
    this.search = result;
  }
}

Showcase Examples

NgxTypeahead

This library was generated with Angular CLI version 9.1.11.

9.2.0

3 years ago

9.1.0

4 years ago

9.0.2-next

4 years ago

9.0.1-next

4 years ago

9.0.0-next

4 years ago

6.2.1

4 years ago

6.2.0

6 years ago

6.1.0

6 years ago

6.0.2

6 years ago

6.0.1

6 years ago

6.0.0-4

6 years ago

6.0.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago

0.0.5

6 years ago

0.0.44

6 years ago

0.0.43

6 years ago

0.0.42

6 years ago

0.0.41

6 years ago

0.0.4

6 years ago

0.0.3

7 years ago

0.0.22-3

7 years ago

0.0.22-2

7 years ago

0.0.22-1

7 years ago

0.0.22-0

7 years ago

0.0.21

7 years ago

0.0.2

7 years ago

0.0.2-0

7 years ago

0.0.1

7 years ago

0.0.1-2

7 years ago

0.0.1-1

7 years ago

0.0.1-0

7 years ago