forked from github/plane
928ebdf632
* refactor: issues filter logic * fix: removed fetch logic from hooks * feat: filter by assignee and label * chore: remove filter buttons * feat: filter options * fix: mutation for issue update on both kanban & list --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
39 lines
705 B
TypeScript
39 lines
705 B
TypeScript
export const debounce = (func: any, wait: number, immediate: boolean = false) => {
|
|
let timeout: any;
|
|
|
|
return function executedFunction(...args: any) {
|
|
const later = () => {
|
|
timeout = null;
|
|
if (!immediate) func(...args);
|
|
};
|
|
|
|
const callNow = immediate && !timeout;
|
|
|
|
clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(later, wait);
|
|
|
|
if (callNow) func(...args);
|
|
};
|
|
};
|
|
|
|
export const getRandomEmoji = () => {
|
|
const emojis = [
|
|
"8986",
|
|
"9200",
|
|
"128204",
|
|
"127773",
|
|
"127891",
|
|
"127947",
|
|
"128076",
|
|
"128077",
|
|
"128187",
|
|
"128188",
|
|
"128512",
|
|
"128522",
|
|
"128578",
|
|
];
|
|
|
|
return emojis[Math.floor(Math.random() * emojis.length)];
|
|
};
|