mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 05:43:54 +08:00
e4c373194d
This commit refactors the Wizard component code in preparation for moving it to the 'static' directory for Embroider route-splitting. It also includes a number of general improvements and simplifications. Extracted from https://github.com/discourse/discourse/pull/23678 Co-authored-by: Godfrey Chan <godfreykfc@gmail.com>
26 lines
505 B
Handlebars
26 lines
505 B
Handlebars
<label
|
|
class="wizard-container__button wizard-container__button-upload
|
|
{{if this.uploading 'disabled'}}"
|
|
>
|
|
{{#if this.uploading}}
|
|
{{i18n "wizard.uploading"}}
|
|
{{else}}
|
|
{{i18n "wizard.upload"}}
|
|
{{/if}}
|
|
|
|
<input
|
|
class="wizard-hidden-upload-field"
|
|
disabled={{this.uploading}}
|
|
type="file"
|
|
accept="image/*"
|
|
/>
|
|
</label>
|
|
|
|
{{#if this.field.value}}
|
|
{{component
|
|
this.previewComponent
|
|
field=this.field
|
|
fieldClass=this.fieldClass
|
|
wizard=this.wizard
|
|
}}
|
|
{{/if}} |