mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 12:58:35 +03:00
68 lines
1.9 KiB
JavaScript
68 lines
1.9 KiB
JavaScript
/**
|
|
* Get URI params to start with predefined set of
|
|
* https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript
|
|
* @param {string} name: name of paramater to search
|
|
* @param {string} url: url passed as variable, defaults to window.location.href
|
|
*/
|
|
export function getParameterByName(name, url) {
|
|
if (!url) url = window.location.href;
|
|
name = name.replace(/[\[\]]/g, `\\$&`);
|
|
|
|
const regex = new RegExp(`[?&]${name}(=([^&#]*)|&|#|$)`);
|
|
const results = regex.exec(url);
|
|
|
|
if (!results) return null;
|
|
if (!results[2]) return '';
|
|
|
|
return decodeURIComponent(results[2].replace(/\+/g, ' '));
|
|
}
|
|
|
|
/**
|
|
* Compare two arrays of scalars
|
|
* @param {array} arr1: array of numbers
|
|
* @param {array} arr2: array of numbers
|
|
*/
|
|
export function areEqual(arr1, arr2) {
|
|
return ((arr1.length === arr2.length) && arr1.every((element, index) => {
|
|
return element === arr2[index];
|
|
}));
|
|
}
|
|
|
|
/**
|
|
* Return whether the variable is neither null nor undefined
|
|
* @param {object} variable
|
|
*/
|
|
export function isNotNullNorUndefined(variable) {
|
|
return (typeof variable !== 'undefined' && variable !== null);
|
|
}
|
|
|
|
/*
|
|
* Capitalizes _only_ the first letter of a string
|
|
* Taken from: https://stackoverflow.com/questions/1026069/how-do-i-make-the-first-letter-of-a-string-uppercase-in-javascript
|
|
*/
|
|
export function capitalizeFirstLetter(string) {
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
}
|
|
|
|
/**
|
|
* Return a Date object given a datetime string of the format: "2016-09-10T07:00:00"
|
|
* @param {string} datetime
|
|
*/
|
|
export function parseDate(datetime) {
|
|
return new Date(datetime.slice(0, 4),
|
|
datetime.slice(5, 7) - 1,
|
|
datetime.slice(8, 10),
|
|
datetime.slice(11, 13),
|
|
datetime.slice(14, 16),
|
|
datetime.slice(17, 19)
|
|
);
|
|
}
|
|
|
|
export function formatterWithYear(datetime) {
|
|
return d3.timeFormat("%d %b %Y, %H:%M")(datetime);
|
|
}
|
|
|
|
export function formatter(datetime) {
|
|
return d3.timeFormat("%d %b, %H:%M")(datetime);
|
|
}
|