Signed-off-by: Tomasz Grobelny <tomasz@grobelny.net>pull/12652/head
parent
296e69fe04
commit
e99340dc4d
@ -0,0 +1,73 @@ |
||||
/* |
||||
* Copyright (c) 2018 |
||||
* |
||||
* This file is licensed under the Affero General Public License version 3 |
||||
* or later. |
||||
* |
||||
* See the COPYING-README file. |
||||
* |
||||
*/ |
||||
|
||||
(function() { |
||||
var OperationProgressBar = OC.Backbone.View.extend({ |
||||
tagName: 'div', |
||||
id: 'uploadprogresswrapper', |
||||
events: { |
||||
'click button.stop': '_onClickCancel' |
||||
}, |
||||
|
||||
render: function() { |
||||
this.$el.html(OCA.Files.Templates['operationprogressbar']({ |
||||
textDesktop: t('Uploading …'), |
||||
textMobile: t('…'), |
||||
textCancelButton: t('Cancel operation') |
||||
})); |
||||
}, |
||||
|
||||
hideProgressBar: function() { |
||||
var self = this; |
||||
$('#uploadprogresswrapper .stop').fadeOut(); |
||||
$('#uploadprogressbar').fadeOut(function() { |
||||
self.$el.trigger(new $.Event('resized')); |
||||
}); |
||||
}, |
||||
|
||||
hideCancelButton: function() { |
||||
$('#uploadprogresswrapper .stop').fadeOut(function() { |
||||
this.$el.trigger(new $.Event('resized')); |
||||
}); |
||||
}, |
||||
|
||||
showProgressBar: function() { |
||||
$('#uploadprogresswrapper .stop').show(); |
||||
$('#uploadprogresswrapper .label').show(); |
||||
$('#uploadprogressbar').fadeIn(); |
||||
this.$el.trigger(new $.Event('resized')); |
||||
}, |
||||
|
||||
setProgressBarValue: function(value) { |
||||
$('#uploadprogressbar').progressbar({value: value}); |
||||
}, |
||||
|
||||
setProgressBarText: function(textDesktop, textMobile, title) { |
||||
$('#uploadprogressbar .ui-progressbar-value'). |
||||
html('<em class="label inner"><span class="desktop">' |
||||
+ textDesktop |
||||
+ '</span><span class="mobile">' |
||||
+ textMobile |
||||
+ '</span></em>'); |
||||
$('#uploadprogressbar').tooltip({placement: 'bottom'}); |
||||
if(title) { |
||||
$('#uploadprogressbar').attr('original-title', title); |
||||
} |
||||
$('#uploadprogresswrapper .stop').show(); |
||||
}, |
||||
|
||||
_onClickCancel: function (event) { |
||||
this.trigger('cancel'); |
||||
return false; |
||||
} |
||||
}); |
||||
|
||||
OCA.Files.OperationProgressBar = OperationProgressBar; |
||||
})(OC, OCA); |
||||
@ -0,0 +1,6 @@ |
||||
<div id="uploadprogressbar"> |
||||
<em class="label outer" style="display:none"><span class="desktop">{{textDesktop}}</span><span class="mobile">{{textMobile}}</span></em> |
||||
</div> |
||||
<button class="stop icon-close" style="display:none"> |
||||
<span class="hidden-visually">{{textCancelButton}}</span> |
||||
</button> |
||||
Loading…
Reference in new issue