File

src/modules/input-mask-directives/directives/email-mask.directive.ts

Description

Directive to display an email mask in input elements. This directive internally uses the text-mask-core library to provide the input mask functionality.

IMPORTANT: Currently the Email Mask supports only input of type text, tel, url, password, and search. Due to a limitation in browser API, other input types, such as email or number, cannot be supported.

Disabling the mask

Passing false to the directive will disable the mask: <input type="text" [starkEmailMask]="false">

Example :
<input type="text" starkEmailMask> <!-- without config the mask will also be displayed -->
<!-- or -->
<input type="text" [starkEmailMask]="yourMaskConfig">
<!-- or -->
<input type="text" [(ngModel)]="yourModelValue" starkEmailMask>
<!-- or -->
<input type="text" [(ngModel)]="yourModelValue" [starkEmailMask]="yourMaskConfig">
<!-- or -->
<input type="text" [formControl]="yourFormControl" starkEmailMask>
<!-- or -->
<input type="text" [formControl]="yourFormControl" [starkEmailMask]="yourMaskConfig">

Extends

MaskedInputDirective

Implements

OnChanges

Metadata

Index

Properties
Methods
Inputs

Constructor

Public constructor(_renderer: Renderer2, _elementRef: ElementRef, _compositionMode: boolean)

Class constructor

Parameters :
Name Type Optional Description
_renderer Renderer2 No
  • Angular Renderer2 wrapper for DOM manipulations.
_elementRef ElementRef No
  • Reference to the DOM element where this directive is applied to.
_compositionMode boolean No
  • Injected token to control if form directives buffer IME input until the "compositionend" event occurs.

Inputs

starkEmailMask
Type : boolean
Default value : true

Whether to display the email mask in the input field.

Methods

Public ngOnChanges
ngOnChanges(changes: SimpleChanges)

Component lifecycle hook

Parameters :
Name Type Optional Description
changes SimpleChanges No
  • Contains the changed properties
Returns : void
Public normalizeMaskConfig
normalizeMaskConfig(maskConfig: boolean)

Create a valid configuration to be passed to the MaskedInputDirective

Parameters :
Name Type Optional Default value Description
maskConfig boolean No true
  • The provided configuration via the directive's input
Returns : Ng2TextMaskConfig

Properties

Static ngAcceptInputType_maskConfig
Type : BooleanInput
import { Directive, ElementRef, forwardRef, Inject, Input, OnChanges, Optional, Provider, Renderer2, SimpleChanges } from "@angular/core";
import { COMPOSITION_BUFFER_MODE, NG_VALUE_ACCESSOR } from "@angular/forms";
import { CombinedPipeMask } from "text-mask-core";
import { emailMask } from "text-mask-addons";
import { MaskedInputDirective, TextMaskConfig as Ng2TextMaskConfig } from "angular2-text-mask";
import { BooleanInput } from "@angular/cdk/coercion";

/**
 * @ignore
 */
const directiveName = "[starkEmailMask]";

/**
 * @ignore
 */
export const STARK_EMAIL_MASK_VALUE_ACCESSOR: Provider = {
	provide: NG_VALUE_ACCESSOR,
	// eslint-disable-next-line @angular-eslint/no-forward-ref
	useExisting: forwardRef(() => StarkEmailMaskDirective),
	multi: true
};

/**
 * Directive to display an email mask in input elements. This directive internally uses the {@link https://github.com/text-mask/text-mask/tree/master/core|text-mask-core} library
 * to provide the input mask functionality.
 *
 * **`IMPORTANT:`** Currently the Email Mask supports only input of type text, tel, url, password, and search.
 * Due to a limitation in browser API, other input types, such as email or number, cannot be supported.
 *
 * ### Disabling the mask
 * Passing `false` to the directive will disable the mask: `<input type="text" [starkEmailMask]="false">`
 *
 * @example
 * <input type="text" starkEmailMask> <!-- without config the mask will also be displayed -->
 * <!-- or -->
 * <input type="text" [starkEmailMask]="yourMaskConfig">
 * <!-- or -->
 * <input type="text" [(ngModel)]="yourModelValue" starkEmailMask>
 * <!-- or -->
 * <input type="text" [(ngModel)]="yourModelValue" [starkEmailMask]="yourMaskConfig">
 * <!-- or -->
 * <input type="text" [formControl]="yourFormControl" starkEmailMask>
 * <!-- or -->
 * <input type="text" [formControl]="yourFormControl" [starkEmailMask]="yourMaskConfig">
 *
 */
@Directive({
	host: {
		"(input)": "_handleInput($event.target.value)",
		"(blur)": "onTouched()",
		"(compositionstart)": "_compositionStart()",
		"(compositionend)": "_compositionEnd($event.target.value)"
	},
	selector: directiveName,
	exportAs: "starkEmailMask",
	providers: [STARK_EMAIL_MASK_VALUE_ACCESSOR]
})
export class StarkEmailMaskDirective extends MaskedInputDirective implements OnChanges {
	/**
	 * Whether to display the email mask in the input field.
	 */
	/* eslint-disable @angular-eslint/no-input-rename */
	@Input("starkEmailMask")
	public maskConfig = true; // enabled by default

	// Information about boolean coercion https://angular.io/guide/template-typecheck#input-setter-coercion
	public static ngAcceptInputType_maskConfig: BooleanInput;

	/**
	 * Class constructor
	 * @param _renderer - Angular `Renderer2` wrapper for DOM manipulations.
	 * @param _elementRef - Reference to the DOM element where this directive is applied to.
	 * @param _compositionMode  - Injected token to control if form directives buffer IME input until the "compositionend" event occurs.
	 */
	public constructor(
		_renderer: Renderer2,
		_elementRef: ElementRef,
		@Optional() @Inject(COMPOSITION_BUFFER_MODE) _compositionMode: boolean
	) {
		super(_renderer, _elementRef, _compositionMode);
	}

	/**
	 * Component lifecycle hook
	 * @param changes - Contains the changed properties
	 */
	public override ngOnChanges(changes: SimpleChanges): void {
		this.textMaskConfig = this.normalizeMaskConfig(this.maskConfig);

		super.ngOnChanges(changes);
	}

	/**
	 * Create a valid configuration to be passed to the MaskedInputDirective
	 * @param maskConfig - The provided configuration via the directive's input
	 */
	public normalizeMaskConfig(maskConfig: boolean = true): Ng2TextMaskConfig {
		// in case the directive is used without inputs: "<input type='text' starkEmailMask>" the maskConfig becomes an empty string ''
		// therefore "undefined" or string values will also enable the mask
		maskConfig = typeof maskConfig !== "boolean" ? true : maskConfig;

		if (!maskConfig) {
			return { mask: false }; // remove the mask
		}

		// TODO: Ng2TextMaskConfig is not the same as Core TextMaskConfig
		// even though emailMask is passed as a mask, it is actually made of both a mask and a pipe bundled together for convenience
		// https://github.com/text-mask/text-mask/tree/master/addons
		const { mask, pipe }: CombinedPipeMask = emailMask;
		return { mask: <any>mask, pipe: <any>pipe };
	}
}

results matching ""

    No results matching ""