ZwiiCMS/module/gallery/view/edit/edit.js.php

88 lines
2.0 KiB
PHP
Raw Normal View History

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
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
* @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
$("#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());
sortPictures();
},
serializeRegexp: ""
2020-04-07 19:08:24 +02:00
});
2022-04-04 16:36:59 +02:00
console.log($("#galleryEditSort").val());
if ($("#galleryEditSort").val() !== "SORT_HAND") {
$("#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") {
$("#galleryTable tr").addClass("nodrag nodrop");
$(".zwiico-sort").hide();
2020-04-09 10:03:20 +02:00
$("#galleryTable").tableDnDUpdate();
} else {
$("#galleryTable tr").removeClass("nodrag nodrop");
$(".zwiico-sort").show();
2020-04-09 10:03:20 +02:00
$("#galleryTable").tableDnDUpdate();
}
});
/**
* Tri dynamique des images
*/
2020-04-09 10:03:20 +02:00
function sortPictures() {
2022-03-24 10:09:41 +01:00
var url = "<?php echo helper::baseUrl(true,true) . $this->getUrl(0); ?>/sortPictures";
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
*/
});
}
2022-04-05 13:46:44 +02:00
/**
* Checkbox unique
*/
$('.homePicture').click(function(){
$('.homePicture').prop('checked', false);
$(this).prop('checked', true);
});