Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes issues with the image uploader #754

Merged
merged 5 commits into from
Mar 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Http/Controllers/ImageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function uploadByType($type, Request $request)
{
$this->checkPermission('image-create-all');
$this->validate($request, [
'file' => 'required|is_image'
'file' => 'required|image'
]);

if (!$this->imageRepo->isValidType($type)) {
Expand Down
2 changes: 1 addition & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class AppServiceProvider extends ServiceProvider
public function boot()
{
// Custom validation methods
Validator::extend('is_image', function ($attribute, $value, $parameters, $validator) {
Validator::extend('image', function ($attribute, $value, $parameters, $validator) {
$imageMimes = ['image/png', 'image/bmp', 'image/gif', 'image/jpeg', 'image/jpg', 'image/tiff', 'image/webp'];
return in_array($value->getMimeType(), $imageMimes);
});
Expand Down
17 changes: 13 additions & 4 deletions resources/assets/js/vues/components/dropzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ const props = ['placeholder', 'uploadUrl', 'uploadedTo'];
function mounted() {
let container = this.$el;
let _this = this;
new DropZone(container, {
this._dz = new DropZone(container, {
addRemoveLinks: true,
dictRemoveFile: trans('components.image_upload_remove'),
url: function() {
return _this.uploadUrl;
},
Expand Down Expand Up @@ -41,20 +43,27 @@ function mounted() {
$(file.previewElement).find('[data-dz-errormessage]').text(message);
}

if (xhr.status === 413) setMessage(trans('errors.server_upload_limit'));
if (xhr && xhr.status === 413) setMessage(trans('errors.server_upload_limit'));
if (errorMessage.file) setMessage(errorMessage.file[0]);
});
}
});
}

function data() {
return {}
return {};
}

const methods = {
onClose: function () {
this._dz.removeAllFiles(true);
}
};

module.exports = {
template,
props,
mounted,
data,
};
methods
};
4 changes: 3 additions & 1 deletion resources/assets/js/vues/image-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ const methods = {

hide() {
this.showing = false;
this.selectedImage = false;
this.$refs.dropzone.onClose();
this.$el.children[0].components.overlay.hide();
},

Expand Down Expand Up @@ -175,4 +177,4 @@ module.exports = {
data,
computed,
components: {dropzone},
};
};
8 changes: 4 additions & 4 deletions resources/assets/sass/_blocks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,15 +224,15 @@
padding: 0;
align-items: center;
text-align: center;
justify-content: center;
width: 28px;
padding-left: $-xs;
padding-right: $-xs;
&:hover {
background-color: #EEE;
}
i {
flex: 1;
padding: 0;
.svg-icon {
margin-right: 0px;
}
}
> div .outline input {
Expand All @@ -258,4 +258,4 @@
background-color: #F8F8F8;
padding: $-m;
border: 1px solid #DDD;
}
}
27 changes: 16 additions & 11 deletions resources/assets/sass/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
margin-left: 1px;
padding: $-m $-l;
overflow-y: auto;
overflow-x: hidden;
border-left: 1px solid #DDD;
.dropzone-container {
margin-top: $-m;
Expand Down Expand Up @@ -315,8 +316,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {

.dz-preview.dz-file-preview .dz-image {
border-radius: 4px;
background: #999;
background: linear-gradient(to bottom, #eee, #ddd);
background: #e9e9e9;
}

.dz-preview.dz-file-preview .dz-details {
Expand All @@ -332,11 +332,12 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
}

.dz-preview .dz-remove {
font-size: 14px;
font-size: 13px;
text-align: center;
display: block;
cursor: pointer;
border: none;
margin-top: 3px;
}

.dz-preview .dz-remove:hover {
Expand Down Expand Up @@ -385,7 +386,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
border: 1px solid transparent;
}

.dz-preview .dz-details .dz-filename span, .dz-preview .dz-details .dz-size span {
.dz-preview .dz-details .dz-filename span {
background-color: rgba(255, 255, 255, 0.4);
padding: 0 0.4em;
border-radius: 3px;
Expand Down Expand Up @@ -421,13 +422,13 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
.dz-preview .dz-success-mark, .dz-preview .dz-error-mark {
pointer-events: none;
opacity: 0;
z-index: 500;
z-index: 1001;
position: absolute;
display: block;
top: 50%;
left: 50%;
margin-left: -27px;
margin-top: -27px;
margin-top: -35px;
}

.dz-preview .dz-success-mark svg, .dz-preview .dz-error-mark svg {
Expand Down Expand Up @@ -482,9 +483,13 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
display: block;
}

.dz-preview.dz-error:hover .dz-error-message {
opacity: 1;
pointer-events: auto;
.dz-preview.dz-error {
.dz-image, .dz-details {
&:hover ~ .dz-error-message {
opacity: 1;
pointer-events: auto;
}
}
}

.dz-preview .dz-error-message {
Expand All @@ -496,7 +501,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 4px;
font-size: 11.5px;
font-size: 12px;
line-height: 1.2;
top: 88px;
left: -26px;
Expand Down Expand Up @@ -597,4 +602,4 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
.text-muted {
color: #999;
}
}
}
3 changes: 3 additions & 0 deletions resources/assets/sass/_pages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@
flex: 1;
padding-top: 0;
}
div[toolbox-tab-content] .padded.files {
overflow-x: hidden;
}
h4 {
font-size: 24px;
margin: $-m 0 0 0;
Expand Down
3 changes: 2 additions & 1 deletion resources/lang/en/components.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'image_upload_success' => 'Image uploaded successfully',
'image_update_success' => 'Image details successfully updated',
'image_delete_success' => 'Image successfully deleted',
'image_upload_remove' => 'Remove',

/**
* Code editor
Expand All @@ -29,4 +30,4 @@
'code_language' => 'Code Language',
'code_content' => 'Code Content',
'code_save' => 'Save Code',
];
];
3 changes: 2 additions & 1 deletion resources/lang/en/errors.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
'cannot_get_image_from_url' => 'Cannot get image from :url',
'cannot_create_thumbs' => 'The server cannot create thumbnails. Please check you have the GD PHP extension installed.',
'server_upload_limit' => 'The server does not allow uploads of this size. Please try a smaller file size.',
'uploaded' => 'The server does not allow uploads of this size. Please try a smaller file size.',
'image_upload_error' => 'An error occurred uploading the image',
'image_upload_type_error' => 'The image type being uploaded is invalid',

Expand Down Expand Up @@ -78,4 +79,4 @@
'error_occurred' => 'An Error Occurred',
'app_down' => ':appName is down right now',
'back_soon' => 'It will be back up soon.',
];
];
6 changes: 3 additions & 3 deletions resources/views/components/image-manager.blade.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div id="image-manager" image-type="{{ $imageType }}" uploaded-to="{{ $uploaded_to or 0 }}">
<div overlay v-cloak>
<div overlay v-cloak @click="hide()">
<div class="popup-body" @click.stop="">

<div class="popup-header primary-background">
<div class="popup-title">{{ trans('components.image_select') }}</div>
<button class="overlay-close neg corner-button button">x</button>
<button class="overlay-close neg corner-button button" @click="hide()">x</button>
</div>

<div class="flex-fill image-manager-body">
Expand Down Expand Up @@ -79,7 +79,7 @@

</div>

<dropzone placeholder="{{ trans('components.image_dropzone') }}" :upload-url="uploadUrl" :uploaded-to="uploadedTo" @success="uploadSuccess"></dropzone>
<dropzone ref="dropzone" placeholder="{{ trans('components.image_dropzone') }}" :upload-url="uploadUrl" :uploaded-to="uploadedTo" @success="uploadSuccess"></dropzone>

</div>
</div>
Expand Down