Ghost/ghost/admin/lib/koenig-editor/addon/templates/components/koenig-card-code.hbs
Kevin Ansfield 1133370568 Koenig - Deselect cards when a click happens outside of the editor canvas
refs https://github.com/TryGhost/Ghost/issues/9623
- move click handler registration from `onEnterEdit` to `onSelect`
- add guard against deselecting for clicks on the editor canvas
  - prevents card being deselected when the click would have placed the cursor in a position that selected the card
  - requires editor instance to be passed through to `{{koenig-card}}` in all card components
2018-06-14 12:21:22 +01:00

26 lines
901 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")
editor=editor
}}
{{#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}}