getStartStoryRoutes function

List<GoRoute> getStartStoryRoutes({
  1. StartUserStoryConfiguration? configuration = const StartUserStoryConfiguration(),
})

Implementation

List<GoRoute> getStartStoryRoutes({
  StartUserStoryConfiguration? configuration =
      const StartUserStoryConfiguration(),
}) =>
    <GoRoute>[
      GoRoute(
        path: StartUserStoryRoutes.splashScreen,
        pageBuilder: (context, state) {
          var go = context.go;
          var isAllowedToPassThrough = false;
          var introductionSeen = false;
          String? routeAfterSplash;
          Future<void> splashLoadingMethod() async {
            await Future.wait<void>(
              [
                Future.delayed(
                  Duration.zero,
                  () async {
                    if (configuration!.useKillswitch) {
                      var killswitchService = configuration.killswitchService ??
                          DefaultKillswitchService();

                      isAllowedToPassThrough =
                          await killswitchService.isKillswitchActive();
                    }

                    var introService = configuration.introductionService ??
                        IntroductionService(
                          SharedPreferencesIntroductionDataProvider(),
                        );
                    introductionSeen = !await introService.shouldShow();
                    if (context.mounted)
                      routeAfterSplash = await configuration.splashScreenFuture
                              ?.call(context) ??
                          configuration.homeScreenRoute;
                  },
                ),
                Future.delayed(
                  Duration(
                    seconds: configuration!.minimumSplashScreenDuration,
                  ),
                  () async {},
                ),
              ],
            );

            if (configuration.useKillswitch && isAllowedToPassThrough) return;

            if (!configuration.showIntroduction || introductionSeen) {
              return go(
                routeAfterSplash ?? StartUserStoryRoutes.home,
              );
            }
            return go(StartUserStoryRoutes.introduction);
          }

          if (configuration!.splashScreenBuilder == null) {
            unawaited(splashLoadingMethod());
          }
          return buildScreenWithoutTransition(
            context: context,
            state: state,
            child: configuration.splashScreenBuilder?.call(
                  context,
                  () async => splashLoadingMethod(),
                ) ??
                Scaffold(
                  backgroundColor: configuration.splashScreenBackgroundColor,
                  body: Center(
                    child:
                        configuration.splashScreenCenterWidget?.call(context) ??
                            defaultSplashScreen,
                  ),
                ),
          );
        },
      ),
      GoRoute(
        path: StartUserStoryRoutes.introduction,
        pageBuilder: (context, state) {
          var introduction = Introduction(
            service: configuration!.introductionService ??
                IntroductionService(
                  SharedPreferencesIntroductionDataProvider(),
                ),
            navigateTo: () {
              context.go(
                configuration.homeScreenRoute ?? StartUserStoryRoutes.home,
              );
            },
            options: configuration.introductionOptionsBuilder?.call(context) ??
                const IntroductionOptions(),
            physics: configuration.introductionScrollPhysics,
            child: configuration.introductionFallbackScreen,
          );

          return buildScreenWithoutTransition(
            context: context,
            state: state,
            child: PopScope(
              canPop: configuration.canPopFromIntroduction,
              child: configuration.introductionBuilder?.call(
                    context,
                    introduction,
                  ) ??
                  Scaffold(
                    body: introduction,
                  ),
            ),
          );
        },
      ),
    ];