1
Fork 0

Only start the next tour if the selected tour is not the introduction.

This commit is contained in:
Bauke 2023-07-01 11:33:54 +02:00
parent 395ce2fb62
commit 771e69c631
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 9 additions and 4 deletions

View File

@ -17,12 +17,20 @@ async function main(): Promise<void> {
const prefix = "tildes-shepherd-tour=";
const startsWithPrefix = anchor.startsWith(prefix);
// Get the tour ID from the anchor by removing the prefix.
const anchorTourId = anchor.slice(prefix.length);
// Automatically start the introduction tour if the person hasn't already
// been through it and only when on the Tildes homepage.
if (!introductionUnderstood.value && window.location.pathname === "/") {
// If a different tour is selected but the introduction hasn't happened yet,
// then the main function will be rerun once this tour finishes.
startTour("introduction", introductionSteps, [], startsWithPrefix);
startTour(
"introduction",
introductionSteps,
[],
startsWithPrefix && anchorTourId !== "introduction",
);
return;
}
@ -30,9 +38,6 @@ async function main(): Promise<void> {
return;
}
// Get the tour ID from the anchor by removing the prefix.
const anchorTourId = anchor.slice(prefix.length);
// Then run through all of the tours we have and start the first match for the
// ID.
for (const [id, steps, eventHandlers] of tourIdsAndSteps) {