Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-kladr

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-kladr

Angular 4+ package for better experience using kladr api service

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

angular-kladr

Angular 4+ package for better experience using kladr api service

  • Installation
  • Setup
  • Usage
  • Demo

Installation

$ npm install angular-kladr --save

Setup

1. Import KladrModule from node_modules/angular-kladr folder

import { KladrModule } from 'angular-kladr';

Add imported module to the imports section in NgModule decorator

@NgModule({
  .
  .
  .
  imports: [
    :
    KladrModule;
  ]
})

2. Inject service into your component/service constructor


import { Component } from '@angular/core';
import { KladrService } from 'angular-kladr';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  constructor(
    private kladr$: KladrService
  ){ }
}

Usage

Basic usage

Basically, you need to create collection of type Observable<BaseResponse> imported from the package.

public cities: Observable<BaseResponse>;

Then create FormControl, which you will get value from in order to pass it into kladr api request.

Assign the request to the collection in the contructor as shown below:

constructor(private kladr$: KladrService) {
  this.cityControl = new FormControl('');

  this.cities = this.cityControl.valueChanges
    .pipe(
      takeUntil(this.ngUnsubscribe),
      debounceTime(100),
      switchMap(value => {
        const context: SearchContext = {
          ...this.regionContext,
          query: value
        };
        return this.kladr$.api(context);
      })
    );
}
private ngUnsubscribe = new Subject<void>();
private regionContext: SearchContext = {
  limit: 10,
  contentType: ContentType.region
};

public cities: Observable<BaseResponse>;
public cityControl: FormControl;

Also, we need to know which city a client will choose to provide some kind of autocomplete

public shosenCity: BaseModel;

chooseCity(city: BaseModel) {
  this.shosenCity = city;
  this.cityControl.setValue(city.name);
}

To make this work let's add some html code in our template:

<div>
  <label for="city">Choose city</label>
  <input type="text" id="city" name="city" [formControl]="cityControl">
  <ul>
    <li *ngFor="let city of (cities | async)?.result">
      <a href="javascript:void(0)" (click)="chooseCity(city)">{{city.name}}</a>
    </li>
  </ul>
  <div>
    <pre>{{chosenCity | json}}</pre>
  </div>
</div>

Combining all together:

  1. app.module.ts :
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { KladrModule } from 'angular-kladr';
import { ReactiveFormsModule } from '@angular/forms';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    KladrModule,
    ReactiveFormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
  1. app.component.ts :
import { Component } from '@angular/core';
import { KladrService, BaseResponse, SearchContext, ContentType, BaseModel } from 'angular-kladr';
import { Observable, Subject } from 'rxjs';
import { takeUntil, debounceTime, switchMap } from 'rxjs/operators';
import { FormControl } from '@angular/forms';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  constructor(private kladr$: KladrService) {
    this.cityControl = new FormControl('');

    this.cities = this.cityControl.valueChanges
      .pipe(
        takeUntil(this.ngUnsubscribe),
        debounceTime(100),
        switchMap(value => {
          const context: SearchContext = {
            ...this.regionContext,
            query: value
          };
          return this.kladr$.api(context);
        })
      );
  }

  private ngUnsubscribe = new Subject<void>();
  private regionContext: SearchContext = {
    limit: 10,
    contentType: ContentType.region
  };

  public cities: Observable<BaseResponse>;
  public cityControl: FormControl;
  public chosenCity: BaseModel;

  chooseCity(city: BaseModel) {
    this.chosenCity = city;
    this.cityControl.setValue(city.name);
  }
}
  1. app.component.html :
<div>
  <label for="city">Choose city</label>
  <input type="text" id="city" name="city" [formControl]="cityControl">
  <ul>
    <li *ngFor="let city of (cities | async)?.result">
      <a href="javascript:void(0)" (click)="chooseCity(city)">{{city.name}}</a>
    </li>
  </ul>
  <div>
    <pre>{{chosenCity | json}}</pre>
  </div>
</div>

Demo

The demo will be available soon.

Keywords

FAQs

Package last updated on 30 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc