mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
48030c3050
refs https://github.com/TryGhost/Team/issues/3034 - adds new alpha feature flag for image editing in Admin - allows new config for Pintura files that enable the image editing in Admin - adds new ember component for triggering image editing for post feature images --------- Co-authored-by: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
38 lines
1.5 KiB
Handlebars
38 lines
1.5 KiB
Handlebars
<div class="modal-content" data-test-modal="upload-image">
|
|
<div class="modal-body">
|
|
{{#if this.url}}
|
|
<div class="gh-image-uploader -with-image">
|
|
<div><img src={{this.url}} alt="" role="presentation"></div>
|
|
<button type="button" class="image-action image-delete" title="Delete" {{on "click" this.removeImage}}>
|
|
{{svg-jar "trash"}}
|
|
<span class="hidden">Delete</span>
|
|
</button>
|
|
</div>
|
|
{{else}}
|
|
<GhImageUploader
|
|
@image={{this.url}}
|
|
@saveButton={{false}}
|
|
@update={{this.fileUploaded}}
|
|
@uploadStarted={{fn (mut this.isUploading) true}}
|
|
@uploadFinished={{fn (mut this.isUploading) false}}
|
|
@accept={{@data.accept}}
|
|
@extensions={{@data.extensions}}
|
|
@uploadUrl={{@data.uploadUrl}}
|
|
@paramsHash={{@data.paramsHas}}
|
|
/>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" type="button" {{on "click" @close}}><span>Cancel</span></button>
|
|
{{#if this.isUploading}}
|
|
<button class="gh-btn gh-btn-black right gh-btn-icon disabled" type="button"><span>Save</span></button>
|
|
{{else}}
|
|
<GhTaskButton
|
|
@task={{this.uploadImageTask}}
|
|
@class="gh-btn gh-btn-black right gh-btn-icon"
|
|
data-test-modal-accept-button
|
|
/>
|
|
{{/if}}
|
|
</div>
|
|
</div> |