2018-04-02 08:29:19 +02:00
|
|
|
/**
|
2021-02-17 13:51:12 +01:00
|
|
|
* This file is part of Zwii.
|
2018-04-02 08:29:19 +02:00
|
|
|
* For full copyright and license information, please see the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* @author Rémi Jean <remi.jean@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
2021-02-17 13:49:58 +01:00
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
2023-01-09 10:23:32 +01:00
|
|
|
* @copyright Copyright (C) 2018-2023, Frédéric Tempez
|
2022-12-29 17:02:20 +01:00
|
|
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
2020-09-01 20:48:40 +02:00
|
|
|
* @link http://zwiicms.fr/
|
2018-04-02 08:29:19 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-04-07 19:08:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tri dynamique de la galerie
|
|
|
|
*/
|
2020-04-09 10:03:20 +02:00
|
|
|
|
2020-04-07 19:08:24 +02:00
|
|
|
$( document ).ready(function() {
|
2020-04-09 10:03:20 +02:00
|
|
|
|
2022-03-23 18:18:48 +01:00
|
|
|
$("#galleryTable").tableDnD({
|
2020-04-07 19:08:24 +02:00
|
|
|
onDrop: function(table, row) {
|
2020-04-08 17:46:29 +02:00
|
|
|
$("#galleryEditFormResponse").val($.tableDnD.serialize());
|
2020-04-28 19:29:24 +02:00
|
|
|
sortPictures();
|
|
|
|
},
|
2020-04-14 13:59:51 +02:00
|
|
|
serializeRegexp: ""
|
2020-04-07 19:08:24 +02:00
|
|
|
});
|
2020-04-12 18:49:42 +02:00
|
|
|
|
2022-04-04 16:36:59 +02:00
|
|
|
console.log($("#galleryEditSort").val());
|
|
|
|
|
|
|
|
if ($("#galleryEditSort").val() !== "SORT_HAND") {
|
2020-04-12 18:49:42 +02:00
|
|
|
$("#galleryTable tr").addClass("nodrag nodrop");
|
|
|
|
$(".zwiico-sort").hide();
|
|
|
|
$("#galleryTable").tableDnDUpdate();
|
|
|
|
} else {
|
|
|
|
$("#galleryTable tr").removeClass("nodrag nodrop");
|
|
|
|
$(".zwiico-sort").show();
|
|
|
|
$("#galleryTable").tableDnDUpdate();
|
|
|
|
}
|
|
|
|
|
2020-04-07 19:08:24 +02:00
|
|
|
});
|
2020-04-09 10:03:20 +02:00
|
|
|
|
|
|
|
$("#galleryEditSort").change(function() {
|
|
|
|
if ($("#galleryEditSort").val() !== "SORT_HAND") {
|
2020-04-11 20:03:59 +02:00
|
|
|
$("#galleryTable tr").addClass("nodrag nodrop");
|
2020-04-12 18:49:42 +02:00
|
|
|
$(".zwiico-sort").hide();
|
2020-04-09 10:03:20 +02:00
|
|
|
$("#galleryTable").tableDnDUpdate();
|
|
|
|
} else {
|
2020-04-11 20:03:59 +02:00
|
|
|
$("#galleryTable tr").removeClass("nodrag nodrop");
|
2020-04-12 18:49:42 +02:00
|
|
|
$(".zwiico-sort").show();
|
2020-04-09 10:03:20 +02:00
|
|
|
$("#galleryTable").tableDnDUpdate();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-04-28 19:29:24 +02:00
|
|
|
/**
|
|
|
|
* Tri dynamique des images
|
|
|
|
*/
|
2020-04-09 10:03:20 +02:00
|
|
|
|
2020-04-28 19:29:24 +02:00
|
|
|
function sortPictures() {
|
2022-03-24 10:09:41 +01:00
|
|
|
var url = "<?php echo helper::baseUrl(true,true) . $this->getUrl(0); ?>/sortPictures";
|
2020-04-28 19:29:24 +02:00
|
|
|
var d1 = $("#galleryEditFormResponse").val();
|
|
|
|
var d2 = $("#galleryEditFormGalleryName").val();
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: url ,
|
|
|
|
data: {
|
|
|
|
response : d1,
|
|
|
|
gallery: d2
|
2022-03-24 10:09:41 +01:00
|
|
|
},/*
|
2022-03-24 08:18:15 +01:00
|
|
|
error: function (xhr, ajaxOptions, thrownError) {
|
|
|
|
alert(xhr.status);
|
|
|
|
alert(thrownError);
|
|
|
|
}
|
2022-03-24 10:09:41 +01:00
|
|
|
*/
|
2020-04-28 19:29:24 +02:00
|
|
|
});
|
|
|
|
}
|
2022-04-05 13:46:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkbox unique
|
|
|
|
*/
|
|
|
|
|
|
|
|
$('.homePicture').click(function(){
|
|
|
|
$('.homePicture').prop('checked', false);
|
|
|
|
$(this).prop('checked', true);
|
|
|
|
});
|