Increase textarea debounce time for custom markup
This commit is contained in:
parent
eba2a7a834
commit
6a056bbe4d
|
@ -17,7 +17,7 @@
|
|||
|
||||
<my-markdown-textarea
|
||||
name="instanceCustomHomepageContent" formControlName="content"
|
||||
[customMarkdownRenderer]="getCustomMarkdownRenderer()"
|
||||
[customMarkdownRenderer]="getCustomMarkdownRenderer()" [debounceTime]="500"
|
||||
[formError]="formErrors['instanceCustomHomepage.content']"
|
||||
></my-markdown-textarea>
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
<my-markdown-textarea
|
||||
name="instanceDescription" formControlName="description"
|
||||
[customMarkdownRenderer]="getCustomMarkdownRenderer()"
|
||||
[customMarkdownRenderer]="getCustomMarkdownRenderer()" [debounceTime]="500"
|
||||
[formError]="formErrors['instance.description']"
|
||||
></my-markdown-textarea>
|
||||
</div>
|
||||
|
|
|
@ -31,6 +31,8 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit {
|
|||
@Input() markdownType: 'text' | 'enhanced' = 'text'
|
||||
@Input() customMarkdownRenderer?: (text: string) => Promise<string | HTMLElement>
|
||||
|
||||
@Input() debounceTime = 150
|
||||
|
||||
@Input() markdownVideo: Video
|
||||
|
||||
@Input() name = 'description'
|
||||
|
@ -59,7 +61,7 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit {
|
|||
ngOnInit () {
|
||||
this.contentChanged
|
||||
.pipe(
|
||||
debounceTime(150),
|
||||
debounceTime(this.debounceTime),
|
||||
distinctUntilChanged()
|
||||
)
|
||||
.subscribe(() => this.updatePreviews())
|
||||
|
|
Loading…
Reference in New Issue