1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

Use large units for large values in Settings pane

Shorten "Storage used" values using large
units, i.e. shorten rendered values using
KB, MB, and GB for large figures.
This commit is contained in:
Raymond Hill 2020-04-22 16:30:23 -04:00
parent 64cb7fa843
commit 04c07f3e10
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
3 changed files with 41 additions and 7 deletions

View File

@ -361,7 +361,7 @@
},
"settingsStorageUsed":{
"message":"Storage used: {{value}} bytes",
"description":"English: Storage used: {{}} bytes"
"description":"Deprecated, will be removed"
},
"settingsLastRestorePrompt":{
"message":"Last restore:",
@ -1007,6 +1007,22 @@
"message":"Relax blocking mode",
"description":"Label for keyboard shortcut used to relax blocking mode (meant to replace 'Toggle blocking profile')"
},
"storageUsed":{
"message":"Storage used: {{value}} {{unit}}",
"description":" In Setting pane, renders as (example): Storage used: 13.2 MB"
},
"KB":{
"message":"KB",
"description":"short for 'kilobytes'"
},
"MB":{
"message":"MB",
"description":"short for 'megabytes'"
},
"GB":{
"message":"GB",
"description":"short for 'gigabytes'"
},
"dummy":{
"message":"This entry must be the last one",
"description":"so we dont need to deal with comma for last entry"

View File

@ -117,11 +117,29 @@ const exportToFile = async function() {
/******************************************************************************/
const onLocalDataReceived = function(details) {
uDom.nodeFromId('storageUsed').textContent =
vAPI.i18n('settingsStorageUsed').replace(
'{{value}}',
typeof details.storageUsed === 'number' ? details.storageUsed.toLocaleString() : '?'
);
let storageUsed;
if ( typeof details.storageUsed === 'number' ) {
const units = [
vAPI.i18n('genericBytes'),
vAPI.i18n('KB'),
vAPI.i18n('MB'),
vAPI.i18n('GB'),
];
const s = details.storageUsed.toLocaleString(undefined, {
maximumSignificantDigits: 3,
notation: 'engineering',
});
const pos = s.lastIndexOf('E');
const vu = parseInt(s.slice(pos + 1), 10) / 3;
const vm = parseFloat(s.slice(0, pos));
storageUsed =
vAPI.i18n('storageUsed')
.replace('{{value}}', vm.toLocaleString())
.replace('{{unit}}', units[vu]);
} else {
storageUsed = '?';
}
uDom.nodeFromId('storageUsed').textContent = storageUsed;
const timeOptions = {
weekday: 'long',

View File

@ -41,7 +41,7 @@
<hr>
<div id="localData" class="fieldset">
<div>
<div id="storageUsed" class="li"></div>
<div id="storageUsed"></div>
<div class="li" id="settingsLastBackupPrompt" style="display:none;"></div>
<div class="li" id="settingsLastRestorePrompt" style="display:none;"></div>
</div>