web-base/react/shared/util.js

101 lines
2.8 KiB
JavaScript
Raw Normal View History

2023-01-14 09:51:46 +01:00
import {format, parse} from "date-fns";
import {API_DATE_FORMAT, API_DATETIME_FORMAT} from "./constants";
function createDownload(name, data) {
const url = window.URL.createObjectURL(new Blob([data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', name);
link.setAttribute("target", "_blank");
document.body.appendChild(link);
link.click();
link.remove();
}
2022-11-29 14:17:11 +01:00
function humanReadableSize(bytes, dp = 1) {
const thresh = 1024;
if (Math.abs(bytes) < thresh) {
return bytes + ' B';
}
const units = ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
let u = -1;
const r = 10**dp;
do {
bytes /= thresh;
++u;
} while (Math.round(Math.abs(bytes) * r) / r >= thresh && u < units.length - 1);
return bytes.toFixed(dp) + ' ' + units[u];
}
const removeParameter = (key) => {
const url = new URL(window.location);
url.searchParams.delete(key);
window.history.replaceState(null, '', url);
}
const getParameter = (key) => {
const url = new URL(window.location);
if (url.searchParams.has(key)) {
return decodeURIComponent(url.searchParams.get(key));
} else {
return null;
}
}
const encodeText = (str) => {
return Uint8Array.from(str, c => c.charCodeAt(0));
}
const decodeText = (buffer) => {
return String.fromCharCode(...new Uint8Array(buffer));
}
const getBaseUrl = () => {
return window.location.protocol + "//" + window.location.host;
}
2023-01-14 09:51:46 +01:00
const formatDate = (L, apiDate) => {
if (!(apiDate instanceof Date)) {
if (!isNaN(apiDate)) {
2023-01-15 00:32:17 +01:00
apiDate = new Date(apiDate * 1000);
2023-01-14 09:51:46 +01:00
} else {
apiDate = parse(apiDate, API_DATE_FORMAT, new Date());
}
}
2023-01-15 00:32:17 +01:00
return format(apiDate, L("general.datefns_date_format", "YYY/MM/dd"));
2023-01-14 09:51:46 +01:00
}
2023-01-16 21:47:23 +01:00
const formatDateTime = (L, apiDate, precise=false) => {
2023-01-14 09:51:46 +01:00
if (!(apiDate instanceof Date)) {
if (!isNaN(apiDate)) {
2023-01-15 00:32:17 +01:00
apiDate = new Date(apiDate * 1000);
2023-01-14 09:51:46 +01:00
} else {
apiDate = parse(apiDate, API_DATETIME_FORMAT, new Date());
}
}
2023-01-16 21:47:23 +01:00
let dateFormat = precise ?
L("general.datefns_date_time_format_precise", "YYY/MM/dd HH:mm:ss") :
L("general.datefns_date_time_format", "YYY/MM/dd HH:mm");
return format(apiDate, dateFormat);
2023-01-14 09:51:46 +01:00
}
const upperFirstChars = (str) => {
return str.split(" ")
.map(block => block.charAt(0).toUpperCase() + block.substring(1))
.join(" ");
}
2023-01-15 00:32:17 +01:00
const isInt = (value) => {
return !isNaN(value) &&
parseInt(Number(value)) === value &&
!isNaN(parseInt(value, 10));
}
2023-01-14 09:51:46 +01:00
export { humanReadableSize, removeParameter, getParameter, encodeText, decodeText, getBaseUrl,
formatDate, formatDateTime, upperFirstChars, isInt, createDownload };