{ "version": 3, "sources": ["src/app/store/profile/profile.actions.ts", "src/app/shared/helpers/upload-progress.ts", "src/app/shared/services/profile-media-api.service.ts", "src/app/store/profile/profile.state.ts"], "sourcesContent": ["\n\nexport class EditProfile {\n public static readonly type = '[Profile] Edit profile';\n}\n\nexport class EditProfileAddress {\n public static readonly type = '[Profile] Edit profile address';\n}\n\nexport class GetProfile {\n public static readonly type = '[Profile] Get profile';\n constructor(public forceRefetch?: boolean) {\n }\n}\n\nexport class GoToEditProfile {\n public static readonly type = '[Profile] Go to edit profile';\n}\n\nexport class GoToEditAddressProfile {\n public static readonly type = '[Profile] Go to edit address profile';\n}\n\nexport class CancelEditProfile {\n public static readonly type = '[Profile] Cancel edit profile';\n}\n\nexport class CancelEditAddressProfile {\n public static readonly type = '[Profile] Cancel edit address profile';\n}", "import {HttpEvent, HttpEventType} from '@angular/common/http';\nimport {tap} from 'rxjs';\n\nexport function uploadProgress(callback: (progress: number) => void) {\n return tap((event: HttpEvent) => {\n if (event.type === HttpEventType.UploadProgress) {\n callback(Math.round((100 * event.loaded) / event.total));\n }\n });\n}\n", "import {HttpClient, HttpEventType, HttpResponse} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {catchError, EMPTY, filter, from, map, mergeMap, Observable, toArray} from 'rxjs';\nimport {ConfigurationService} from 'src/app/core/config/configuration.service';\nimport {IProfileMedia} from 'src/app/interfaces/profile-media';\nimport {\n IProfileMediaFilePayloadForRequest,\n IProfileMediaUploadRequest,\n} from 'src/app/interfaces/profile-media-upload.request';\nimport {uploadProgress} from 'src/app/shared/helpers/upload-progress';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ProfileMediaApiService {\n\n constructor(\n private http: HttpClient,\n private cfg: ConfigurationService,\n ) { }\n\n public getNoImage(): Observable {\n return this.http.get('assets/images/no-image.png', {\n responseType: 'blob' as 'json',\n });\n }\n\n public getAllProfileMedia(): Observable {\n return this.http.get(`${this.cfg.get('profileApiUrl')}/media`);\n }\n\n public getProfileMedia(identifier: string): Observable {\n return this.http.get(`${this.cfg.get('profileApiUrl')}/media/${identifier}`);\n }\n\n public getMedia(identifier: string): Observable {\n return this.http.get(`${this.cfg.get('profileApiUrl')}/media/${identifier}/download`, {\n responseType: 'blob' as 'json',\n });\n }\n\n public delete(identifier: string): Observable;\n public delete(identifiers: string[]): Observable;\n public delete(identifiers: string | string[]): Observable {\n let ids: string[] = [];\n if (typeof identifiers === 'string') {\n ids.push(identifiers);\n }\n if (Array.isArray(identifiers)) {\n ids = identifiers;\n }\n\n return from(ids).pipe(\n mergeMap((id) => this.http.delete(`${this.cfg.get('profileApiUrl')}/media/${id}`).pipe(\n catchError((error) => {\n console.error(error);\n return EMPTY;\n }),\n )),\n toArray(),\n map(() => undefined),\n );\n }\n\n public deleteWithoutHandlingError(id: string): Observable {\n return this.http.delete(`${this.cfg.get('profileApiUrl')}/media/${id}`);\n }\n\n public upload(\n req: IProfileMediaUploadRequest,\n uploadCallback: (progress: number) => void,\n ): Observable {\n const {file, name, additionalType} = req;\n const formData = new FormData();\n formData.append('file', file);\n formData.append('name', name ?? file.name);\n formData.append('additionalType', additionalType);\n\n return this.http.post(\n `${this.cfg.get('profileApiUrl')}/media`,\n formData,\n {\n reportProgress: true,\n observe: 'events',\n }\n ).pipe(\n uploadProgress(uploadCallback),\n filter((event) => event.type === HttpEventType.Response),\n map((response: HttpResponse) => response.body),\n );\n }\n\n public uploadProfilePicture(\n req: IProfileMediaFilePayloadForRequest,\n uploadCallback: (progress: number) => void\n ): Observable {\n return this.upload({...req, additionalType: 'ProfileImage'}, uploadCallback);\n }\n\n public uploadTravelerPicture(\n req: IProfileMediaFilePayloadForRequest,\n uploadCallback: (progress: number) => void,\n ): Observable {\n return this.upload({...req, additionalType: 'TravelerProfileImage'}, uploadCallback);\n }\n\n public uploadSupportingDocument(\n req: IProfileMediaFilePayloadForRequest,\n uploadCallback: (progress: number) => void,\n ): Observable {\n return this.upload({...req, additionalType: 'SupportingDocument'}, uploadCallback);\n }\n\n}\n", "import {Injectable} from '@angular/core';\nimport {Action, Selector, State, StateContext, Store} from '@ngxs/store';\nimport {IProfile} from 'src/app/interfaces/profile';\nimport {\n CancelEditAddressProfile,\n CancelEditProfile,\n EditProfile,\n EditProfileAddress,\n GetProfile,\n GoToEditAddressProfile,\n GoToEditProfile\n} from './profile.actions';\nimport {ProfileService} from '../../modules/profile/profile.service';\nimport {Navigate} from '@ngxs/router-plugin';\nimport {UpdateFormValue} from '@ngxs/form-plugin';\nimport {firstValueFrom} from 'rxjs';\nimport {AppInsightsService} from 'src/app/core/app-insights/app-insights.service';\nimport {errorHandler, IErrorHandlerArgs} from 'src/app/shared/helpers/error-handler';\nimport {ProfileMediaApiService} from 'src/app/shared/services/profile-media-api.service';\n\nexport interface IProfileState {\n data: Partial;\n profileForm: {\n model: Partial;\n };\n addressForm: {\n model: Partial;\n };\n loading: boolean;\n hasValue: boolean;\n error: any;\n}\n\n@State({\n name: 'profile',\n defaults: {\n data: null,\n profileForm: {\n model: null\n },\n addressForm: {\n model: null\n },\n loading: false,\n hasValue: false,\n error: null\n }\n})\n@Injectable()\nexport class ProfileState {\n private readonly _errorHandleInitArgs: IErrorHandlerArgs = {\n error: null,\n appInsightsSrv: this.insight,\n scope: 'ProfileState'\n };\n\n constructor(\n private store: Store,\n private profile: ProfileService,\n private insight: AppInsightsService,\n private profileMediaApi: ProfileMediaApiService\n ) {\n }\n\n @Selector()\n public static profile(state: IProfileState): Partial {\n return state.data;\n }\n\n @Selector()\n public static model(state: IProfileState): Partial {\n return state.profileForm.model;\n }\n\n @Selector()\n public static loading(state: IProfileState): boolean {\n return state.loading;\n }\n\n @Selector()\n public static hasValue(state: IProfileState): boolean {\n return state.hasValue;\n }\n\n @Selector()\n public static error(state: IProfileState): any {\n return state.error;\n }\n\n @Action(GetProfile)\n public async getProfile(\n ctx: StateContext,\n {forceRefetch}: GetProfile\n ): Promise {\n const state = ctx.getState();\n ctx.patchState({loading: true});\n let profile: Partial;\n if (state.hasValue && !forceRefetch) {\n profile = state.data;\n } else {\n try {\n profile = await firstValueFrom(this.profile.getProfile());\n } catch (error: any) {\n errorHandler({\n ...this._errorHandleInitArgs,\n error,\n fallbackMessage: 'An unknown error occurred during getting profile information'\n });\n ctx.patchState({\n data: null,\n hasValue: false,\n loading: false,\n error: error.error ?? error.message ?? error.statusText\n });\n }\n }\n\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.profileForm',\n value: profile\n })\n );\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.addressForm',\n value: profile\n })\n );\n ctx.patchState({data: profile, loading: false, hasValue: !!profile});\n }\n\n @Action(EditProfile)\n public async editProfile(ctx: StateContext): Promise {\n ctx.patchState({loading: true});\n const currentProfileImage = ctx.getState().data.profileImage;\n const model = ctx.getState().profileForm.model;\n let birthDate: any = '';\n if (model.birthDate) {\n const copy = new Date(model.birthDate);\n birthDate = `${copy.getFullYear()}-${copy.getMonth() + 1}-${copy.getDate()}`;\n }\n\n let profileImage = ctx.getState().profileForm.model.profileImage;\n\n try {\n // if profileImage is an object, it means that the user has uploaded a new image\n if (Boolean(profileImage) && typeof profileImage === 'object') {\n const file = (profileImage as any).file as File;\n const profileMedia = await firstValueFrom(this.profileMediaApi.uploadProfilePicture({file}, () => {\n }));\n profileImage = profileMedia.identifier;\n }\n\n // if the user has uploaded a new image, we need to remove the old one\n // if the user has removed the image, we need to remove it\n if (currentProfileImage && profileImage && currentProfileImage !== profileImage) {\n await firstValueFrom(this.profileMediaApi.delete(currentProfileImage));\n }\n\n // if the user has removed the image, we need to remove it\n if (currentProfileImage && !profileImage) {\n await firstValueFrom(this.profile.deleteProfilePic());\n }\n\n const payload: Partial = {\n ...model,\n birthDate,\n profileImage\n };\n\n const profile = await firstValueFrom(this.profile.updateProfile(payload));\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.profileForm',\n value: profile\n })\n );\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.addressForm',\n value: profile\n })\n );\n ctx.patchState({data: profile, loading: false, hasValue: !!profile});\n this.store.dispatch(new Navigate(['/profile']));\n } catch (error) {\n errorHandler({\n ...this._errorHandleInitArgs,\n error,\n fallbackMessage: 'An unknown error occurred during updating profile information'\n });\n ctx.patchState({\n loading: false,\n error: error.error ?? error.message ?? error.statusText\n });\n }\n }\n\n @Action(EditProfileAddress)\n public async editProfileAddress(ctx: StateContext): Promise {\n const currentState = ctx.getState();\n try {\n ctx.patchState({loading: true, error: null});\n const model: Partial = currentState.addressForm.model;\n const profile = await firstValueFrom(this.profile.updateProfile(model));\n ctx.patchState({data: profile, loading: false, hasValue: !!profile});\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.profileForm',\n value: profile\n })\n );\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.addressForm',\n value: profile\n })\n );\n this.store.dispatch(new Navigate(['/profile']));\n } catch (error) {\n ctx.patchState({\n ...currentState,\n hasValue: false,\n loading: false,\n error: error.error ?? error.message ?? error.statusText\n });\n errorHandler({\n ...this._errorHandleInitArgs,\n error,\n fallbackMessage: 'An unknown error occurred during updating profile address information'\n });\n }\n }\n\n @Action(GoToEditProfile)\n public goToEditProfile(): void {\n this.store.dispatch(new Navigate(['/profile/edit']));\n }\n\n @Action(GoToEditAddressProfile)\n public goToEditAddressProfile(): void {\n this.store.dispatch(new Navigate(['/profile/address']));\n }\n\n @Action([CancelEditProfile, CancelEditAddressProfile])\n public cancelEditProfile(ctx: StateContext): void {\n const profile = ctx.getState().data;\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.profileForm',\n value: profile\n })\n );\n this.store.dispatch(\n new UpdateFormValue({\n path: 'profile.addressForm',\n value: profile\n })\n );\n this.store.dispatch(new Navigate(['/profile']));\n }\n}\n"], "mappings": "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", "names": ["EditProfile", "type", "EditProfileAddress", "GetProfile", "constructor", "forceRefetch", "GoToEditProfile", "GoToEditAddressProfile", "CancelEditProfile", "CancelEditAddressProfile", "uploadProgress", "callback", "tap", "event", "type", "HttpEventType", "UploadProgress", "Math", "round", "loaded", "total", "ProfileMediaApiService", "constructor", "http", "cfg", "getNoImage", "get", "responseType", "getAllProfileMedia", "getProfileMedia", "identifier", "getMedia", "delete", "identifiers", "ids", "push", "Array", "isArray", "from", "pipe", "mergeMap", "id", "catchError", "error", "console", "EMPTY", "toArray", "map", "deleteWithoutHandlingError", "upload", "req", "uploadCallback", "file", "name", "additionalType", "formData", "FormData", "append", "post", "reportProgress", "observe", "uploadProgress", "filter", "event", "type", "HttpEventType", "Response", "response", "body", "uploadProfilePicture", "__spreadProps", "__spreadValues", "uploadTravelerPicture", "uploadSupportingDocument", "\u0275\u0275inject", "HttpClient", "ConfigurationService", "factory", "\u0275fac", "providedIn", "ProfileState", "constructor", "store", "profile", "insight", "profileMediaApi", "_errorHandleInitArgs", "error", "appInsightsSrv", "scope", "state", "data", "model", "profileForm", "loading", "hasValue", "getProfile", "ctx", "_1", "__async", "forceRefetch", "getState", "patchState", "firstValueFrom", "errorHandler", "__spreadProps", "__spreadValues", "fallbackMessage", "message", "statusText", "dispatch", "UpdateFormValue", "path", "value", "editProfile", "currentProfileImage", "profileImage", "birthDate", "copy", "Date", "getFullYear", "getMonth", "getDate", "file", "uploadProfilePicture", "identifier", "delete", "deleteProfilePic", "payload", "updateProfile", "Navigate", "editProfileAddress", "currentState", "addressForm", "goToEditProfile", "goToEditAddressProfile", "cancelEditProfile", "\u0275\u0275inject", "Store", "ProfileService", "AppInsightsService", "ProfileMediaApiService", "factory", "\u0275fac", "__decorate", "Action", "GetProfile", "EditProfile", "EditProfileAddress", "GoToEditProfile", "GoToEditAddressProfile", "CancelEditProfile", "CancelEditAddressProfile", "Selector", "State", "name", "defaults"] }