@@ -41,7 +41,6 @@ let displayResetSetup = false;
41
41
42
42
let executedCommands: string [] = [];
43
43
44
- let firstStart = true ;
45
44
/*
46
45
$: enableNextButton = false;*/
47
46
let onboardingUnsubscribe: Unsubscriber ;
@@ -51,35 +50,19 @@ onMount(async () => {
51
50
onboardingUnsubscribe = onboardingList .subscribe (onboardingItems => {
52
51
if (! onboardings ) {
53
52
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 )));
61
54
}
62
55
});
63
56
64
57
// eslint-disable-next-line @typescript-eslint/no-misused-promises
65
- contextsUnsubscribe = context .subscribe (async value => {
58
+ contextsUnsubscribe = context .subscribe (value => {
66
59
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 )));
78
61
});
79
62
});
80
63
81
64
let started = false ;
82
- async function startOnboarding(): Promise <boolean > {
65
+ async function startOnboarding(): Promise <void > {
83
66
if (! started && globalContext && onboardings ) {
84
67
started = true ;
85
68
if (isOnboardingsSetupCompleted (onboardings )) {
@@ -88,9 +71,7 @@ async function startOnboarding(): Promise<boolean> {
88
71
} else {
89
72
await restartSetup ();
90
73
}
91
- return true ;
92
74
}
93
- return false ;
94
75
}
95
76
96
77
onDestroy (() => {
@@ -135,7 +116,6 @@ async function setActiveStep() {
135
116
}
136
117
}
137
118
}
138
-
139
119
// if it reaches this point it means that the onboarding is fully completed and the user is redirected to the dashboard
140
120
router .goto ($lastPage .path );
141
121
}
0 commit comments