aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/files.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r--apps/files/js/files.js50
1 files changed, 36 insertions, 14 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 4d285e426d5..977e642948c 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -72,6 +72,7 @@
$('#free_space').val(response.data.freeSpace);
$('#upload.button').attr('data-original-title', response.data.maxHumanFilesize);
$('#usedSpacePercent').val(response.data.usedSpacePercent);
+ $('#usedSpacePercent').data('mount-type', response.data.mountType);
$('#owner').val(response.data.owner);
$('#ownerDisplayName').val(response.data.ownerDisplayName);
Files.displayStorageWarnings();
@@ -153,21 +154,30 @@
var usedSpacePercent = $('#usedSpacePercent').val(),
owner = $('#owner').val(),
- ownerDisplayName = $('#ownerDisplayName').val();
+ ownerDisplayName = $('#ownerDisplayName').val(),
+ mountType = $('#usedSpacePercent').data('mount-type');
if (usedSpacePercent > 98) {
if (owner !== OC.getCurrentUser().uid) {
OC.Notification.show(t('files', 'Storage of {owner} is full, files can not be updated or synced anymore!',
{owner: ownerDisplayName}), {type: 'error'}
);
- return;
+ } else if (mountType === 'group') {
+ OC.Notification.show(t('files',
+ 'This group folder is full, files can not be updated or synced anymore!'),
+ {type: 'error'}
+ );
+ } else if (mountType === 'external') {
+ OC.Notification.show(t('files',
+ 'This external storage is full, files can not be updated or synced anymore!'),
+ {type : 'error'}
+ );
+ } else {
+ OC.Notification.show(t('files',
+ 'Your storage is full, files can not be updated or synced anymore!'),
+ {type: 'error'}
+ );
}
- OC.Notification.show(t('files',
- 'Your storage is full, files can not be updated or synced anymore!'),
- {type : 'error'}
- );
- return;
- }
- if (usedSpacePercent > 90) {
+ } else if (usedSpacePercent > 90) {
if (owner !== OC.getCurrentUser().uid) {
OC.Notification.show(t('files', 'Storage of {owner} is almost full ({usedSpacePercent}%)',
{
@@ -178,12 +188,24 @@
type: 'error'
}
);
- return;
+ } else if (mountType === 'group') {
+ OC.Notification.show(t('files',
+ 'This group folder is almost full ({usedSpacePercent}%)',
+ {usedSpacePercent: usedSpacePercent}),
+ {type : 'error'}
+ );
+ } else if (mountType === 'external') {
+ OC.Notification.show(t('files',
+ 'This external storage is almost full ({usedSpacePercent}%)',
+ {usedSpacePercent: usedSpacePercent}),
+ {type : 'error'}
+ );
+ } else {
+ OC.Notification.show(t('files', 'Your storage is almost full ({usedSpacePercent}%)',
+ {usedSpacePercent: usedSpacePercent}),
+ {type : 'error'}
+ );
}
- OC.Notification.show(t('files', 'Your storage is almost full ({usedSpacePercent}%)',
- {usedSpacePercent: usedSpacePercent}),
- {type : 'error'}
- );
}
},