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

ng-voice-inputs

v1.0.3

Published

This library provides Voice Recognition service to fill the form input fields (text, datepicker, textarea, button-click) for Angular application.

Downloads

15

Readme

NgVoiceInputs

This library use speech recognition feature to fill the input fields for Angular application. It supports HTML5 inputs and angular material inputs as well. It supports date, text, number fields.

To install:

npm install --save ng-voice-inputs

Requisites

This plugin requires moment library to run flawlessly
Moment Js V2.24.0
npm install --save [email protected]
NOTE: Please install momentjs v2.24.0 before using the module

Usage

Import the module NgVoiceInputsModule into AppModule

import { NgVoiceInputsModule } from 'ng-voice-inputs';

@NgModule({
  ...
  imports: [NgVoiceInputsModule,...]
  ...
})
export  class  AppModule { }

Then use the component <ng-voice-input></ng-voice-input> to trigger / start voice recognition
And also add the directive vuiInput to all the input fields for which speech recognition service is required.

app.component.html

Example 1: With Angular Material Input Fields

<form  class="section left-section"  #form="ngForm"  (ngSubmit)="submitForm(form)">

	<ng-voice-input (onValueChange)="onResponse($event)"  [style]="styleOpts"></ng-voice-input>

	<div  class="row">

		<mat-form-field  class="col-6">
			<mat-label>Choose from date</mat-label>
			<input  matInput  [matDatepicker]="picker"  [vuiInput]="optionsDate"  name="fromDate"  ngModel>
			<mat-datepicker-toggle  matSuffix  [for]="picker"></mat-datepicker-toggle>
			<mat-datepicker  #picker  ></mat-datepicker>
		</mat-form-field>

	</div>

	<div  class="row">

		<mat-form-field  class="col-6">
			<mat-label>First Name</mat-label>
			<input  matInput  type="text"  [vuiInput]="optionsText"  name="firstName"  ngModel>
		</mat-form-field>
		

		<mat-form-field  class="col-6">
			<mat-label>Age</mat-label>
			<input  matInput  type="text"  [vuiInput]="optionsNumber"  name="age"  ngModel>
		</mat-form-field>
		
	</div>

	<input  type="date"  [vuiInput]="optionsDate"  name="dob"  ngModel>
	<button  mat-raised-button  [vuiInput]="">Submit</button>

</form>

Example 2: Angular basic form Inputs with ngModel

<form  class="section left-section"  #form="ngForm"  (ngSubmit)="submitForm(form)">

	<input  matInput  type="text"  [vuiInput]="optionsText"  name="firstName"  ngModel>
	<input  matInput  type="number"  [vuiInput]="optionsNumber"  name="age"  ngModel>
	<input  type="date"  [vuiInput]="optionsDate"  name="dob"  ngModel>
	<button [vuiInput]="">Submit</button>

</form>


app.component.ts

@Component({
	selector:  'app-root',
	templateUrl:  './app.component.html',
	styleUrls: ['./app.component.scss']
})

export  class  AppComponent  implements  OnInit {
	
	optionsText = {
		type:  'text'
	}

	optionsDate = {
		type:  'date'
	}

	optionsNumber = {
		type:  'number'
	}

	optionsAddress = {
		type:  'address'
	}

	optionsSelect = {
		type:  'select'
	}

	styleOpts = {
		iconParse:  'icon icon-mic-green',
		animationParse:  'parse-green'
	}

	constructor() {}

	ngOnInit(): void {}
	
	onResponse(evt) {
		console.log(evt)
	}
	submitForm(form) {
		console.table(form.value);
	}
}

Documentation

Properties

  1. VuiInputDirective (vuiInput) directive expects object InputOption.
InputOption: {
    type: string,
    format: string
}

InputOption.type: Possible values are: 'text', 'address', 'date', 'number'. Default: 'text'
InputOption.format: MomentJs date format. Default: 'DD/MM/YYYY'
  1. NgVoiceInputsComponent (<ng-voice-input></ng-voice-input>) component properties

    StyleOptions. Optional

StyleOptions: {
	containerClass:  string,
	iconStart: string,
	iconParse:  string,
}

StyleOptions.containerClass: Class name for the component. Default: 'centered'
StyleOptions.iconStart: Class name for mic icon when it is idle or before start of voice recognition. Default: 'icon icon-mic'
StyleOptions.iconParse: Class name for mic icon when it is listening to speech and parsing. Default: 'icon icon-mic'

	> `scrollOffset`: Page Scroll Offset which is to be scrolled. Optional. (Default: 200px)
	> `scrollDuration`: Page Scroll duration. Optional. (Default: 300ms)


	> `onValueChange`: Output Observable. Provides the value after speech recognition complete.

Demo Example

Angular Speech Recognition Forms