Ghost/ghost/admin/lib/koenig-editor/addon/templates/components/koenig-card-code.hbs
Kevin Ansfield 569a6942cd 🎨 Koenig - Exit edit mode of a card when clicking outside the card
refs https://github.com/TryGhost/Ghost/issues/9623
- register window click handler in `{{koenig-card}}` whilst card is in edit mode
  - deselect card when a click is registered
  - ignore any clicks inside the card
  - ignore any clicks that originate inside of a modal
- pass our `deselectCard` action through to all cards
2018-05-23 11:38:30 +01:00

25 lines
883 B
Handlebars

{{#koenig-card
class=(concat "ba b--white relative kg-card-hover miw-100 relative" (if isEditing "pt1 pb1 pl6 nl6 pr6 nr6"))
headerOffset=headerOffset
toolbar=toolbar
isSelected=isSelected
isEditing=isEditing
selectCard=(action selectCard)
deselectCard=(action deselectCard)
editCard=(action editCard)
onLeaveEdit=(action "leaveEditMode")
}}
{{#if isEditing}}
{{gh-cm-editor payload.code
class="koenig-card-html--editor"
autofocus=true
lineWrapping=true
update=(action "updateCode")
}}
{{else}}
<div class="koenig-card-html-rendered">
<pre><code class="line-numbers {{if payload.language (concat "language-" payload.language)}}">{{escapedCode}}</code></pre>
</div>
<div class="koenig-card-click-overlay"></div>
{{/if}}
{{/koenig-card}}