{ "version": 3, "sources": ["libs/mediio-plattform/auth/core/profile/data-access/src/lib/store/profile.actions.ts", "libs/mediio-plattform/auth/core/profile/data-access/src/lib/store/profile.reducer.ts", "libs/mediio-plattform/auth/core/profile/data-access/src/lib/store/profile.selectors.ts", "libs/mediio-plattform/auth/core/profile/data-access/src/lib/store/profile.facade.ts"], "sourcesContent": ["import { createActionGroup, emptyProps, props } from '@ngrx/store';\r\n\r\nimport { Profile, UpdateProfile } from '@mp/auth/profile/domain';\r\n\r\nexport const ProfileActions = createActionGroup({\r\n source: 'Auth - Profile',\r\n events: {\r\n fetchProfile: emptyProps(),\r\n fetchProfileSuccess: props<{ profile: Profile }>(),\r\n fetchProfileError: emptyProps(),\r\n\r\n updateProfile: props<{ dto: UpdateProfile }>(),\r\n updateProfileSuccess: props<{ profile: Profile }>(),\r\n updateProfileError: emptyProps(),\r\n },\r\n});\r\n", "import { createReducer, on } from '@ngrx/store';\r\n\r\nimport { Profile } from '@mp/auth/profile/domain';\r\n\r\nimport { ProfileActions } from './profile.actions';\r\n\r\nexport const profileFeatureKey = 'mpauth-core-profile';\r\n\r\nexport interface ProfileState {\r\n profile: Profile | null;\r\n}\r\n\r\nexport const initialState: ProfileState = {\r\n profile: null,\r\n};\r\n\r\nexport const profileReducer = createReducer(\r\n initialState,\r\n on(\r\n ProfileActions.fetchProfileSuccess,\r\n ProfileActions.updateProfileSuccess,\r\n (state, { profile }): ProfileState => ({\r\n ...state,\r\n profile,\r\n }),\r\n ),\r\n);\r\n", "import { createFeatureSelector, createSelector } from '@ngrx/store';\r\n\r\nimport { ProfileState, profileFeatureKey } from './profile.reducer';\r\n\r\nconst selectProfileState = createFeatureSelector(profileFeatureKey);\r\n\r\nexport const selectProfile = createSelector(selectProfileState, (state) => state.profile);\r\n", "import { Injectable, Signal } from '@angular/core';\r\nimport { Store } from '@ngrx/store';\r\nimport { Observable } from 'rxjs';\r\n\r\nimport { Profile, UpdateProfile } from '@mp/auth/profile/domain';\r\n\r\nimport { ProfileActions } from './profile.actions';\r\nimport { selectProfile } from './profile.selectors';\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class ProfileFacade {\r\n readonly profile: Signal = this.store$.selectSignal(selectProfile);\r\n\r\n readonly profile$: Observable = this.store$.select(selectProfile);\r\n\r\n constructor(private readonly store$: Store) {}\r\n\r\n fetchProfile(): void {\r\n this.store$.dispatch(ProfileActions.fetchProfile());\r\n }\r\n\r\n updateProfile(dto: UpdateProfile): void {\r\n this.store$.dispatch(ProfileActions.updateProfile({ dto }));\r\n }\r\n}\r\n"], "mappings": "yLAIO,IAAMA,EAAiBC,EAAkB,CAC9CC,OAAQ,iBACRC,OAAQ,CACNC,aAAcC,EAAU,EACxBC,oBAAqBC,EAAK,EAC1BC,kBAAmBH,EAAU,EAE7BI,cAAeF,EAAK,EACpBG,qBAAsBH,EAAK,EAC3BI,mBAAoBN,EAAU,GAEjC,ECTM,IAAMO,EAAoB,sBAMpBC,EAA6B,CACxCC,QAAS,MAGEC,EAAiBC,EAC5BH,EACAI,EACEC,EAAeC,oBACfD,EAAeE,qBACf,CAACC,EAAO,CAAEP,QAAAA,CAAO,IAAsBQ,EAAAC,EAAA,GAClCF,GADkC,CAErCP,QAAAA,GACA,CACH,ECrBH,IAAMU,EAAqBC,EAAoCC,CAAiB,EAEnEC,EAAgBC,EAAeJ,EAAqBK,GAAUA,EAAMC,OAAO,ECIxF,IAAaC,GAAa,IAAA,CAApB,MAAOA,CAAa,CAKxBC,YAA6BC,EAAa,CAAb,KAAAA,OAAAA,EAJpB,KAAAC,QAAkC,KAAKD,OAAOE,aAAaC,CAAa,EAExE,KAAAC,SAAuC,KAAKJ,OAAOK,OAAOF,CAAa,CAEnC,CAE7CG,cAAY,CACV,KAAKN,OAAOO,SAASC,EAAeF,aAAY,CAAE,CACpD,CAEAG,cAAcC,EAAkB,CAC9B,KAAKV,OAAOO,SAASC,EAAeC,cAAc,CAAEC,IAAAA,CAAG,CAAE,CAAC,CAC5D,iDAbWZ,GAAaa,EAAAC,CAAA,CAAA,CAAA,CAAA,iCAAbd,EAAae,QAAbf,EAAagB,UAAAC,WADA,MAAM,CAAA,CAAA,SACnBjB,CAAa,GAAA", "names": ["ProfileActions", "createActionGroup", "source", "events", "fetchProfile", "emptyProps", "fetchProfileSuccess", "props", "fetchProfileError", "updateProfile", "updateProfileSuccess", "updateProfileError", "profileFeatureKey", "initialState", "profile", "profileReducer", "createReducer", "on", "ProfileActions", "fetchProfileSuccess", "updateProfileSuccess", "state", "__spreadProps", "__spreadValues", "selectProfileState", "createFeatureSelector", "profileFeatureKey", "selectProfile", "createSelector", "state", "profile", "ProfileFacade", "constructor", "store$", "profile", "selectSignal", "selectProfile", "profile$", "select", "fetchProfile", "dispatch", "ProfileActions", "updateProfile", "dto", "\u0275\u0275inject", "Store", "factory", "\u0275fac", "providedIn"] }