1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Merge pull request #2587 from Budibase/fix-checklist

Fix checklist spinner and progress
This commit is contained in:
Andrew Kingston 2021-09-10 08:47:01 +01:00 committed by GitHub
commit 63640cd63c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 10 deletions

View file

@ -42,7 +42,7 @@
<div
on:click
class:spectrum-ProgressCircle--indeterminate={!value}
class:spectrum-ProgressCircle--indeterminate={value == null}
class:spectrum-ProgressCircle--overBackground={overBackground}
class="spectrum-ProgressCircle spectrum-ProgressCircle--{convertSize(size)}"
>

View file

@ -25,20 +25,14 @@ export function createAdminStore() {
`/api/global/configs/checklist?tenantId=${tenantId}`
)
const json = await response.json()
const onboardingSteps = Object.keys(json)
const stepsComplete = onboardingSteps.reduce(
(score, step) => (score + step.checked ? 1 : 0),
0
)
const totalSteps = Object.keys(json).length
const completedSteps = Object.values(json).filter(x => x?.checked).length
await getFlags()
admin.update(store => {
store.loaded = true
store.checklist = json
store.onboardingProgress =
(stepsComplete / onboardingSteps.length) * 100
store.onboardingProgress = (completedSteps / totalSteps) * 100
return store
})
} catch (err) {