mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 17:25:40 +03:00
Disable poll auto-refresh at point of expiry
This commit is contained in:
parent
1405296e67
commit
3b100ad30f
1 changed files with 20 additions and 18 deletions
|
@ -1279,24 +1279,26 @@ function Poll({
|
|||
const expiresAtDate = !!expiresAt && new Date(expiresAt);
|
||||
|
||||
// Update poll at point of expiry
|
||||
useEffect(() => {
|
||||
let timeout;
|
||||
if (!expired && expiresAtDate) {
|
||||
const ms = expiresAtDate.getTime() - Date.now() + 1; // +1 to give it a little buffer
|
||||
if (ms > 0) {
|
||||
timeout = setTimeout(() => {
|
||||
setUIState('loading');
|
||||
(async () => {
|
||||
await refresh();
|
||||
setUIState('default');
|
||||
})();
|
||||
}, ms);
|
||||
}
|
||||
}
|
||||
return () => {
|
||||
clearTimeout(timeout);
|
||||
};
|
||||
}, [expired, expiresAtDate]);
|
||||
// NOTE: Disable this because setTimeout runs immediately if delay is too large
|
||||
// https://stackoverflow.com/a/56718027/20838
|
||||
// useEffect(() => {
|
||||
// let timeout;
|
||||
// if (!expired && expiresAtDate) {
|
||||
// const ms = expiresAtDate.getTime() - Date.now() + 1; // +1 to give it a little buffer
|
||||
// if (ms > 0) {
|
||||
// timeout = setTimeout(() => {
|
||||
// setUIState('loading');
|
||||
// (async () => {
|
||||
// // await refresh();
|
||||
// setUIState('default');
|
||||
// })();
|
||||
// }, ms);
|
||||
// }
|
||||
// }
|
||||
// return () => {
|
||||
// clearTimeout(timeout);
|
||||
// };
|
||||
// }, [expired, expiresAtDate]);
|
||||
|
||||
const pollVotesCount = votersCount || votesCount;
|
||||
let roundPrecision = 0;
|
||||
|
|
Loading…
Reference in a new issue