npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cr-ngx-typeahead

v6.2.4

Published

A simple but yet powerful typeahead json/http component for Angular

Downloads

2

Readme

Build Status npm version npm npm

Angular Typeahead Component

This is a fork of Orizens' ngx-typeahead, which, in their turn, 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 [email protected] 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

Installation

npm install ngx-typeahead --save-dev

Supported API

Inputs

| Input | Type | Required | Description | | -------------------- | -------------------------- | -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | taUrl | string | YES | the 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. | | taQueryParam | query | optional, default: 'q' | a string member which is set with the query value for search. | | taCallbackParamValue | query | optional, NO Default | a string value for the callback query parameter. | | taItemTpl | TemplateRef | - optional | a template reference to be used for each result item. | | taApi | string | optional, default: 'jsonp' | the utility to make a request with - 'jsonp', 'http'. | | taApiMethod | string | optional, default: 'get' | the method to be used in either 'jsonp' or 'http'. | | taList | any[] | optional | provide a static list of items to display. This prevents any remote request and has first precedence. | | taListItemField | string[] | optional | if 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 | | taListItemLabel | string | optional | if static list of type object - this label is used as the key for displaying the item in the suggestions list - item[label] | | taDebounce | number | optional | set the debounce time before a request is called | | taAllowEmpty | boolean | optional, default: false | if true, it allows empty strings to pass and invoke search | | taCaseSensitive | boolean | optional, default: false | if true, comparing query is performed with case sensitive | | taDisplayOnFocus | boolean | optional, default: false | if true, will display results (if exist) when input is clicked | | taMapper | function | optional, default: (items) => items | if provided, will be used to map server response to required format | | taHeaders | Object | optional, default: {} | if provided, corresponding headers will be appended to each API request (object keys should be headers' names, and object values - well, headers' values) |

Outputs

| Output | Type | Required | Description | | ---------- | ------ | -------- | ----------------------------------------- | | taSelected | string | YES | emits 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