{"version":3,"file":"zamanuha.slice-Bhmnv3JB.js","sources":["../../../../../../../../app/frontend/entities/zamanuha/models/zamanuha.slice.ts"],"sourcesContent":["import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit'\nimport { AxiosResponse } from 'axios'\n\nimport { ReportPremium } from '~/entities/search/models/search.slice'\nimport searchApi from '~/shared/api/search.api'\nimport { HighlightType } from '~/shared/types/zamanuha'\n\nexport type MostPopularCitiesType = {\n fullName: string\n countryCode: string\n name: string\n publicId: string\n type: string\n highlight: HighlightType & { hyDistrictFilterKey: string }\n}\n// TODO: move to shared\nexport type ZamanuhaType = {\n location: {\n type: string\n publicId: string\n name: string\n fullName: string\n countryCode: string\n polygonsEncoded: string[]\n report: ReportPremium\n highlight?: HighlightType\n mostPopularCities?: MostPopularCitiesType[]\n score?: number\n exampleCity: {\n type: string\n publicId: string\n name: string\n fullName: string\n countryCode: string\n polygonsEncoded: string[]\n highlight?: HighlightType\n }\n }\n}\n// TODO: remove everything\nconst initialState: ZamanuhaType & { isLoading: boolean } = {\n isLoading: false,\n location: {\n type: '',\n publicId: '',\n name: '',\n fullName: '',\n countryCode: '',\n polygonsEncoded: [],\n report: null,\n mostPopularCities: [],\n highlight: {\n hyDistrictYield: 0,\n hyDistrictSaleCount: 0,\n hyDistrictAvgSalePrice: 0,\n lyDistrictYield: 0,\n lyDistrictSaleCount: 0,\n lyDistrictAvgSalePrice: 0,\n },\n exampleCity: {\n type: '',\n publicId: '',\n name: '',\n fullName: '',\n countryCode: '',\n polygonsEncoded: [],\n highlight: {\n hyDistrictYield: 0,\n hyDistrictSaleCount: 0,\n hyDistrictAvgSalePrice: 0,\n lyDistrictYield: 0,\n lyDistrictSaleCount: 0,\n lyDistrictAvgSalePrice: 0,\n },\n },\n },\n}\n\nexport const zamanuhaByCountry = createAsyncThunk(\n 'zamanuha_country/get',\n async (data: { country: string }) => {\n const response: AxiosResponse = await searchApi.searchZamanuhaByCountry(\n data.country\n )\n return response\n }\n)\n\nexport const zamanuhaSlice = createSlice({\n name: 'search',\n initialState,\n reducers: {},\n extraReducers: (builder) => {\n builder.addCase(zamanuhaByCountry.rejected, (state) => {\n state.isLoading = false\n })\n builder.addCase(\n zamanuhaByCountry.fulfilled,\n (state, action: PayloadAction>) => {\n state.isLoading = false\n state.location = action.payload.data.location\n }\n )\n builder.addCase(zamanuhaByCountry.pending, (state) => {\n state.isLoading = true\n })\n },\n})\n\nexport default zamanuhaSlice.reducer\n"],"names":["initialState","zamanuhaByCountry","createAsyncThunk","data","searchApi","zamanuhaSlice","createSlice","builder","state","action","zamanuha"],"mappings":"4HAwCA,MAAMA,EAAsD,CAC1D,UAAW,GACX,SAAU,CACR,KAAM,GACN,SAAU,GACV,KAAM,GACN,SAAU,GACV,YAAa,GACb,gBAAiB,CAAC,EAClB,OAAQ,KACR,kBAAmB,CAAC,EACpB,UAAW,CACT,gBAAiB,EACjB,oBAAqB,EACrB,uBAAwB,EACxB,gBAAiB,EACjB,oBAAqB,EACrB,uBAAwB,CAC1B,EACA,YAAa,CACX,KAAM,GACN,SAAU,GACV,KAAM,GACN,SAAU,GACV,YAAa,GACb,gBAAiB,CAAC,EAClB,UAAW,CACT,gBAAiB,EACjB,oBAAqB,EACrB,uBAAwB,EACxB,gBAAiB,EACjB,oBAAqB,EACrB,uBAAwB,CAC1B,CACF,CACF,CACF,EAEaC,EAAoBC,EAC/B,uBACA,MAAOC,GACyC,MAAMC,EAAU,wBAC5DD,EAAK,OAAA,CAIX,EAEaE,EAAgBC,EAAY,CACvC,KAAM,SACN,aAAAN,EACA,SAAU,CAAC,EACX,cAAgBO,GAAY,CAC1BA,EAAQ,QAAQN,EAAkB,SAAWO,GAAU,CACrDA,EAAM,UAAY,EAAA,CACnB,EACOD,EAAA,QACNN,EAAkB,UAClB,CAACO,EAAOC,IAAuD,CAC7DD,EAAM,UAAY,GACZA,EAAA,SAAWC,EAAO,QAAQ,KAAK,QACvC,CAAA,EAEFF,EAAQ,QAAQN,EAAkB,QAAUO,GAAU,CACpDA,EAAM,UAAY,EAAA,CACnB,CACH,CACF,CAAC,EAEcE,EAAAL,EAAc"}