Skip to content

Instantly share code, notes, and snippets.

@Eetezadi
Forked from maxt3r/autoresize.ts
Last active February 26, 2017 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Eetezadi/368658ca4364354cfca768f24e2ac810 to your computer and use it in GitHub Desktop.
Save Eetezadi/368658ca4364354cfca768f24e2ac810 to your computer and use it in GitHub Desktop.
Ionic 2 ion-textarea autoresize
// An autoresize directive that works with ion-textarea in Ionic 2
// Usage example: <ion-textarea autoresize [(ngModel)]="body"></ion-textarea>
// Based on https://www.npmjs.com/package/angular2-autosize
import { Directive, HostListener, ElementRef } from "@angular/core";
@Directive({
selector: "ion-textarea[autoresize]" // Attribute selector
})
export class Autoresize {
@HostListener("input", ["$event.target"])
onInput(textArea: HTMLTextAreaElement): void {
this.adjust();
}
constructor(public element: ElementRef) {
}
ngOnInit(): void {
this.adjust();
}
adjust(): void {
let ta = this.element.nativeElement.querySelector("textarea");
if (ta) {
ta.style.overflow = "hidden";
ta.style.height = "auto";
ta.style.height = ta.scrollHeight + "px";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment