mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-04-04 20:11:25 +00:00
* Add required [1] "display: block;" style property to img element * Fix image overflow in modal. As cropper size inherits from img's parent element [2] (including padding according to my research), we need to wrap modal body into another div that has the padding we want. * Remove ability [3] to click away to dismiss the modal as it often interfered with user interaction when cropping. [1] https://github.com/fengyuanchen/cropperjs/tree/v1?tab=readme-ov-file#example [2] https://github.com/fengyuanchen/cropperjs/tree/v1?tab=readme-ov-file#notes [3] https://getbootstrap.com/docs/4.0/components/modal/#options Signed-off-by: Alexis Mercier des Rochettes <apernouille@gmail.com>
119 lines
4.0 KiB
HTML
119 lines
4.0 KiB
HTML
{% extends "member/base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block profile_content %}
|
|
<div class="card bg-light">
|
|
<h3 class="card-header text-center">
|
|
{{ title }}
|
|
</h3>
|
|
<div class="card-body">
|
|
<div class="text-center">
|
|
<form method="post" enctype="multipart/form-data" id="formUpload">
|
|
{% csrf_token %}
|
|
{{ form |crispy }}
|
|
{% if user.note.display_image != "pic/default.png" %}
|
|
<input type="submit" class="btn btn-primary" value="{% trans "Remove" %}">
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
<!-- MODAL TO CROP THE IMAGE -->
|
|
<div class="modal fade" id="modalCrop" data-backdrop="static">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-body-wrapper" style="width: 500px; height: 500px; padding: 16px;">
|
|
<div class="modal-body" style="width: 100%; height: 100%; padding: 0">
|
|
<img src="" id="modal-image" style="display: block; max-width: 100%;">
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<div class="btn-group pull-left" role="group">
|
|
<button type="button" class="btn btn-default" id="js-zoom-in">
|
|
<span class="glyphicon glyphicon-zoom-in"></span>
|
|
</button>
|
|
<button type="button" class="btn btn-default js-zoom-out">
|
|
<span class="glyphicon glyphicon-zoom-out"></span>
|
|
</button>
|
|
</div>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{% trans "Nevermind" %}</button>
|
|
<button type="button" class="btn btn-primary js-crop-and-upload">{% trans "Crop and upload" %}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block extracss %}
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.min.css" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block extrajavascript%}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery-cropper@1.0.1/dist/jquery-cropper.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
|
|
/* SCRIPT TO OPEN THE MODAL WITH THE PREVIEW */
|
|
$("#id_image").change(function (e) {
|
|
if (this.files && this.files[0]) {
|
|
// Check the image size
|
|
if (this.files[0].size > 2*1024*1024) {
|
|
alert("Ce fichier est trop volumineux.")
|
|
} else {
|
|
// Read the selected image file
|
|
var reader = new FileReader();
|
|
reader.onload = function (e) {
|
|
$("#modal-image").attr("src", e.target.result);
|
|
$("#modalCrop").modal("show");
|
|
}
|
|
reader.readAsDataURL(this.files[0]);
|
|
}
|
|
}
|
|
});
|
|
|
|
/* SCRIPTS TO HANDLE THE CROPPER BOX */
|
|
var $image = $("#modal-image");
|
|
var cropBoxData;
|
|
var canvasData;
|
|
$("#modalCrop").on("shown.bs.modal", function () {
|
|
$image.cropper({
|
|
viewMode: 1,
|
|
aspectRatio: 1 / 1,
|
|
minCropBoxWidth: 200,
|
|
minCropBoxHeight: 200,
|
|
ready: function () {
|
|
$image.cropper("setCanvasData", canvasData);
|
|
$image.cropper("setCropBoxData", cropBoxData);
|
|
}
|
|
});
|
|
}).on("hidden.bs.modal", function () {
|
|
cropBoxData = $image.cropper("getCropBoxData");
|
|
canvasData = $image.cropper("getCanvasData");
|
|
$image.cropper("destroy");
|
|
});
|
|
|
|
$(".js-zoom-in").click(function () {
|
|
$image.cropper("zoom", 0.1);
|
|
});
|
|
|
|
$(".js-zoom-out").click(function () {
|
|
$image.cropper("zoom", -0.1);
|
|
});
|
|
|
|
/* SCRIPT TO COLLECT THE DATA AND POST TO THE SERVER */
|
|
$(".js-crop-and-upload").click(function () {
|
|
var cropData = $image.cropper("getData");
|
|
$("#id_x").val(cropData["x"]);
|
|
$("#id_y").val(cropData["y"]);
|
|
$("#id_height").val(cropData["height"]);
|
|
$("#id_width").val(cropData["width"]);
|
|
$("#formUpload").submit();
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|