2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* This file is part of Zwii.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @license GNU General Public License, version 3
|
|
|
|
* @link http://zwiicms.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Liste des dossiers
|
|
|
|
*/
|
|
|
|
var oldResult = [];
|
|
|
|
var directoryDOM = $("#galleryEditDirectory");
|
|
|
|
var directoryOldDOM = $("#galleryEditDirectoryOld");
|
|
|
|
function dirs() {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: "<?php echo helper::baseUrl() . $this->getUrl(0); ?>/dirs",
|
|
|
|
success: function(result) {
|
|
|
|
if($(result).not(oldResult).length !== 0 || $(oldResult).not(result).length !== 0) {
|
|
|
|
directoryDOM.empty();
|
|
|
|
for(var i = 0; i < result.length; i++) {
|
|
|
|
directoryDOM.append(function(i) {
|
|
|
|
var option = $("<option>").val(result[i]).text(result[i]);
|
|
|
|
if(directoryOldDOM.val() === result[i]) {
|
|
|
|
option.prop("selected", true);
|
|
|
|
}
|
|
|
|
return option;
|
|
|
|
}(i))
|
|
|
|
}
|
|
|
|
oldResult = result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
dirs();
|
|
|
|
// Actualise la liste des dossiers toutes les trois secondes
|
|
|
|
setInterval(function() {
|
|
|
|
dirs();
|
|
|
|
}, 3000);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stock le dossier choisi pour le re-sélectionner en cas d'actualisation ajax de la liste des dossiers
|
|
|
|
*/
|
|
|
|
directoryDOM.on("change", function() {
|
|
|
|
directoryOldDOM.val($(this).val());
|
2020-02-22 22:18:49 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
$('.homePicture').click(function(){
|
|
|
|
$('.homePicture').prop('checked', false);
|
|
|
|
$(this).prop('checked', true);
|
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
|
|
|
|
2020-04-07 19:08:24 +02:00
|
|
|
$("#galleryTable").tableDnD({
|
|
|
|
onDrop: function(table, row) {
|
2020-04-08 17:46:29 +02:00
|
|
|
$("#galleryEditFormResponse").val($.tableDnD.serialize());
|
2020-04-07 19:08:24 +02:00
|
|
|
},
|
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
|
|
|
|
|
|
|
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") {
|
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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|