2021-06-16 19:56:25 +03:00
|
|
|
<div
|
2021-06-22 14:12:35 +03:00
|
|
|
class="gh-editor-feature-image-container"
|
2021-06-16 19:56:25 +03:00
|
|
|
{{on "mouseover" (fn (mut this.isHovered) true)}}
|
|
|
|
{{on "mouseleave" (fn (mut this.isHovered) false)}}
|
|
|
|
>
|
|
|
|
<GhUploader
|
|
|
|
@extensions={{this.imageExtensions}}
|
|
|
|
@onComplete={{this.setUploadedImage}}
|
|
|
|
as |uploader|
|
|
|
|
>
|
2021-08-31 16:21:00 +03:00
|
|
|
{{#unless @image}}
|
|
|
|
<div
|
|
|
|
class="gh-editor-feature-image-dropzone"
|
|
|
|
{{on "dragover" this.dragOver}}
|
|
|
|
{{on "dragleave" this.dragLeave}}
|
|
|
|
{{on "drop" (fn this.drop uploader.setFiles)}}
|
|
|
|
></div>
|
|
|
|
{{/unless}}
|
2021-07-16 17:00:48 +03:00
|
|
|
|
|
|
|
{{#if this.canDrop}}
|
2021-07-20 12:30:02 +03:00
|
|
|
<div class="gh-editor-feature-image-drop-indicator bg-green br-pill pe-none"></div>
|
2021-07-16 17:00:48 +03:00
|
|
|
{{/if}}
|
|
|
|
|
2021-06-16 19:56:25 +03:00
|
|
|
{{#if uploader.isUploading}}
|
|
|
|
{{!-- upload in progress --}}
|
|
|
|
{{uploader.progressBar}}
|
|
|
|
{{else if uploader.errors}}
|
|
|
|
{{!-- upload failed --}}
|
|
|
|
{{#each uploader.errors as |error|}}
|
2021-06-16 20:08:22 +03:00
|
|
|
<div class="gh-setting-error" data-test-error="feature-image">
|
|
|
|
{{or error.context error.message}}
|
2021-06-21 13:03:35 +03:00
|
|
|
<button type="button" class="ml2 b" {{on "click" uploader.cancel}}>Retry</button>
|
2021-06-16 20:08:22 +03:00
|
|
|
</div>
|
2021-06-16 19:56:25 +03:00
|
|
|
{{/each}}
|
|
|
|
{{else if @image}}
|
|
|
|
{{!-- image is present --}}
|
2021-06-30 13:42:42 +03:00
|
|
|
<span class="gh-editor-feature-image-indicator" data-tooltip="A feature image is publicly visible to anyone">
|
|
|
|
{{svg-jar "feature-image"}}
|
|
|
|
</span>
|
2021-06-22 14:12:35 +03:00
|
|
|
<div class="gh-editor-feature-image">
|
2021-06-16 19:56:25 +03:00
|
|
|
<img src={{@image}}>
|
2023-04-19 13:57:26 +03:00
|
|
|
{{#if (feature 'imageEditor')}}
|
|
|
|
<KoenigImageEditor
|
|
|
|
@imageSrc={{@image}}
|
|
|
|
@saveImage={{fn this.saveImage uploader.setFiles}}
|
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
<button type="button" class="image-action image-delete" title="Delete image" {{on "click" @clearImage}}>
|
2021-06-16 19:56:25 +03:00
|
|
|
{{svg-jar "trash"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-06-21 13:03:35 +03:00
|
|
|
<div class="flex justify-between align-center">
|
2021-06-16 19:56:25 +03:00
|
|
|
{{#if this.isEditingAlt}}
|
|
|
|
<input
|
|
|
|
type="text"
|
2021-06-22 14:12:35 +03:00
|
|
|
placeholder="Add alt text to the feature image"
|
|
|
|
class="gh-editor-feature-image-alttext"
|
2021-06-16 19:56:25 +03:00
|
|
|
name="alt"
|
|
|
|
value={{@alt}}
|
|
|
|
{{autofocus}}
|
|
|
|
{{on "input" this.onAltInput}}
|
|
|
|
>
|
|
|
|
{{else}}
|
|
|
|
<KoenigBasicHtmlInput
|
|
|
|
@html={{@caption}}
|
|
|
|
@placeholder={{if this.captionInputFocused "" "Add a caption to the feature image"}}
|
2021-06-22 14:12:35 +03:00
|
|
|
@class="gh-editor-feature-image-caption"
|
2021-06-16 19:56:25 +03:00
|
|
|
@name="caption"
|
|
|
|
@onChange={{@updateCaption}}
|
|
|
|
@onFocus={{fn (mut this.captionInputFocused) true}}
|
|
|
|
@onBlur={{fn (mut this.captionInputFocused) false}}
|
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
<button
|
|
|
|
title="Toggle between editing alt text and caption"
|
2022-02-02 19:09:43 +03:00
|
|
|
class="h-100 pl1 pr1 ba br3 f8 sans-serif fw4 lh-title tracked-2 {{if this.isEditingAlt "bg-green b--green white" "bg-white b--midlightgrey midlightgrey"}}" type="button" {{on "click" this.toggleAltEditing passive=true}}
|
2021-06-16 19:56:25 +03:00
|
|
|
>
|
|
|
|
Alt
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{!-- no-image state --}}
|
|
|
|
<div class="flex flex-row items-center {{if this.hideButton "invisible"}}">
|
2021-07-16 17:00:48 +03:00
|
|
|
{{#if this.canDrop}}
|
|
|
|
<div class="gh-editor-feature-image-add-button"><span>Drop to upload feature image</span></div>
|
|
|
|
{{else}}
|
|
|
|
<button type="button" class="gh-editor-feature-image-add-button" {{on "click" uploader.triggerFileDialog}}>{{svg-jar "plus"}}<span>Add feature image</span></button>
|
2021-11-15 19:38:57 +03:00
|
|
|
{{#if this.settings.unsplash}}
|
|
|
|
<button type="button" class="gh-editor-feature-image-unsplash" {{on "click" this.toggleUnsplashSelector}}>{{svg-jar "unsplash"}}</button>
|
|
|
|
{{/if}}
|
2021-07-16 17:00:48 +03:00
|
|
|
{{/if}}
|
2021-06-16 19:56:25 +03:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div style="display:none">
|
|
|
|
<GhFileInput
|
|
|
|
@multiple={{false}}
|
|
|
|
@action={{uploader.setFiles}}
|
|
|
|
@accept={{uploader.imageMimeTypes}}
|
|
|
|
@onInsert={{uploader.registerFileInput}}
|
|
|
|
data-test-file-input="feature-image" />
|
|
|
|
</div>
|
|
|
|
</GhUploader>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if this.showUnsplashSelector}}
|
|
|
|
<GhUnsplash
|
|
|
|
@select={{this.setUnsplashImage}}
|
|
|
|
@close={{this.toggleUnsplashSelector}}
|
|
|
|
/>
|
|
|
|
{{/if}}
|