File

src/app/user-type-selection/user-type-selection.ts

Implements

OnDestroy

Metadata

Index

Properties
Methods

Constructor

constructor(profileService: ProfileService, preferences: SharedPreferences, telemetryGeneratorService: TelemetryGeneratorService, container: ContainerService, zone: NgZone, event: Events, commonUtilService: CommonUtilService, appGlobalService: AppGlobalService, platform: Platform, headerService: AppHeaderService, router: Router, frameworkGuard: HasNotSelectedFrameworkGuard, splashScreenService: SplashScreenService, nativePageTransitions: NativePageTransitions, tncUpdateHandlerService: TncUpdateHandlerService, profileHandler: ProfileHandler, loginHandlerService: LoginHandlerService, onboardingConfigurationService: OnboardingConfigurationService, externalIdVerificationService: ExternalIdVerificationService)
Parameters :
Name Type Optional
profileService ProfileService No
preferences SharedPreferences No
telemetryGeneratorService TelemetryGeneratorService No
container ContainerService No
zone NgZone No
event Events No
commonUtilService CommonUtilService No
appGlobalService AppGlobalService No
platform Platform No
headerService AppHeaderService No
router Router No
frameworkGuard HasNotSelectedFrameworkGuard No
splashScreenService SplashScreenService No
nativePageTransitions NativePageTransitions No
tncUpdateHandlerService TncUpdateHandlerService No
profileHandler ProfileHandler No
loginHandlerService LoginHandlerService No
onboardingConfigurationService OnboardingConfigurationService No
externalIdVerificationService ExternalIdVerificationService No

Methods

continue
continue()
Returns : void
generateAuditEvents
generateAuditEvents()
Returns : void
generateInteractEvent
generateInteractEvent(userType)
Parameters :
Name Optional
userType No
Returns : void
generateUserTypeClicktelemetry
generateUserTypeClicktelemetry(userType: string)
Parameters :
Name Type Optional
userType string No
Returns : void
getNavParams
getNavParams()
Returns : void
gotoNextPage
gotoNextPage(isUserTypeChanged: boolean)

It will initializes tabs based on the user type and navigates to respective page isUserTypeChanged

Parameters :
Name Type Optional Default value
isUserTypeChanged boolean No false
Returns : void
handleBackButton
handleBackButton(isBackClicked?)
Parameters :
Name Optional
isBackClicked Yes
Returns : void
handleHeaderEvents
handleHeaderEvents($event)
Parameters :
Name Optional
$event No
Returns : void
Async hideOnboardingSplashScreen
hideOnboardingSplashScreen()
Returns : any
ionViewDidEnter
ionViewDidEnter()
Returns : void
Async ionViewWillEnter
ionViewWillEnter()
Returns : any
ionViewWillLeave
ionViewWillLeave()
Returns : void
Async navigateToProfilePage
navigateToProfilePage()
Returns : any
Async navigateToProfileSettingsPage
navigateToProfileSettingsPage(params, isUpdateProfile?)
Parameters :
Name Optional
params No
isUpdateProfile Yes
Returns : any
navigateToTabsAsGuest
navigateToTabsAsGuest()
Returns : void
Async navigateToTabsAsLogInUser
navigateToTabsAsLogInUser()
Returns : any
ngOnDestroy
ngOnDestroy()
Returns : void
onSubmitAttempt
onSubmitAttempt()
Returns : void
selectCard
selectCard(userType, profileType)
Parameters :
Name Optional
userType No
profileType No
Returns : void
selectUserTypeCard
selectUserTypeCard(selectedUserTypeName: string, userType: string, isActive: boolean)
Parameters :
Name Type Optional
selectedUserTypeName string No
userType string No
isActive boolean No
Returns : void
setProfile
setProfile(profileRequest: Profile)
Parameters :
Name Type Optional
profileRequest Profile No
Returns : void
Async setUserTypeForNewUser
setUserTypeForNewUser()
Returns : any
updateProfile
updateProfile(page: string, params: object)

Updates profile and navigates to desired page with given params page params

Parameters :
Name Type Optional Default value
page string No
params object No {}
Returns : void

Properties

appName
Type : string
Default value : ''
backButtonFunc
Type : Subscription
categoriesProfileData
Type : any
continueAs
Type : string
Default value : ''
Public frameworkGuard
Type : HasNotSelectedFrameworkGuard
headerObservable
Type : any
Public hideBackButton
Default value : true
isUserTypeSelected
Default value : false
Private navParams
Type : any
otherImageUri
Type : string
Default value : 'assets/imgs/ic_other.svg'
Public platform
Type : Platform
profile
Type : Profile
ProfileType
Default value : ProfileType
routerOutlet
Type : IonRouterOutlet
Decorators :
@ViewChild(IonRouterOutlet, {static: false})
selectCardImageUri
Type : string
Default value : 'assets/imgs/ic_check.svg'
Optional selectedUserType
Type : any
studentImageUri
Type : string
Default value : 'assets/imgs/ic_student.svg'
supportedUserTypeConfig
Type : Array<any>
teacherImageUri
Type : string
Default value : 'assets/imgs/ic_teacher.svg'
import { Component, Inject, NgZone, OnDestroy, ViewChild } from '@angular/core';
import { NavigationExtras, Router } from '@angular/router';
import { OnboardingScreenType, PreferenceKey, ProfileConstants, RouterLinks } from '@app/app/app.constant';
import { GUEST_STUDENT_TABS, GUEST_TEACHER_TABS, initTabs, LOGIN_TEACHER_TABS } from '@app/app/module.service';
import { HasNotSelectedFrameworkGuard } from '@app/guards/has-not-selected-framework.guard';
import { LoginHandlerService, OnboardingConfigurationService } from '@app/services';
import { AppGlobalService } from '@app/services/app-global-service.service';
import { AppHeaderService } from '@app/services/app-header.service';
import { CommonUtilService } from '@app/services/common-util.service';
import { ContainerService } from '@app/services/container.services';
import { TncUpdateHandlerService } from '@app/services/handlers/tnc-update-handler.service';
import { ProfileHandler } from '@app/services/profile-handler';
import { SplashScreenService } from '@app/services/splash-screen.service';
import {
  AuditProps,
  AuditType, CorReleationDataType, Environment,
  ImpressionType,
  InteractSubtype,
  InteractType,
  PageId
} from '@app/services/telemetry-constants';
import { TelemetryGeneratorService } from '@app/services/telemetry-generator.service';
import { NativePageTransitions, NativeTransitionOptions } from '@ionic-native/native-page-transitions/ngx';
import { IonRouterOutlet, Platform } from '@ionic/angular';
import { Events } from '@app/util/events';
import { Subscription } from 'rxjs';
import {
  AuditState, CorrelationData, Profile,
  ProfileService,
  ProfileSource,
  ProfileType,
  SharedPreferences,
  UpdateServerProfileInfoRequest
} from 'sunbird-sdk';
import { ExternalIdVerificationService } from '@app/services/externalid-verification.service';

@Component({
  selector: 'page-user-type-selection',
  templateUrl: 'user-type-selection.html',
  styleUrls: ['./user-type-selection.scss']
})

export class UserTypeSelectionPage implements OnDestroy {
  selectedUserType?: any;
  continueAs = '';
  profile: Profile;
  backButtonFunc: Subscription;
  headerObservable: any;
  studentImageUri = 'assets/imgs/ic_student.svg';
  teacherImageUri = 'assets/imgs/ic_teacher.svg';
  otherImageUri = 'assets/imgs/ic_other.svg';
  selectCardImageUri = 'assets/imgs/ic_check.svg';
  private navParams: any;
  @ViewChild(IonRouterOutlet, { static: false }) routerOutlet: IonRouterOutlet;
  appName = '';
  public hideBackButton = true;
  ProfileType = ProfileType;
  categoriesProfileData: any;
  supportedUserTypeConfig: Array<any>;
  isUserTypeSelected = false;

  constructor(
    @Inject('PROFILE_SERVICE') private profileService: ProfileService,
    @Inject('SHARED_PREFERENCES') private preferences: SharedPreferences,
    private telemetryGeneratorService: TelemetryGeneratorService,
    private container: ContainerService,
    private zone: NgZone,
    private event: Events,
    private commonUtilService: CommonUtilService,
    private appGlobalService: AppGlobalService,
    public platform: Platform,
    private headerService: AppHeaderService,
    private router: Router,
    public frameworkGuard: HasNotSelectedFrameworkGuard,
    private splashScreenService: SplashScreenService,
    private nativePageTransitions: NativePageTransitions,
    private tncUpdateHandlerService: TncUpdateHandlerService,
    private profileHandler: ProfileHandler,
    private loginHandlerService: LoginHandlerService,
    private onboardingConfigurationService: OnboardingConfigurationService,
    private externalIdVerificationService: ExternalIdVerificationService,
  ) {
  }

  getNavParams() {
    this.navParams = window.history.state;
    this.categoriesProfileData = this.navParams.categoriesProfileData;
  }

  ionViewDidEnter() {
    this.hideOnboardingSplashScreen();
  }

  async hideOnboardingSplashScreen() {
    if (this.navParams && this.navParams.forwardMigration) {
      if (!this.frameworkGuard.guardActivated) {
        this.splashScreenService.handleSunbirdSplashScreenActions();
      }
    }
  }

  async ionViewWillEnter() {
    if (this.appGlobalService.isUserLoggedIn()) {
      this.selectedUserType = await this.preferences.getString(PreferenceKey.SELECTED_USER_TYPE).toPromise();
    }
    this.setUserTypeForNewUser();
    this.supportedUserTypeConfig = await this.profileHandler.getSupportedUserTypes();
    if (this.router.url === '/' + RouterLinks.USER_TYPE_SELECTION) {
      setTimeout(() => {
        this.telemetryGeneratorService.generateImpressionTelemetry(
          ImpressionType.VIEW, '',
          PageId.USER_TYPE_SELECTION,
          this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING);
        /* New Telemetry */
        this.telemetryGeneratorService.generatePageLoadedTelemetry(
          PageId.USER_TYPE,
          this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING
        );
      }, 350);
    }
    this.getNavParams();
    this.headerObservable = this.headerService.headerEventEmitted$.subscribe(eventName => {
      this.handleHeaderEvents(eventName);
    });
    this.appName = await this.commonUtilService.getAppName();
    this.headerService.hideHeader();
    this.profile = this.appGlobalService.getCurrentUser();
    this.backButtonFunc = this.platform.backButton.subscribeWithPriority(10, () => {
      this.telemetryGeneratorService.generateBackClickedTelemetry(PageId.USER_TYPE_SELECTION, Environment.HOME, false);
      /* New Telemetry */
      this.telemetryGeneratorService.generateBackClickedNewTelemetry(
        true,
        this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        PageId.USER_TYPE
      );
      if(this.onboardingConfigurationService.initialOnboardingScreenName === OnboardingScreenType.USER_TYPE_SELECTION) {
        this.commonUtilService.showExitPopUp(PageId.USER_TYPE_SELECTION, Environment.ONBOARDING, false);
      }
      if (this.categoriesProfileData) {
        if (this.platform.is('ios')) {
          this.headerService.showHeaderWithHomeButton();
        } else {
          this.commonUtilService.showExitPopUp(PageId.USER_TYPE_SELECTION, Environment.HOME, false);
        }
      } else {
        this.backButtonFunc.unsubscribe();
      }
    });
    if(this.onboardingConfigurationService.initialOnboardingScreenName !== OnboardingScreenType.USER_TYPE_SELECTION){
      this.hideBackButton = false;
    }
  }

  ionViewWillLeave() {
    this.headerObservable.unsubscribe();
    // Unregister the custom back button action for this page
    this.event.unsubscribe('back');

    if (this.backButtonFunc) {
      this.backButtonFunc.unsubscribe();
    }
  }

  handleBackButton(isBackClicked?) {
    if (isBackClicked) {
      this.telemetryGeneratorService.generateBackClickedTelemetry(
        PageId.USER_TYPE_SELECTION,
        this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        true);
      /* New Telemetry */
      this.telemetryGeneratorService.generateBackClickedNewTelemetry(
        false,
        this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        PageId.USER_TYPE
      );
    }
    if (!this.categoriesProfileData) {
      this.router.navigate([`/${RouterLinks.LANGUAGE_SETTING}`]);
    }
  }

  handleHeaderEvents($event) {
    if ($event.name === 'back') {
      this.telemetryGeneratorService.generateBackClickedTelemetry(
        PageId.USER_TYPE_SELECTION,
        this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        true);
      this.handleBackButton();
    }
  }

  selectUserTypeCard(selectedUserTypeName: string, userType: string, isActive: boolean) {
    if (isActive) {
      this.selectCard(selectedUserTypeName, userType);
      this.generateUserTypeClicktelemetry(userType);
      if (!this.categoriesProfileData) {
        setTimeout(() => {
          this.continue();
        }, 50);
      }
    }
  }

  generateUserTypeClicktelemetry(userType: string) {
    const correlationlist: Array<CorrelationData> = [];
    correlationlist.push({ id: userType, type: CorReleationDataType.USERTYPE });
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.SELECT_USERTYPE, '',
      Environment.ONBOARDING,
      PageId.USER_TYPE,
      undefined,
      undefined,
      undefined,
      correlationlist
    );
  }

  selectCard(userType, profileType) {
    this.zone.run(() => {
      this.selectedUserType = profileType;
      this.isUserTypeSelected = true;
      this.continueAs = this.commonUtilService.translateMessage(
        'CONTINUE_AS_ROLE',
        this.commonUtilService.translateMessage(userType)
      );

      this.preferences.putString(PreferenceKey.SELECTED_USER_TYPE, this.selectedUserType).toPromise().then();
    });
    const values = {};
    values['userType'] = (this.selectedUserType).toUpperCase();
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.TOUCH,
      InteractSubtype.USER_TYPE_SELECTED,
      this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
      PageId.USER_TYPE_SELECTION,
      undefined,
      values
    );
  }

  continue() {
    // this.generateInteractEvent(this.selectedUserType);
    // When user is changing the role via the Guest Profile screen
    if (this.profile !== undefined && this.profile.handle) {
      // if role types are same
      if (this.profile.profileType === this.selectedUserType) {
        this.gotoNextPage();
      } else {
        this.gotoNextPage(true);
      }
    } else {
      const profileRequest: Profile = {
        uid: this.profile.uid,
        handle: 'Guest1',
        profileType: this.selectedUserType,
        source: ProfileSource.LOCAL
      };
      this.setProfile(profileRequest);
    }
  }

  setProfile(profileRequest: Profile) {
    this.profileService.updateProfile(profileRequest).toPromise().then(() => {
      return this.profileService.setActiveSessionForProfile(profileRequest.uid).toPromise().then(() => {
        return this.profileService.getActiveSessionProfile({ requiredFields: ProfileConstants.REQUIRED_FIELDS }).toPromise()
          .then((success: any) => {
            const userId = success.uid;
            this.event.publish(AppGlobalService.USER_INFO_UPDATED);
            if (userId !== 'null') {
              this.preferences.putString(PreferenceKey.GUEST_USER_ID_BEFORE_LOGIN, userId).toPromise().then();
            }
            this.profile = success;
            this.gotoNextPage();
            this.generateAuditEvents();
          }).catch(() => {
            return 'null';
          });
      });
    });
  }

  /**
   * It will initializes tabs based on the user type and navigates to respective page
   * isUserTypeChanged
   */

  // changes
  gotoNextPage(isUserTypeChanged: boolean = false) {
    // Update the Global variable in the AppGlobalService
    this.event.publish(AppGlobalService.USER_INFO_UPDATED);

    if (this.commonUtilService.isAccessibleForNonStudentRole(this.selectedUserType)) {
      initTabs(this.container, GUEST_TEACHER_TABS);
    } else if (this.selectedUserType === ProfileType.STUDENT) {
      initTabs(this.container, GUEST_STUDENT_TABS);
    }

    if (this.appGlobalService.isProfileSettingsCompleted && this.appGlobalService.isOnBoardingCompleted && !isUserTypeChanged) {
      this.navigateToTabsAsGuest();
    } else {
      if (isUserTypeChanged) {
        this.updateProfile('ProfileSettingsPage', { showProfileSettingPage: true });
      } else {
        if (this.selectedUserType === ProfileType.ADMIN) {
          this.router.navigate([RouterLinks.SIGN_IN]);
        } else {
          this.navigateToProfileSettingsPage({ showProfileSettingPage: true });
        }
      }
    }
    //  else {
    //   this.updateProfile('ProfileSettingsPage', { showTabsPage: true });
    // }
  }

  generateInteractEvent(userType) {
    const values = new Map();
    values['userType'] = (userType).toUpperCase();
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.TOUCH,
      InteractSubtype.USER_TYPE_SELECTED,
      this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
      PageId.USER_TYPE_SELECTION,
      undefined,
      values
    );

    /* New Telemetry */
    const correlationlist: Array<CorrelationData> = [];
    correlationlist.push({ id: userType, type: CorReleationDataType.USERTYPE });
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.SELECT_CONTINUE, '',
      this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
      PageId.USER_TYPE,
      undefined,
      values,
      undefined,
      correlationlist
    );
  }

  /**
   * Updates profile and navigates to desired page with given params
   * page
   * params
   */
  updateProfile(page: string, params = {}) {
    this.profile.profileType = this.selectedUserType;
    this.profileService.updateProfile(this.profile).toPromise()
      .then((res: any) => {
        if (page === 'TabsPage') {
          this.navigateToTabsAsGuest();
        } else if (this.categoriesProfileData) {
          this.navigateToTabsAsLogInUser();
        } else {
          if (this.selectedUserType === ProfileType.ADMIN) {
            this.router.navigate([RouterLinks.SIGN_IN]);
          } else {
            this.navigateToProfileSettingsPage(params, true);
          }
        }
      }).catch(error => {
        console.error('Error=', error);
      });
    const request: UpdateServerProfileInfoRequest = {
      userId: this.profile.uid,
      profileUserType: {
        type: this.selectedUserType
      }
    };
    this.profileService.updateServerProfile(request).toPromise()
      .then().catch((e) => console.log('server error for update profile', e));
  }

  async navigateToTabsAsLogInUser() {
    if (this.categoriesProfileData.status) {
      if (this.categoriesProfileData.showOnlyMandatoryFields) {
        initTabs(this.container, LOGIN_TEACHER_TABS);
        const isSSOUser = await this.tncUpdateHandlerService.isSSOUser(this.profile);
        if (this.categoriesProfileData.hasFilledLocation || isSSOUser) {
          if (!isSSOUser) {
            this.appGlobalService.showYearOfBirthPopup(this.profile.serverProfile);
          }
          if (this.appGlobalService.isJoinTraningOnboardingFlow) {
            window.history.go(-this.categoriesProfileData.noOfStepsToCourseToc);
          } else {
            this.router.navigate([RouterLinks.TABS]);
          }
          this.externalIdVerificationService.showExternalIdVerificationPopup();
        } else {
          const navigationExtras: NavigationExtras = {
            state: {
              isShowBackButton: false,
              noOfStepsToCourseToc: this.categoriesProfileData.noOfStepsToCourseToc + 1
            }
          };
          this.router.navigate([RouterLinks.DISTRICT_MAPPING], navigationExtras);
        }
      }
    } else {
      this.categoriesProfileData['noOfStepsToCourseToc'] = this.categoriesProfileData.noOfStepsToCourseToc + 1;
      this.router.navigate([`/${RouterLinks.PROFILE}/${RouterLinks.CATEGORIES_EDIT}`], {
        state: this.categoriesProfileData
      });
    }
  }

  navigateToTabsAsGuest() {
    const navigationExtras: NavigationExtras = { state: { loginMode: 'guest' } };
    this.router.navigate(['/tabs'], navigationExtras);
  }

  async navigateToProfileSettingsPage(params, isUpdateProfile? ) {
    const navigationExtras: NavigationExtras = { state: params };
    const options: NativeTransitionOptions = {
      direction: 'left',
      duration: 500,
      androiddelay: 500,
      iosdelay: 500,
      fixedPixelsTop: 0,
      fixedPixelsBottom: 0
    };
    this.nativePageTransitions.slide(options);
    if(isUpdateProfile) {
      this.generateAuditEvents();
    }
    this.router.navigate([`/${RouterLinks.PROFILE_SETTINGS}`], navigationExtras);
  }

  async navigateToProfilePage() {
    const navigationExtras: NavigationExtras = {};
    const options: NativeTransitionOptions = {
      direction: 'left',
      duration: 500,
      androiddelay: 500,
      iosdelay: 500,
      fixedPixelsTop: 0,
      fixedPixelsBottom: 0
    };
    this.router.navigate([`/${RouterLinks.GUEST_PROFILE}`], navigationExtras);
  }

  onSubmitAttempt() {
    setTimeout(() => {
      this.continue();
    }, 50);
  }

  ngOnDestroy() {
    if (this.backButtonFunc) {
      this.backButtonFunc.unsubscribe();
    }
  }

  async setUserTypeForNewUser() {
    if (this.selectedUserType === 'none') {
      await this.commonUtilService.getGuestUserConfig().then((profile) => {
        this.selectedUserType = profile.profileType;
        this.preferences.putString(PreferenceKey.SELECTED_USER_TYPE, this.selectedUserType).toPromise().then();
      });
    }
    this.isUserTypeSelected = this.selectedUserType !== 'none' ? true : false;
  }

  generateAuditEvents(){
    const correlationlist: Array<CorrelationData> = [{ id: PageId.USER_TYPE, type: CorReleationDataType.FROM_PAGE }];
    correlationlist.push({ id: this.selectedUserType, type: CorReleationDataType.USERTYPE });
    this.telemetryGeneratorService.generateAuditTelemetry(
      Environment.ONBOARDING,
      AuditState.AUDIT_UPDATED,
      [AuditProps.PROFILE_TYPE],
      AuditType.SELECT_USERTYPE,
      undefined,
      undefined,
      undefined,
      correlationlist
    );
  }
}
<ion-content class="ion-padding" [ngClass]="{ 'ui-container': !platform.is('ios') }">
    <div class="ui-container-ios" *ngIf="platform.is('ios')"></div>
    <div class="ui-content">
        <div class="back-btn-container" (click)="handleBackButton(true)" role="button" aria-label="back">
            <img src="assets/imgs/ic_back_black.svg" *ngIf="!hideBackButton && !categoriesProfileData"
                 class="top-back-button" alt="back">
        </div>
        <div class="app-text-heading-welcome">
            <p role="heading" aria-level="1" class="ion-text-center title-class">{{'APP_TITLE' | translate:{'%s': appName} }}</p>
            <h6 class="gray-color ion-text-center">{{ 'ROLE_SELECTOR_QUERY' | translate }}</h6>
        </div>

        <div class="container">
            <div class="card" *ngFor="let userTypeConfig of supportedUserTypeConfig;">
                <div class="card-container" role="button" (click)="selectUserTypeCard(userTypeConfig?.name, userTypeConfig?.code, userTypeConfig?.isActive)" [class.selected]="selectedUserType === userTypeConfig?.code">
                    <div class="check-icon">
                        <img class="icon-check" alt="" [class.selected]="selectedUserType === userTypeConfig?.code" src="assets/imgs/ic_check.svg"/>
                    </div>
                    <img class="thumbnail" alt="" src="assets/imgs/{{ userTypeConfig?.image }}" [ngClass]="{'coming-soon-image': !userTypeConfig?.isActive}" />
                    <h4 class="card-title sb__ellipsis sb__ellipsis--two">{{ userTypeConfig?.name }}</h4>
                    <h6 *ngIf="!userTypeConfig?.isActive" class="coming-soon-title">{{ 'FRMELEMNTS_MSG_COMING_SOON' | translate }}</h6>
                </div>
            </div>
        </div>  
    </div>
</ion-content>

<div *ngIf="categoriesProfileData"> 
	<button class="sb-btn sb-btn-md sb-btn-primary PR35 W100 ellipsis text-uppercase btn-block continue" [disabled]="!isUserTypeSelected" [class.disabled-button]="!isUserTypeSelected" (click)="onSubmitAttempt()">
		<span>{{ 'CONTINUE' | translate }}</span>
		<img class="arrow-icon" src="assets/imgs/ic_back.svg" alt="">
	</button>
</div>

./user-type-selection.scss

@import "src/assets/styles/variables";
@import "src/assets/styles/_custom-mixins";
@import "src/assets/styles/_variables.scss";
@import "src/assets/styles/fonts";

:host {
  .card-title {
    font-weight: 700 !important;
    font-size: 1.4rem;
    color: map-get($colors, secondary_black);
    text-align: center;
  }

  .thumbnail {
    width: 100%;
    height: auto;
    max-width: 9.375rem;
  }

  .icon-check {
    visibility: hidden;
    width: auto;
    height: auto;
    margin-left: 124px;
    &.selected {
     visibility: visible;
    }
  }

  .card-content-md {
    @include padding(null, null, null, 0 !important);
  }

  .gray-color {
    color: map-get($colors, primary_black);
    padding: 0;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.88rem;
    font-weight: bold;
    font-size: 1.5rem;
  }

  .title-class {
    font-size: 1.5rem;
    font-weight: bold;
    color: $blue;
    margin-top: 4vh;
  }

  .back-btn-container{
    @include ltr() {
      top: 0;
      left: 0;
    }
    @include rtl() {
      top: 0;
      right: 0;
    }
    flex-grow: 0;
    flex-shrink: 0;
    position: absolute;
    .top-back-button{
      position: relative;
      width: 1.375rem;
      @include ltr() {
        left: 1rem;
        transform: rotate(180deg);
      }
      @include rtl() {
        right: 1rem;
        transform: rotate(0deg);
      }
    }
  }

  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card {
    width: 50%;
    padding: 8px;
    box-sizing: border-box;
  }

  .disabled-button {
    opacity: 0.8;
  }

  .card-container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 15px;
    background-color: map-get($colors, white);
    justify-content: center;
    align-items: center;
    height: 17rem;
    &.selected {
      border:3px solid map-get($colors, vived_blue_fe);
    }
  }

  .continue {
    position: fixed;
    z-index: 2;
    bottom: 2rem;
    width: 90vw;
    left: 5vw;
  }
  img.arrow-icon {
    display: inline-block;
    width: 1.375rem;
    margin-top: -3px;
    float: right;

    &.animate {
      position: relative;
      animation: dropDown 5s linear infinite;
      animation-duration: 0.9s;
    }

    @include rtl {
      transform: rotate(180deg);
      float: left !important;
    }
  }
  .app-text-heading-welcome {
    padding-top: 1em;
  }
  .coming-soon-image {
    opacity: 0.5;
  }
  .coming-soon-title {
    font-weight: 700 !important;
    font-size: 1.0rem;
    color: map-get($colors, title);
  }

  .check-icon {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""