Skip to content

Commit 80704c4

Browse files
authored
fix: remove redundant step completion check when onboarding gets started (podman-desktop#3783) (podman-desktop#3798)
* fix: remove redundant step completion check when how onboarding gets started (podman-desktop#3783) Signed-off-by: lstocchi <[email protected]> * fix: add missing catch Signed-off-by: lstocchi <[email protected]> --------- Signed-off-by: lstocchi <[email protected]>
1 parent 75d0aa5 commit 80704c4

File tree

1 file changed

+4
-24
lines changed

1 file changed

+4
-24
lines changed

packages/renderer/src/lib/onboarding/Onboarding.svelte

+4-24
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ let displayResetSetup = false;
4141
4242
let executedCommands: string[] = [];
4343
44-
let firstStart = true;
4544
/*
4645
$: enableNextButton = false;*/
4746
let onboardingUnsubscribe: Unsubscriber;
@@ -51,35 +50,19 @@ onMount(async () => {
5150
onboardingUnsubscribe = onboardingList.subscribe(onboardingItems => {
5251
if (!onboardings) {
5352
onboardings = onboardingItems.filter(o => extensionIds.find(extensionId => o.extension === extensionId));
54-
if (!started) {
55-
startOnboarding().then(isStartedByMe => {
56-
if (isStartedByMe) {
57-
assertStepCompleted().finally(() => (firstStart = false));
58-
}
59-
});
60-
}
53+
startOnboarding().catch((err: unknown) => console.warn(String(err)));
6154
}
6255
});
6356
6457
// eslint-disable-next-line @typescript-eslint/no-misused-promises
65-
contextsUnsubscribe = context.subscribe(async value => {
58+
contextsUnsubscribe = context.subscribe(value => {
6659
globalContext = value;
67-
if (!started) {
68-
const isStartedByMe = await startOnboarding();
69-
if (isStartedByMe) {
70-
firstStart = false;
71-
await assertStepCompleted();
72-
return;
73-
}
74-
}
75-
if (!firstStart) {
76-
await assertStepCompleted();
77-
}
60+
startOnboarding().catch((err: unknown) => console.warn(String(err)));
7861
});
7962
});
8063
8164
let started = false;
82-
async function startOnboarding(): Promise<boolean> {
65+
async function startOnboarding(): Promise<void> {
8366
if (!started && globalContext && onboardings) {
8467
started = true;
8568
if (isOnboardingsSetupCompleted(onboardings)) {
@@ -88,9 +71,7 @@ async function startOnboarding(): Promise<boolean> {
8871
} else {
8972
await restartSetup();
9073
}
91-
return true;
9274
}
93-
return false;
9475
}
9576
9677
onDestroy(() => {
@@ -135,7 +116,6 @@ async function setActiveStep() {
135116
}
136117
}
137118
}
138-
139119
// if it reaches this point it means that the onboarding is fully completed and the user is redirected to the dashboard
140120
router.goto($lastPage.path);
141121
}

0 commit comments

Comments
 (0)