|
@@ -9,25 +9,19 @@ export function useLoop(
|
|
|
let querying = false
|
|
|
let stopFlag = false
|
|
|
const startQuery = async () => {
|
|
|
- if (querying) {
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
querying = true
|
|
|
stopFlag = false
|
|
|
|
|
|
- await Promise.all(loopFunctions.map(func => func()))
|
|
|
-
|
|
|
+ await Promise.allSettled(loopFunctions.map(func => func()))
|
|
|
if (stopFlag) {
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
queryLoop = window.setTimeout(
|
|
|
startQuery,
|
|
|
typeof interval === 'string'
|
|
|
? LOOP_INTERVAL[interval]
|
|
|
? LOOP_INTERVAL[interval]
|
|
|
- : 5 * 1000
|
|
|
+ : 15 * 1000
|
|
|
: interval
|
|
|
)
|
|
|
}
|
|
@@ -46,9 +40,15 @@ export function useLoop(
|
|
|
})
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
+ if (querying) {
|
|
|
+ return
|
|
|
+ }
|
|
|
startQuery()
|
|
|
})
|
|
|
onActivated(() => {
|
|
|
+ if (querying) {
|
|
|
+ return
|
|
|
+ }
|
|
|
startQuery()
|
|
|
})
|
|
|
onDeactivated(() => {
|