File

src/guards/has-not-selected-language.guard.ts

Index

Properties
Methods

Constructor

constructor(sharedPreferences: SharedPreferences, router: Router, splashScreenService: SplashScreenService, onboardingConfigurationService: OnboardingConfigurationService)
Parameters :
Name Type Optional
sharedPreferences SharedPreferences No
router Router No
splashScreenService SplashScreenService No
onboardingConfigurationService OnboardingConfigurationService No

Methods

Private navigateToUserTypeSelection
navigateToUserTypeSelection()
Returns : void
Async resolve
resolve(route: ActivatedRouteSnapshot)
Parameters :
Name Type Optional
route ActivatedRouteSnapshot No
Returns : Promise<any>
import { Inject, Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, NavigationExtras, Resolve, Router } from '@angular/router';
import { OnboardingScreenType, PreferenceKey } from '@app/app/app.constant';
import { OnboardingConfigurationService } from '@app/services/onboarding-configuration.service';
import { SplashScreenService } from '@app/services/splash-screen.service';
import { SharedPreferences } from 'sunbird-sdk';

@Injectable()
export class HasNotSelectedLanguageGuard implements Resolve<any> {
    private guardActivated: boolean;
    constructor(
        @Inject('SHARED_PREFERENCES') private sharedPreferences: SharedPreferences,
        private router: Router,
        private splashScreenService: SplashScreenService,
        private onboardingConfigurationService: OnboardingConfigurationService
    ) { }

    async resolve(route: ActivatedRouteSnapshot): Promise<any> {

        if(await this.onboardingConfigurationService.skipOnboardingStep(OnboardingScreenType.LANGUAGE_SETTINGS)){
            this.navigateToUserTypeSelection();
            return false;
        }

        if (route.queryParams.onReload === 'true') {
            this.guardActivated = true;
        }

        if (this.guardActivated) {
            return true;
        }

        this.guardActivated = true;
        const selectedLanguage = await this.sharedPreferences.getString(PreferenceKey.SELECTED_LANGUAGE_CODE).toPromise();
        if (selectedLanguage) {
            this.navigateToUserTypeSelection();
            return false;
        }
        this.splashScreenService.handleSunbirdSplashScreenActions();
        return true;
    }

    private navigateToUserTypeSelection(){
        const navigationExtras: NavigationExtras = {
            state: {
                forwardMigration: true
            }
        };
        this.router.navigate(['/', 'user-type-selection'], navigationExtras);
    }
}

results matching ""

    No results matching ""