mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
9993f02ffa
closes https://github.com/TryGhost/Team/issues/1013 Image cards could be dropped into a gallery when at least one image was already present but there was no handling for image cards being dropped onto an empty gallery. - added `data-gallery` attribute to the placeholder element so it gets picked up by the drag-and-drop container registration - added drag enter/leave event handlers so we can show the same dropzone indicator as when a standard file is being dropped onto an empty gallery - updated the drop handling to handle insertion when no images already exist by forcing insertion at index `0` - updated the register or refresh handler to switch between different drag-and-drop container elements as needed and switched to `scheduleOnce` to prevent duplicate containers being created if the function is called twice before render occurs
111 lines
5.3 KiB
Handlebars
111 lines
5.3 KiB
Handlebars
<KoenigCard
|
|
@tagName="figure"
|
|
@class={{concat (kg-style "media-card") " " (kg-style "breakout" size="wide") " flex flex-column"}}
|
|
@isSelected={{this.isSelected}}
|
|
@isEditing={{this.isEditing}}
|
|
@selectCard={{action this.selectCard}}
|
|
@deselectCard={{action this.deselectCard}}
|
|
@editCard={{action this.editCard}}
|
|
@saveAsSnippet={{this.saveAsSnippet}}
|
|
@toolbar={{this.toolbar}}
|
|
@hasEditMode={{false}}
|
|
@addParagraphAfterCard={{this.addParagraphAfterCard}}
|
|
@moveCursorToPrevSection={{this.moveCursorToPrevSection}}
|
|
@moveCursorToNextSection={{this.moveCursorToNextSection}}
|
|
@editor={{this.editor}}
|
|
@onSelect={{action "didSelect"}}
|
|
@onDeselect={{action "didDeselect"}}
|
|
as |card|
|
|
>
|
|
<GhUploader
|
|
@files={{this.files}}
|
|
@accept={{this.imageMimeTypes}}
|
|
@extensions={{this.imageExtensions}}
|
|
@onUploadStart={{action "addImage"}}
|
|
@onUploadSuccess={{action "setImageSrc"}}
|
|
@onUploadFailure={{action "uploadFailed"}}
|
|
@onFailed={{action "handleErrors"}}
|
|
as |uploader|
|
|
>
|
|
<div class="relative{{unless this.images " bg-whitegrey-l2"}}">
|
|
{{#if this.imageRows}}
|
|
<div class="flex flex-column" data-gallery>
|
|
{{#each this.imageRows as |row index|}}
|
|
<div class="flex flex-row justify-center" data-row="{{index}}">
|
|
{{#each row as |image|}}
|
|
<div
|
|
style={{image.style}}
|
|
class="relative hide-child {{image.classes}}"
|
|
data-image
|
|
>
|
|
<img
|
|
src={{or image.previewSrc image.src}}
|
|
width={{image.width}}
|
|
height={{image.height}}
|
|
class="w-100 h-100 db pe-none"
|
|
>
|
|
{{#unless this.koenigDragDropHandler.isDragging}}
|
|
<div class="bg-image-overlay-top child pe-none {{image.overlayClasses}}">
|
|
<div class="flex flex-row-reverse">
|
|
<button class="bg-white-90 pl3 pr3 br3 pe-auto" {{action "deleteImage" image}}>
|
|
{{svg-jar "koenig/kg-trash" class="koenig-gallery-trash-icon"}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{{/unless}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if (or uploader.isUploading (is-empty this.imageRows))}}
|
|
<div class="relative miw-100 flex items-center {{if (is-empty this.imageRows) "kg-media-placeholder ba b--whitegrey" "absolute absolute--fill bg-white-50"}}" data-gallery={{is-empty this.imageRows}}>
|
|
{{#if this.isDraggedOver}}
|
|
<span class="db center sans-serif fw7 f7 middarkgrey">
|
|
Drop 'em like it's hot 🔥
|
|
</span>
|
|
{{else if uploader.isUploading}}
|
|
{{uploader.progressBar}}
|
|
{{else if (is-empty this.imageRows)}}
|
|
<button class="flex flex-column items-center center sans-serif fw4 f7 middarkgrey pa8 pt6 pb6 kg-image-button" onclick={{action "triggerFileDialog"}}>
|
|
{{svg-jar "gallery-placeholder" class="kg-placeholder-gallery nudge-bottom--10"}}
|
|
<span class="mt2 midgrey">Click to select up to 9 images</span>
|
|
</button>
|
|
{{/if}}
|
|
</div>
|
|
{{else if this.isDraggedOver}}
|
|
<div class="absolute absolute--fill flex items-center bg-black-60 pe-none">
|
|
<span class="db center sans-serif fw7 f7 white">
|
|
Drop to add up to 9 images
|
|
</span>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if (and this.errorMessage (not this.isDraggedOver))}}
|
|
<div class="absolute absolute--fill flex items-center bg-black-60">
|
|
<span class="db center sans-serif fw7 f7 pl2 pr2 bg-red white">
|
|
{{this.errorMessage}}.
|
|
<button onclick={{action "clearErrorMessage"}} style="text-decoration: underline !important">
|
|
Dismiss
|
|
</button>
|
|
</span>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div style="display:none">
|
|
<GhFileInput @multiple={{true}} @action={{action "setFiles"}} @accept={{this.imageMimeTypes}} />
|
|
</div>
|
|
</GhUploader>
|
|
|
|
{{#if (or this.isSelected (clean-basic-html this.payload.caption))}}
|
|
<card.CaptionInput
|
|
@caption={{this.payload.caption}}
|
|
@update={{action "updateCaption"}}
|
|
@placeholder="Type caption for gallery (optional)"
|
|
/>
|
|
{{/if}}
|
|
</KoenigCard>
|