{ "version": 3, "sources": ["src/app/store/cards/cards.actions.ts", "src/app/modules/cards/card-api.service.ts", "src/app/store/cards/cards.state.ts", "src/app/store/cards/card-item/card-item.actions.ts", "src/app/store/cards/card-item/card-item.state.ts"], "sourcesContent": ["export class GetCards {\n public static readonly type = '[Cards] Get cards';\n}\n", "import {HttpClient} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {Observable} from 'rxjs';\nimport {ConfigurationService} from 'src/app/core/config/configuration.service';\nimport {ICard} from 'src/app/interfaces/card';\nimport {ICardCreateRequest, ICardUpdateRequest} from 'src/app/interfaces/card.request';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardApiService {\n\n constructor(\n private http: HttpClient,\n private config: ConfigurationService,\n ) { }\n\n public getAll(): Observable {\n return this.http.get(`${this.config.get('profileApiUrl')}/cards`);\n }\n\n public getById(identifier: string): Observable {\n return this.http.get(`${this.config.get('profileApiUrl')}/cards/${identifier}`);\n }\n\n public create(card: ICardCreateRequest): Observable {\n return this.http.post(`${this.config.get('profileApiUrl')}/cards`, card);\n }\n\n public update(card: ICardUpdateRequest): Observable {\n const {identifier} = card;\n return this.http.put(`${this.config.get('profileApiUrl')}/cards/${identifier}`, card);\n }\n\n public delete(identifier: string): Observable {\n return this.http.delete(`${this.config.get('profileApiUrl')}/cards/${identifier}`);\n }\n}\n", "import {Action, Selector, State, StateContext} from '@ngxs/store';\nimport {Injectable} from '@angular/core';\nimport {firstValueFrom} from 'rxjs';\nimport {errorHandler, httpErrorToString, IErrorHandlerArgs} from 'src/app/shared/helpers/error-handler';\nimport {AppInsightsService} from 'src/app/core/app-insights/app-insights.service';\nimport {ICard} from 'src/app/interfaces/card';\nimport {CardApiService} from 'src/app/modules/cards/card-api.service';\nimport {GetCards} from 'src/app/store/cards/cards.actions';\n\nexport interface ICardsState {\n data: ICard[];\n loading: boolean;\n hasValue: boolean;\n error: any;\n}\n\n@State({\n name: 'cards',\n defaults: {\n data: [],\n loading: false,\n hasValue: false,\n error: null,\n },\n})\n@Injectable()\nexport class CardsState {\n private readonly _errorHandlerArgsInit: IErrorHandlerArgs = {\n error: null,\n appInsightsSrv: this.insights,\n scope: 'CardsState'\n };\n constructor(\n private cardsApi: CardApiService,\n private insights: AppInsightsService,\n ) { }\n\n @Selector()\n public static cards(state: ICardsState): ICard[] {\n return state.data;\n }\n\n @Selector()\n public static loading(state: ICardsState): boolean {\n return state.loading;\n }\n\n @Selector()\n public static hasValue(state: ICardsState): boolean {\n return state.hasValue;\n }\n\n @Selector()\n public static error(state: ICardsState): any {\n return state.error;\n }\n\n @Action(GetCards)\n public async getParties(ctx: StateContext): Promise {\n ctx.patchState({loading: true, error: null});\n try {\n const cards: ICard[] = await firstValueFrom(this.cardsApi.getAll());\n ctx.patchState({\n data: cards,\n hasValue: !!cards?.length,\n loading: false,\n });\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n loading: false,\n error: httpErrorToString(error),\n });\n }\n }\n}\n", "export class GetCard {\n public static readonly type = '[CardItem] Get card by id';\n constructor(public identifier: string) {}\n}\n\nexport class CreateCard {\n public static readonly type = '[CardItem] Create card';\n constructor() {}\n}\n\nexport class EditCard {\n public static readonly type = '[CardItem] Edit card';\n constructor(public identifier: string) {}\n}\n\nexport class DeleteCard {\n public static readonly type = '[CardItem] Delete party item';\n constructor(public identifier: string) {}\n}\n\nexport class ResetCardForm {\n public static readonly type = '[CardItem] Reset card form';\n}\n\nexport class GoToCreateCard {\n public static readonly type = '[CardItem] Go to create card';\n}\n\nexport class GoToEditCard {\n public static readonly type = '[CardItem] Go to edit card';\n constructor(public identifier: string) {}\n}\n\nexport class GoToDeleteCard {\n public static readonly type = '[CardItem] Go to delete card';\n constructor(public identifier: string) {}\n}", "import {Action, Selector, State, StateContext, Store} from '@ngxs/store';\nimport {Injectable} from '@angular/core';\nimport {ResetForm, UpdateFormValue} from '@ngxs/form-plugin';\nimport {Navigate} from '@ngxs/router-plugin';\nimport {firstValueFrom} from 'rxjs';\nimport {AppInsightsService} from 'src/app/core/app-insights/app-insights.service';\nimport {errorHandler, httpErrorToString, IErrorHandlerArgs} from 'src/app/shared/helpers/error-handler';\nimport {ICard} from 'src/app/interfaces/card';\nimport {CardApiService} from 'src/app/modules/cards/card-api.service';\nimport {CreateCard, DeleteCard, EditCard, GetCard, GoToCreateCard, GoToDeleteCard, GoToEditCard, ResetCardForm} from 'src/app/store/cards/card-item/card-item.actions';\nimport {ICardCreateRequest} from 'src/app/interfaces/card.request';\n\nexport interface ICardItemState {\n data: ICard;\n dataForm: {\n model: ICardCreateRequest;\n };\n loading: boolean;\n hasValue: boolean;\n error: any;\n}\n\nconst EMPTY_CARD: ICardCreateRequest = {\n name: '',\n additionalType: '',\n cardNumber: '',\n additionalProperty: [],\n};\n\n@State({\n name: 'cardItem',\n defaults: {\n data: null,\n dataForm: {\n model: EMPTY_CARD,\n },\n loading: false,\n hasValue: false,\n error: null,\n },\n})\n@Injectable()\nexport class CardItemState {\n private readonly _errorHandlerArgsInit: IErrorHandlerArgs = {\n error: null,\n appInsightsSrv: this.insights,\n scope: 'CardItemState'\n };\n constructor(\n private cardsApi: CardApiService,\n private store: Store,\n private insights: AppInsightsService,\n ) { }\n\n @Selector()\n public static card(state: ICardItemState): ICard {\n return state.data;\n }\n\n @Selector()\n public static loading(state: ICardItemState): boolean {\n return state.loading;\n }\n\n @Selector()\n public static hasValue(state: ICardItemState): boolean {\n return state.hasValue;\n }\n\n @Selector()\n public static error(state: ICardItemState): any {\n return state.error;\n }\n\n @Action(ResetCardForm)\n public resetCardForm(): void {\n this.store.dispatch(new ResetForm({path: 'cardItem.dataForm'}));\n }\n\n @Action(GetCard)\n public async getCard(ctx: StateContext, {identifier}: GetCard): Promise {\n const identifierInState = ctx.getState()?.data?.identifier;\n if (!!identifierInState && identifierInState === identifier) {\n return ctx.getState();\n }\n ctx.patchState({loading: true, error: null});\n try {\n const card: any = await firstValueFrom(this.cardsApi.getById(identifier));\n \n this.store.dispatch(\n new UpdateFormValue({\n path: 'cardItem.dataForm',\n value: card,\n })\n );\n ctx.patchState({\n data: card,\n hasValue: !!card,\n loading: false,\n error: null,\n });\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n data: null,\n hasValue: false,\n loading: false,\n error: httpErrorToString(error),\n });\n }\n return ctx.getState();\n }\n\n @Action(CreateCard)\n public async createCard(ctx: StateContext): Promise {\n ctx.patchState({loading: true, error: null});\n try {\n const cardFormModel = ctx.getState().dataForm.model;\n\n console.log('cardFormModel', cardFormModel);\n \n\n const card = await firstValueFrom(this.cardsApi.create(cardFormModel));\n ctx.patchState({\n data: card,\n hasValue: !!card,\n loading: false,\n error: null,\n });\n \n this.store.dispatch(new Navigate([`/cards/${card.identifier}`]));\n\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n data: null,\n hasValue: false,\n loading: false,\n error: httpErrorToString(error),\n });\n }\n return ctx.getState();\n }\n\n @Action(EditCard)\n public async editCard(ctx: StateContext, {identifier}: EditCard): Promise {\n ctx.patchState({loading: true, error: null});\n try {\n const cardFormModel = ctx.getState().dataForm.model;\n const updateRequest = {...cardFormModel, identifier};\n const card: ICard = await firstValueFrom(this.cardsApi.update(updateRequest));\n ctx.patchState({\n data: card,\n hasValue: !!card,\n loading: false,\n error: null,\n });\n\n this.store.dispatch(new Navigate([`/cards/${card.identifier}`]));\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n data: null,\n hasValue: false,\n loading: false,\n error: httpErrorToString(error),\n });\n }\n\n return ctx.getState();\n }\n\n @Action(DeleteCard)\n public async deleteParty(ctx: StateContext, {identifier}: DeleteCard): Promise {\n ctx.patchState({loading: true});\n try {\n await firstValueFrom(this.cardsApi.delete(identifier));\n ctx.patchState({data: null});\n this.store.dispatch(\n new ResetForm({\n path: 'cardItem.dataForm',\n })\n );\n this.store.dispatch(new Navigate([`/cards`]));\n } catch (error) {\n errorHandler({...this._errorHandlerArgsInit, error});\n ctx.patchState({\n loading: false,\n error: httpErrorToString(error),\n });\n }\n return ctx.getState();\n }\n\n @Action(GoToCreateCard)\n public goToCreateCard(ctx: StateContext): void {\n ctx.patchState({data: null, hasValue: false});\n this.store.dispatch(\n new UpdateFormValue({\n path: 'cardItem.dataForm',\n value: EMPTY_CARD,\n })\n );\n this.store.dispatch(new Navigate([`/cards/create`]));\n }\n \n @Action(GoToEditCard)\n public async goToEditCard(ctx: StateContext, {identifier}: GoToDeleteCard): Promise {\n const ctxData = ctx.getState().data;\n let card = ctxData;\n\n if (ctxData?.identifier !== identifier) {\n const tempState = await firstValueFrom(this.store.dispatch(new GetCard(identifier)));\n card = tempState.data;\n }\n this.store.dispatch(\n new UpdateFormValue({\n path: 'cardItem.dataForm',\n value: card,\n })\n );\n this.store.dispatch(new Navigate([`/cards/${identifier}/edit`]));\n }\n\n @Action(GoToDeleteCard)\n public goToDeleteCard(ctx: StateContext, {identifier}: GoToDeleteCard): void {\n this.store.dispatch(new Navigate([`/cards/${identifier}/delete`]));\n }\n}\n"], "mappings": "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", "names": ["GetCards", "type", "CardApiService", "constructor", "http", "config", "getAll", "get", "getById", "identifier", "create", "card", "post", "update", "put", "delete", "\u0275\u0275inject", "HttpClient", "ConfigurationService", "factory", "\u0275fac", "providedIn", "CardsState", "constructor", "cardsApi", "insights", "_errorHandlerArgsInit", "error", "appInsightsSrv", "scope", "cards", "state", "data", "loading", "hasValue", "getParties", "ctx", "__async", "patchState", "firstValueFrom", "getAll", "length", "errorHandler", "__spreadProps", "__spreadValues", "httpErrorToString", "\u0275\u0275inject", "CardApiService", "AppInsightsService", "factory", "\u0275fac", "__decorate", "Action", "GetCards", "Selector", "State", "name", "defaults", "GetCard", "type", "constructor", "identifier", "CreateCard", "EditCard", "DeleteCard", "ResetCardForm", "GoToCreateCard", "GoToEditCard", "GoToDeleteCard", "EMPTY_CARD", "name", "additionalType", "cardNumber", "additionalProperty", "CardItemState", "constructor", "cardsApi", "store", "insights", "_errorHandlerArgsInit", "error", "appInsightsSrv", "scope", "card", "state", "data", "loading", "hasValue", "resetCardForm", "dispatch", "ResetForm", "path", "getCard", "ctx", "_1", "__async", "identifier", "identifierInState", "getState", "patchState", "firstValueFrom", "getById", "UpdateFormValue", "value", "errorHandler", "__spreadProps", "__spreadValues", "httpErrorToString", "createCard", "cardFormModel", "dataForm", "model", "console", "log", "create", "Navigate", "editCard", "updateRequest", "update", "deleteParty", "delete", "goToCreateCard", "goToEditCard", "ctxData", "GetCard", "goToDeleteCard", "\u0275\u0275inject", "CardApiService", "Store", "AppInsightsService", "factory", "\u0275fac", "__decorate", "Action", "ResetCardForm", "CreateCard", "EditCard", "DeleteCard", "GoToCreateCard", "GoToEditCard", "GoToDeleteCard", "Selector", "State", "defaults"] }