Created
June 23, 2017 08:43
-
-
Save NetanelBasal/5aa37369154283589ad3f00715158631 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, forwardRef, Renderer2, ViewChild } from '@angular/core'; | |
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'; | |
export const EPANDED_TEXTAREA_VALUE_ACCESSOR : any = { | |
provide: NG_VALUE_ACCESSOR, | |
useExisting: forwardRef(() => TextareaExpandedComponent), | |
multi: true, | |
}; | |
@Component({ | |
selector: 'textarea-expanded', | |
providers: [EPANDED_TEXTAREA_VALUE_ACCESSOR], | |
template: ` | |
<div contenteditable="true" | |
#textarea | |
tabindex="1" | |
(input)="change($event)" | |
role="textarea"></div> | |
`, | |
styles: [` | |
div { | |
width: 200px; | |
min-height: 50px; | |
border: 1px solid lightgray; | |
} | |
div.disabled { | |
cursor: not-allowed; | |
opacity: 0.5; | |
pointer-events: none; | |
} | |
`] | |
}) | |
export class TextareaExpandedComponent implements ControlValueAccessor { | |
@ViewChild('textarea') textarea; | |
onChange; | |
onTouched; | |
writeValue( value : any ) : void { | |
const div = this.textarea.nativeElement; | |
this.renderer.setProperty(div, 'textContent', value); | |
} | |
registerOnChange( fn : any ) : void { | |
this.onChange = fn; | |
} | |
registerOnTouched( fn : any ) : void { | |
this.onTouched = fn; | |
} | |
setDisabledState( isDisabled : boolean ) : void { | |
const div = this.textarea.nativeElement; | |
const action = isDisabled ? 'addClass' : 'removeClass'; | |
this.renderer[action](div, 'disabled'); | |
} | |
constructor( private renderer : Renderer2 ) { | |
} | |
change( $event ) { | |
this.onChange($event.target.textContent); | |
this.onTouched($event.target.textContent); | |
} | |
} | |
// <textarea-expanded [formControl]="control"></textarea-expanded> |
dfdfd dfdfdfdfdf dfdfdfdfdfdfd f
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jhjhjh jjh jjhjjhjhjhj