0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-24 10:20:28 +01:00
discourse-custom-wizard/assets/javascripts/discourse/components/wizard-text-editor.hbs
2024-11-22 16:51:24 +01:00

44 Zeilen
Kein EOL
1 KiB
Handlebars

{{d-editor
value=this.value
forcePreview=this.forcePreview
placeholder=this.placeholder
}}
<div class="wizard-editor-gutter">
{{#if this.previewEnabled}}
{{d-button
action=(action "togglePreview")
translatedLabel=this.previewLabel
}}
{{/if}}
{{#if this.fieldsEnabled}}
{{d-button
action=(action "togglePopover")
translatedLabel=this.popoverLabel
}}
{{#if this.showPopover}}
<div class="wizard-editor-gutter-popover">
<label>
{{i18n "admin.wizard.action.post_builder.user_properties"}}
{{this.userPropertyList}}
</label>
{{#if this.hasWizardFields}}
<label>
{{i18n "admin.wizard.action.post_builder.wizard_fields"}}
{{this.wizardFieldList}}
</label>
{{/if}}
{{#if this.hasWizardActions}}
<label>
{{i18n "admin.wizard.action.post_builder.wizard_actions"}}
{{this.wizardActionList}}
</label>
{{/if}}
</div>
{{/if}}
{{/if}}
</div>