mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
fixes #1253 progressbar new style
added the style of progress bar like when you upload a photos, from photos add direct tpl also fixed a php error when calling count on empty var
This commit is contained in:
@@ -605,7 +605,7 @@ foreach ($filter_sets as $set)
|
||||
{
|
||||
$current_set = array_intersect($current_set, $set);
|
||||
}
|
||||
$page['cat_elements_id'] = $current_set;
|
||||
$page['cat_elements_id'] = empty($current_set) ? [] : $current_set;
|
||||
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
@@ -169,13 +169,19 @@ var derivatives = {
|
||||
}
|
||||
};
|
||||
|
||||
function progress_start() {
|
||||
jQuery('#uploadingActions').show();
|
||||
jQuery('#uploadingActions .progress-bar').width("0%");
|
||||
}
|
||||
|
||||
function progress_end() {
|
||||
jQuery('#uploadingActions').hide();
|
||||
}
|
||||
|
||||
function progress(success) {
|
||||
jQuery('#progressBar').progressBar(derivatives.done, {
|
||||
max: derivatives.total,
|
||||
textFormat: 'fraction',
|
||||
boxImage: 'themes/default/images/progressbar.gif',
|
||||
barImage: 'themes/default/images/progressbg_orange.gif'
|
||||
});
|
||||
|
||||
percent = parseInt(derivatives.done / derivatives.total * 100);
|
||||
jQuery('#uploadingActions .progressbar').width(percent.toString()+'%');
|
||||
if (success !== undefined) {
|
||||
var type = success ? 'regenerateSuccess': 'regenerateError',
|
||||
s = jQuery('[name="'+type+'"]').val();
|
||||
@@ -183,6 +189,7 @@ function progress(success) {
|
||||
}
|
||||
|
||||
if (derivatives.finished()) {
|
||||
progress_end();
|
||||
jQuery('#applyAction').click();
|
||||
}
|
||||
}
|
||||
@@ -193,8 +200,12 @@ function getDerivativeUrls() {
|
||||
jQuery("#action_generate_derivatives input").each( function(i, t) {
|
||||
if ($(t).is(":checked"))
|
||||
params.types.push( t.value );
|
||||
} );
|
||||
|
||||
} );
|
||||
jQuery('#applyActionBlock').hide();
|
||||
jQuery('.permitActionListButton').hide();
|
||||
jQuery('#confirmDel').hide();
|
||||
jQuery('#regenerationMsg').show();
|
||||
progress_start();
|
||||
jQuery.ajax( {
|
||||
type: "POST",
|
||||
url: 'ws.php?format=json&method=pwg.getMissingDerivatives',
|
||||
@@ -211,8 +222,14 @@ function getDerivativeUrls() {
|
||||
type: 'GET',
|
||||
url: data.result.urls[i] + "&ajaxload=true",
|
||||
dataType: 'json',
|
||||
success: ( function(data) { derivatives.done++; progress(true) }),
|
||||
error: ( function(data) { derivatives.done++; progress(false) })
|
||||
success: ( function(data) {
|
||||
derivatives.done++;
|
||||
progress(true)
|
||||
}),
|
||||
error: ( function(data) {
|
||||
derivatives.done++;
|
||||
progress(false)
|
||||
})
|
||||
});
|
||||
}
|
||||
if (derivatives.elements.length)
|
||||
@@ -266,14 +283,10 @@ jQuery('#applyAction').click(function(e) {
|
||||
var image_ids = Array();
|
||||
|
||||
jQuery('#applyActionBlock').hide();
|
||||
jQuery('select[name="selectAction"]').hide();
|
||||
jQuery('.permitActionListButton').hide();
|
||||
jQuery('#confirmDel').hide();
|
||||
jQuery('#regenerationMsg').show();
|
||||
jQuery('#progressBar').progressBar(0, {
|
||||
max: progressBar_max,
|
||||
textFormat: 'fraction',
|
||||
boxImage: 'themes/default/images/progressbar.gif',
|
||||
barImage: 'themes/default/images/progressbg_orange.gif'
|
||||
});
|
||||
progress_bar_start();
|
||||
for (i=0;i<elements.length;i++) {
|
||||
image_ids.push(elements[i]);
|
||||
if (i % syncBlockSize != syncBlockSize - 1 && i != elements.length - 1) {
|
||||
@@ -296,12 +309,12 @@ jQuery('#applyAction').click(function(e) {
|
||||
if (isOk && data.result.nb_synchronized != thisBatchSize)
|
||||
/*TODO: user feedback only data.nb_synchronized images out of thisBatchSize were sync*/;
|
||||
/*TODO: user feedback if isError*/
|
||||
progressionBar(todo, progressBar_max, isOk);
|
||||
progress_bar(todo, progressBar_max, false);
|
||||
},
|
||||
error: function(data) {
|
||||
todo += thisBatchSize;
|
||||
/*TODO: user feedback*/
|
||||
progressionBar(todo, progressBar_max, false);
|
||||
progress_bar(todo, progressBar_max, false);
|
||||
}
|
||||
});
|
||||
} )(image_ids);
|
||||
@@ -354,13 +367,7 @@ jQuery('#applyAction').click(function(e) {
|
||||
jQuery('.permitActionListButton').hide();
|
||||
jQuery('#confirmDel').hide();
|
||||
jQuery('#regenerationMsg').show();
|
||||
jQuery('#progressBar').progressBar(0, {
|
||||
max: progressBar_max,
|
||||
textFormat: 'fraction',
|
||||
boxImage: 'themes/default/images/progressbar.gif',
|
||||
barImage: 'themes/default/images/progressbg_orange.gif'
|
||||
});
|
||||
|
||||
progress_bar_start();
|
||||
for (i=0;i<elements.length;i++) {
|
||||
image_ids.push(elements[i]);
|
||||
if (i % deleteBlockSize != deleteBlockSize - 1 && i != elements.length - 1) {
|
||||
@@ -381,15 +388,15 @@ jQuery('#applyAction').click(function(e) {
|
||||
success: function(data) {
|
||||
todo += thisBatchSize;
|
||||
var isOk = data.stat && "ok" == data.stat;
|
||||
if (isOk && data.result != thisBatchSize)
|
||||
if (isOk && data.result != thisBatchSize);
|
||||
/*TODO: user feedback only data.result images out of thisBatchSize were deleted*/;
|
||||
/*TODO: user feedback if isError*/
|
||||
progressionBar(todo, progressBar_max, isOk);
|
||||
progress_bar(todo, progressBar_max, false);
|
||||
},
|
||||
error: function(data) {
|
||||
todo += thisBatchSize;
|
||||
/*TODO: user feedback*/
|
||||
progressionBar(todo, progressBar_max, false);
|
||||
progress_bar(todo, progressBar_max, false);
|
||||
}
|
||||
});
|
||||
} )(image_ids);
|
||||
@@ -403,17 +410,20 @@ jQuery('#applyAction').click(function(e) {
|
||||
return false;
|
||||
});
|
||||
|
||||
function progressionBar(val, max, success) {
|
||||
jQuery('#progressBar').progressBar(val, {
|
||||
max: max,
|
||||
textFormat: 'fraction',
|
||||
boxImage: 'themes/default/images/progressbar.gif',
|
||||
barImage: 'themes/default/images/progressbg_orange.gif'
|
||||
});
|
||||
function progress_bar_start() {
|
||||
jQuery('#uploadingActions').show();
|
||||
jQuery('#uploadingActions .progress-bar').width("0%");
|
||||
}
|
||||
|
||||
if (val == max) {
|
||||
function progress_bar_end() {
|
||||
jQuery('#uploadingActions').hide();
|
||||
}
|
||||
|
||||
function progress_bar(val, max, success) {
|
||||
percent = parseInt(val / max * 100);
|
||||
jQuery('#uploadingActions .progressbar').width(percent.toString()+'%');
|
||||
if (val == max)
|
||||
jQuery('#applyAction').click();
|
||||
}
|
||||
}
|
||||
|
||||
jQuery("#confirmDel input[name=confirm_deletion]").change(function() {
|
||||
|
||||
@@ -282,7 +282,8 @@ $(document).ready(function() {
|
||||
jQuery('.permitActionListButton div').addClass('hidden');
|
||||
jQuery('#regenerationMsg').show();
|
||||
|
||||
progress();
|
||||
progress_start();
|
||||
progress();
|
||||
getDerivativeUrls();
|
||||
return false;
|
||||
});
|
||||
@@ -770,10 +771,8 @@ UL.thumbnails SPAN.wrap2 {ldelim}
|
||||
{/foreach}
|
||||
</div>
|
||||
|
||||
<!-- progress bar -->
|
||||
<div id="regenerationMsg" class="bulkAction" style="display:none">
|
||||
<p id="regenerationText" style="margin-bottom:10px;">{'Generate multiple size images'|@translate}</p>
|
||||
<span class="progressBar" id="progressBar"></span>
|
||||
<input type="hidden" name="regenerateSuccess" value="0">
|
||||
<input type="hidden" name="regenerateError" value="0">
|
||||
</div>
|
||||
@@ -788,6 +787,13 @@ UL.thumbnails SPAN.wrap2 {ldelim}
|
||||
{/if}
|
||||
</div>
|
||||
</div> <!-- #permitAction -->
|
||||
|
||||
<!-- progress bar -->
|
||||
<div id="uploadingActions" style="display:none">
|
||||
<div class="big-progressbar" style="max-width:100%;margin-bottom: 10px;">
|
||||
<div class="progressbar" style="width:0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
|
||||
@@ -336,11 +336,10 @@ jQuery(document).ready(function(){
|
||||
</fieldset>
|
||||
|
||||
<div id="uploadingActions" style="display:none">
|
||||
<button id="cancelUpload" class="buttonLike icon-cancel-circled">{'Cancel'|translate}</button>
|
||||
|
||||
<div class="big-progressbar">
|
||||
<div class="big-progressbar" style="max-width:98%;margin-bottom: 10px;">
|
||||
<div class="progressbar" style="width:0%"></div>
|
||||
</div>
|
||||
<button id="cancelUpload" class="buttonLike icon-cancel-circled">{'Cancel'|translate}</button>
|
||||
</div>
|
||||
|
||||
<button id="startUpload" class="buttonGradient icon-upload" disabled>{'Start Upload'|translate}</button>
|
||||
|
||||
Reference in New Issue
Block a user