2018-04-04 23:46:36 +02:00
|
|
|
<?php
|
2018-04-09 22:56:12 +02:00
|
|
|
// Preload the first 10 files to not call via AJAX when the user open the first time the media manager
|
|
|
|
$listOfFiles = Filesystem::listFiles(PATH_UPLOADS_THUMBNAILS, '*', '*', $GLOBALS['BLUDIT_MEDIA_MANAGER_SORT_BY_DATE'], false);
|
|
|
|
$listOfFilesByPage = array_chunk($listOfFiles, $GLOBALS['BLUDIT_MEDIA_MANAGER_AMOUNT_OF_FILES']);
|
2018-04-04 23:46:36 +02:00
|
|
|
$preLoadFiles = array();
|
2018-05-08 00:15:40 +02:00
|
|
|
if (!empty($listOfFilesByPage[0])) {
|
|
|
|
foreach ($listOfFilesByPage[0] as $file) {
|
|
|
|
array_push($preLoadFiles, basename($file));
|
|
|
|
}
|
2018-04-04 23:46:36 +02:00
|
|
|
}
|
2018-04-09 22:56:12 +02:00
|
|
|
// Amount of pages for the paginator
|
2018-08-06 21:46:58 +02:00
|
|
|
$numberOfPages = count($listOfFilesByPage);
|
2018-04-04 23:46:36 +02:00
|
|
|
?>
|
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
<div id="jsbluditMediaModal" class="modal fade" tabindex="-1" role="dialog">
|
2018-04-04 23:46:36 +02:00
|
|
|
<div class="modal-dialog modal-lg">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col p-3">
|
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
<!--
|
|
|
|
UPLOAD INPUT
|
|
|
|
-->
|
2018-08-19 17:45:49 +02:00
|
|
|
<h3 class="mt-2 mb-3"><?php $L->p('Upload'); ?></h3>
|
2018-04-09 22:56:12 +02:00
|
|
|
|
|
|
|
<!-- Form and Input file -->
|
|
|
|
<form name="bluditFormUpload" id="jsbluditFormUpload" enctype="multipart/form-data">
|
2018-07-17 19:13:01 +02:00
|
|
|
<input type="hidden" name="tokenCSRF" value="<?php echo $security->getTokenCSRF() ?>">
|
2018-04-09 22:56:12 +02:00
|
|
|
<div class="custom-file">
|
|
|
|
<input type="file" class="custom-file-input" id="jsbluditInputFiles" name="bluditInputFiles[]" multiple>
|
2018-08-19 17:45:49 +02:00
|
|
|
<label class="custom-file-label" for="jsbluditInputFiles"><?php $L->p('Choose images to upload'); ?></label>
|
2018-04-09 22:56:12 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<!-- Progress bar -->
|
|
|
|
<div class="progress mt-2">
|
|
|
|
<div id="jsbluditProgressBar" class="progress-bar bg-info" role="progressbar" style="width:0%"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
MANAGER
|
|
|
|
-->
|
2018-08-19 17:45:49 +02:00
|
|
|
<h3 class="mt-4 mb-3"><?php $L->p('Manage'); ?></h3>
|
2018-04-09 22:56:12 +02:00
|
|
|
|
|
|
|
<!-- Table for list files -->
|
2018-05-08 23:25:18 +02:00
|
|
|
<table id="jsbluditMediaTable" class="table">
|
|
|
|
<tr>
|
2018-08-19 17:45:49 +02:00
|
|
|
<td><?php $L->p('There are no images'); ?></td>
|
2018-05-08 23:25:18 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
2018-04-09 22:56:12 +02:00
|
|
|
|
|
|
|
<!-- Paginator -->
|
2018-04-04 23:46:36 +02:00
|
|
|
<nav>
|
|
|
|
<ul class="pagination justify-content-center">
|
2018-08-06 21:46:58 +02:00
|
|
|
<?php for ($i=1; $i<=$numberOfPages; $i++): ?>
|
2018-04-09 22:56:12 +02:00
|
|
|
<li class="page-item"><button type="button" class="btn btn-link page-link" onClick="getFiles(<?php echo $i ?>)"><?php echo $i ?></button></li>
|
|
|
|
<?php endfor; ?>
|
2018-04-04 23:46:36 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
echo 'var preLoadFiles = '.json_encode($preLoadFiles).';';
|
|
|
|
?>
|
|
|
|
|
2018-04-13 23:32:29 +02:00
|
|
|
function openMediaManager() {
|
2018-05-08 23:25:18 +02:00
|
|
|
$('#jsbluditMediaModal').modal('show');
|
2018-04-13 23:32:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function closeMediaManager() {
|
2018-05-08 23:25:18 +02:00
|
|
|
$('#jsbluditMediaModal').modal('hide');
|
2018-04-13 23:32:29 +02:00
|
|
|
}
|
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
// Remove all files from the table
|
|
|
|
function cleanFiles() {
|
|
|
|
$('#jsbluditMediaTable').empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show the files in the table
|
|
|
|
function displayFiles(files) {
|
|
|
|
// Clean table
|
|
|
|
cleanFiles();
|
|
|
|
// Regenerate the table
|
2018-04-04 23:46:36 +02:00
|
|
|
$.each(files, function(key, filename) {
|
2018-04-13 23:32:29 +02:00
|
|
|
tableRow = '<tr id="js'+filename+'">'+
|
2018-07-10 18:37:46 +02:00
|
|
|
'<td style="width:80px"><img class="img-thumbnail" alt="200x200" src="<?php echo HTML_PATH_UPLOADS_THUMBNAILS ?>'+filename+'" style="width: 50px; height: 50px;"><\/td>'+
|
2018-04-13 23:32:29 +02:00
|
|
|
'<td class="information">'+
|
2018-07-10 18:37:46 +02:00
|
|
|
'<div class="pb-2">'+filename+'<\/div>'+
|
2018-04-04 23:46:36 +02:00
|
|
|
'<div>'+
|
2018-08-19 17:45:49 +02:00
|
|
|
'<button type="button" class="btn btn-primary btn-sm mr-2" onClick="editorInsertMedia(\''+filename+'\'); closeMediaManager();"><?php $L->p('Insert') ?><\/button>'+
|
|
|
|
'<button type="button" class="btn btn-primary btn-sm" onClick="setCoverImage(\''+filename+'\'); closeMediaManager();"><?php $L->p('Set as cover image') ?><\/button>'+
|
|
|
|
'<button type="button" class="btn btn-secondary btn-sm float-right" onClick="deleteMedia(\''+filename+'\')"><?php $L->p('Delete') ?><\/button>'+
|
2018-07-10 18:37:46 +02:00
|
|
|
'<\/div>'+
|
|
|
|
'<\/td>'+
|
|
|
|
'<\/tr>';
|
2018-04-09 22:56:12 +02:00
|
|
|
$('#jsbluditMediaTable').append(tableRow);
|
2018-04-04 23:46:36 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
// Get the list of files via AJAX, filter by the page number
|
|
|
|
function getFiles(pageNumber) {
|
2018-04-13 23:32:29 +02:00
|
|
|
$.post("<?php echo HTML_PATH_ADMIN_ROOT ?>ajax/list-files",
|
|
|
|
{ tokenCSRF: tokenCSRF,
|
|
|
|
pageNumber: pageNumber,
|
2018-08-10 15:41:23 +02:00
|
|
|
path: "thumbnails" // the path are defined in the list-files
|
2018-04-13 23:32:29 +02:00
|
|
|
},
|
2018-04-09 22:56:12 +02:00
|
|
|
function(data) {
|
|
|
|
displayFiles(data.files);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-13 23:32:29 +02:00
|
|
|
// Delete the file and the thumbnail if exist
|
|
|
|
function deleteMedia(filename) {
|
|
|
|
$.post("<?php echo HTML_PATH_ADMIN_ROOT ?>ajax/delete-file",
|
|
|
|
{ tokenCSRF: tokenCSRF,
|
|
|
|
filename: filename
|
|
|
|
},
|
|
|
|
function(data) {
|
|
|
|
getFiles(1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:25:18 +02:00
|
|
|
function setCoverImage(filename) {
|
|
|
|
$("#jscoverImage").val(filename);
|
|
|
|
$("#jscoverImagePreview").attr("src", HTML_PATH_UPLOADS_THUMBNAILS+filename);
|
|
|
|
}
|
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
// Display the files preloaded for the first time
|
|
|
|
displayFiles(preLoadFiles);
|
|
|
|
|
|
|
|
// Event to wait the selected files
|
|
|
|
$("#jsbluditInputFiles").on("change", function() {
|
2018-04-04 23:46:36 +02:00
|
|
|
|
2018-04-09 22:56:12 +02:00
|
|
|
// Check file size ?
|
|
|
|
// Check file type/extension ?
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: "<?php echo HTML_PATH_ADMIN_ROOT ?>ajax/upload-files",
|
|
|
|
type: "POST",
|
|
|
|
data: new FormData($("#jsbluditFormUpload")[0]),
|
|
|
|
cache: false,
|
|
|
|
contentType: false,
|
|
|
|
processData: false,
|
|
|
|
xhr: function() {
|
|
|
|
var xhr = $.ajaxSettings.xhr();
|
|
|
|
if (xhr.upload) {
|
|
|
|
xhr.upload.addEventListener("progress", function(e) {
|
|
|
|
if (e.lengthComputable) {
|
2018-04-13 23:32:29 +02:00
|
|
|
var percentComplete = (e.loaded / e.total)*100;
|
2018-04-09 22:56:12 +02:00
|
|
|
$("#jsbluditProgressBar").width(percentComplete+"%");
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
}
|
|
|
|
return xhr;
|
|
|
|
}
|
2018-04-13 23:32:29 +02:00
|
|
|
}).done(function() {
|
2018-05-08 23:25:18 +02:00
|
|
|
// Get the files of the first page, this include the files uploaded
|
2018-04-13 23:32:29 +02:00
|
|
|
getFiles(1);
|
2018-04-09 22:56:12 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-04-04 23:46:36 +02:00
|
|
|
|
2018-05-08 00:15:40 +02:00
|
|
|
</script>
|