mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
f4c50fb3a5
no issue UI experiment (behind the `cardSettingsPanel` labs flag) for pulling card settings out into a separate side-panel. Prototyping against the email-cta card. - shows panel immediately when selected unless selected by keyboard in which case it will wait for mouse input - panel position is fixed so it's always on screen - initial position tries to be as close to centered right of the card as possible - ensures all of the panel is on-screen, will overlap the card if there's no enough horizontal width - re-positions after window resize - card no longer has a separate edit mode, the text replacement field is directly editable
60 lines
2.6 KiB
Handlebars
60 lines
2.6 KiB
Handlebars
{{#if this.icon}}
|
|
<div class="sticky" style="top: {{this.iconTop}}px; margin-bottom: {{this.iconTop}}px">
|
|
<span data-tooltip={{@iconTooltip}}>{{svg-jar this.icon class=this.iconClass}}</span>
|
|
</div>
|
|
<div style="margin-top: -{{this.iconTop}}px"></div>
|
|
{{/if}}
|
|
|
|
{{yield (hash
|
|
showSettingsPanel=this.shouldShowSettingsPanel
|
|
CaptionInput=(component "koenig-caption-input"
|
|
captureInput=this.isSelected
|
|
addParagraphAfterCard=this.addParagraphAfterCard
|
|
moveCursorToPrevSection=this.moveCursorToPrevSection
|
|
moveCursorToNextSection=this.moveCursorToNextSection
|
|
)
|
|
AltInput=(component "koenig-alt-input"
|
|
addParagraphAfterCard=this.addParagraphAfterCard
|
|
moveCursorToPrevSection=this.moveCursorToPrevSection
|
|
moveCursorToNextSection=this.moveCursorToNextSection
|
|
)
|
|
)}}
|
|
|
|
{{#let (and this.saveAsSnippet (not this.isEditing)) as |showSnippetIcon|}}
|
|
{{#if (or this.toolbar showSnippetIcon)}}
|
|
<KgActionBar @class="absolute" @style={{this.toolbarStyle}} @isVisible={{this.shouldShowToolbar}} @instantClose={{this.koenigUi.inputHasFocus}}>
|
|
{{#each this.toolbar.items as |item|}}
|
|
{{#if item.divider}}
|
|
<li class="ma0 ml1 mr1 kg-action-bar-divider bg-darkgrey-l2 h5" role="separator"></li>
|
|
{{else}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title={{item.title}}
|
|
class="dib dim-lite link h9 w9 nudge-top--1 justify-center {{item.buttonClass}}"
|
|
{{on "mousedown" (action item.action)}}
|
|
>
|
|
{{#if item.icon}}{{svg-jar item.icon class=(concat item.iconClass (if item.text " mr2") " w4 h4")}} {{/if}}{{item.text}}
|
|
</button>
|
|
</li>
|
|
{{/if}}
|
|
{{/each}}
|
|
|
|
{{#if showSnippetIcon}}
|
|
{{#if this.toolbar.items}}
|
|
<li class="ma0 ml1 mr1 lh-solid kg-action-bar-divider bg-darkgrey-l2 h5" role="separator"></li>
|
|
{{/if}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Create snippet"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{on "click" this.saveAsSnippet}}
|
|
>
|
|
{{svg-jar "koenig/kg-snippet" class="w4 h4"}}
|
|
</button>
|
|
</li>
|
|
{{/if}}
|
|
</KgActionBar>
|
|
{{/if}}
|
|
{{/let}} |