0.0.1 • Published 6 years ago

ngx-input-switch v0.0.1

Weekly downloads
17
License
MIT
Repository
github
Last release
6 years ago

ngx-input-switch

Demo

Installation

To install this library, run:

npm install ngx-input-switch --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { NgxInputSwitchModule } from 'ngx-input-switch';

import { AppComponent } from './app.component';

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

Component

Once the library is imported, you can use the ngx-input-switch component.

import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { Observable } from 'rxjs/Observable';

@Component({
  selector: 'app-root',
  template: `
<h1>ngx-input-switch</h1>

<form [formGroup]="form" (ngSubmit)="submit()">
  <ngx-input-switch formControlName="switch"></ngx-input-switch>
  <button>Submit</button>
</form>
  `
})
export class AppComponent implements OnInit {
  form: FormGroup;
  value: Observable<number>;

  constructor(private formBuilder: FormBuilder) { }

  ngOnInit() {
    this.form = this.formBuilder.group({
      switch: [true]
    });

    this.value = this.form.controls.switch.valueChanges;
  }

  submit() {
    console.log(this.form.value);
  }
}

License

MIT © Cory Rylan