mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 21:19:12 +05:30
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
let lastId = 0;
|
|
export function uniqueId(prefix = 'id') {
|
|
return `${prefix}${++lastId}`;
|
|
}
|
|
|
|
/**
|
|
* @param {object} obj
|
|
* @param {array} keys
|
|
*
|
|
* @return {object}
|
|
*/
|
|
export function omit(obj, keys) {
|
|
const newObj = {...obj};
|
|
|
|
keys.forEach((key) => {
|
|
Reflect.deleteProperty(newObj, key);
|
|
});
|
|
|
|
return newObj;
|
|
}
|
|
|
|
/**
|
|
* Asynchronously loads script
|
|
*
|
|
* @param {string} src
|
|
*
|
|
* @return {Promise}
|
|
*/
|
|
export function loadScript(src) {
|
|
const script = document.createElement('script');
|
|
|
|
script.async = true;
|
|
script.defer = true;
|
|
script.src = src;
|
|
|
|
return new Promise((resolve, reject) => {
|
|
script.onlaod = resolve;
|
|
script.onerror = reject;
|
|
|
|
document.body.appendChild(script);
|
|
});
|
|
}
|
|
|
|
export const rAF = window.requestAnimationFrame
|
|
|| window.mozRequestAnimationFrame
|
|
|| window.webkitRequestAnimationFrame
|
|
|| window.msRequestAnimationFrame
|
|
|| ((cb) => setTimeout(cb, 1000 / 60));
|
|
|
|
/**
|
|
* Returns a function, that, as long as it continues to be invoked, will not
|
|
* be triggered. The function will be called after it stops being called for
|
|
* N milliseconds. If `immediate` is passed, trigger the function on the
|
|
* leading edge, instead of the trailing. The function also has a property 'clear'
|
|
* that is a function which will clear the timer to prevent previously scheduled executions.
|
|
*
|
|
* @source https://github.com/component/debounce
|
|
*
|
|
* @param {function} function - function to wrap
|
|
* @param {number} [timeout=100] - timeout in ms
|
|
* @param {bool} [immediate=false] - whether to execute at the beginning
|
|
*/
|
|
export debounce from 'debounce';
|