mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:33:52 +08:00
1506017767
The previous `createPreviewComponent` implementation was problematic for template colocation. We can achieve the same result using normal component class inheritance.
30 lines
797 B
Handlebars
30 lines
797 B
Handlebars
<div class="previews {{if this.draggingActive 'dragging'}}">
|
|
<div class="wizard-container__preview topic-preview">
|
|
<canvas
|
|
width={{this.elementWidth}}
|
|
height={{this.elementHeight}}
|
|
style={{this.canvasStyle}}
|
|
>
|
|
</canvas>
|
|
</div>
|
|
<div class="wizard-container__preview homepage-preview">
|
|
<HomepagePreview @wizard={{this.wizard}} @step={{this.step}} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="preview-nav">
|
|
<a
|
|
href
|
|
class="preview-nav-button {{if this.previewTopic 'active'}}"
|
|
{{on "click" this.setPreviewTopic}}
|
|
>
|
|
{{i18n "wizard.previews.topic_preview"}}
|
|
</a>
|
|
<a
|
|
href
|
|
class="preview-nav-button {{unless this.previewTopic 'active'}}"
|
|
{{on "click" this.setPreviewHomepage}}
|
|
>
|
|
{{i18n "wizard.previews.homepage_preview"}}
|
|
</a>
|
|
</div> |