Those are the same arguments that are passed into `after-d-editor` outlet. This will enable plugins that attach to editor preview to be conditionally enabled, usually only for the composer. Plugins that will use this: discourse-canned-responses, discourse-zoom.
55 lines
1.7 KiB
Handlebars
55 lines
1.7 KiB
Handlebars
<div class='d-editor-container'>
|
|
<div class="d-editor-textarea-wrapper {{if disabled "disabled"}}">
|
|
<div class='d-editor-button-bar'>
|
|
{{#each toolbar.groups as |group|}}
|
|
{{#each group.buttons as |b|}}
|
|
{{#if b.popupMenu}}
|
|
{{toolbar-popup-menu-options
|
|
content=popupMenuOptions
|
|
onChange=onPopupMenuAction
|
|
onExpand=(action b.action b)
|
|
class=b.className
|
|
options=(hash
|
|
popupTitle=b.title
|
|
icon=b.icon
|
|
)
|
|
}}
|
|
{{else}}
|
|
{{d-button
|
|
action=b.action
|
|
type="button"
|
|
actionParam=b
|
|
translatedTitle=b.title
|
|
label=b.label
|
|
icon=b.icon
|
|
class=b.className}}
|
|
{{/if}}
|
|
{{/each}}
|
|
|
|
{{#unless group.lastGroup}}
|
|
<div class='d-editor-spacer'></div>
|
|
{{/unless}}
|
|
{{/each}}
|
|
</div>
|
|
|
|
{{conditional-loading-spinner condition=loading}}
|
|
{{textarea
|
|
autocomplete="discourse"
|
|
tabindex=tabindex
|
|
value=value
|
|
class="d-editor-input"
|
|
placeholder=placeholderTranslated
|
|
disabled=disabled
|
|
input=change}}
|
|
{{popup-input-tip validation=validation}}
|
|
{{plugin-outlet name="after-d-editor" tagName="" args=outletArgs}}
|
|
</div>
|
|
|
|
<div class="d-editor-preview-wrapper {{if forcePreview 'force-preview'}}">
|
|
<div class="d-editor-preview">{{{preview}}}</div>
|
|
{{plugin-outlet name="editor-preview" classNames="d-editor-plugin" args=outletArgs}}
|
|
</div>
|
|
</div>
|
|
|
|
{{emoji-picker active=emojiPickerIsActive isEditorFocused=isEditorFocused emojiSelected=(action 'emojiSelected')}}
|