Created
February 1, 2018 06:59
-
-
Save buildmotion/587f0abc16a0addee5359ebaec9141db to your computer and use it in GitHub Desktop.
MarkdownEditorModule.EditorComponent.ts
This file contains 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, | |
ElementRef, | |
EventEmitter, | |
ViewChild, | |
AfterViewInit, | |
Input, | |
OnDestroy, | |
OnInit, | |
Output, | |
ViewEncapsulation | |
} from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import * as SimpleMDE from 'simplemde'; // MUST NPM INSTALL @types/[email protected] | |
import { MarkdownEditorOptions } from './../markdownEditorOptions'; | |
@Component({ | |
// tslint:disable-next-line:component-selector | |
selector: 'simplemde', | |
encapsulation: ViewEncapsulation.None, | |
template: `<textarea name="markdowneditor" #simplemde></textarea>`, | |
}) | |
export class EditorComponent implements OnInit, AfterViewInit, OnDestroy { | |
@Input() markdown: any; | |
@Output() markdownChange = new EventEmitter<string>(); | |
@ViewChild('simplemde') textarea: ElementRef; | |
private simplemde: SimpleMDE; | |
constructor( | |
private editorOptions: MarkdownEditorOptions, // injected by ng; constructor injection | |
) { | |
} | |
ngOnInit() { | |
this.initializeEditor(); | |
} | |
initializeEditor() { | |
// verify that the editor options are valid; | |
if (typeof this.editorOptions !== 'object' || typeof this.editorOptions !== 'object') { | |
console.log(`EditorComponent: The editor options are not valid.`); | |
throw new Error('The [MarkdownEditorOptions] is not an object.'); | |
} | |
console.log(`EditorComponent: Preparing to initialize the editor.`); | |
this.editorOptions.initialValue = this.markdown; | |
this.simplemde = new SimpleMDE(this.editorOptions); | |
} | |
ngOnDestroy() { | |
console.log(`EditorComponent: Preparing to destroy the editor.`); | |
this.simplemde = null; | |
console.log(`EditorComponent: The editor is destroyed.`); | |
} | |
ngAfterViewInit() { | |
console.log(`EditorComponent: Running ngAfterViewInit.`); | |
if (this.simplemde != null) { | |
this.simplemde.codemirror.on('change', () => { | |
this.markdownChange.emit(this.simplemde.value()); | |
}); | |
} else { | |
console.log(`EditorComponent: is null.`); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment