\n {label}\n )\n : label\n }\n control={\n \n }\n />\n )\n\n}\n\nexport default CheckboxWrapper;","import { emptySplitApi } from './index'\n\nexport const customDatabaseApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getRequiredOptionalFields: builder.mutation({\n query: (model) => ({\n url: `api/v1/foundation-service/custom-database/required-optional-fields`,\n method: \"GET\"\n }),\n }),\n confirmImportCustomDatabase: builder.mutation({\n query: (model) => ({\n url: `api/v1/foundation-service/custom-database/confirm-import`,\n method: \"POST\",\n body: model\n }),\n }),\n getCustomDatabaseList: builder.mutation({\n query: (model) => ({\n url: `api/v1/foundation-service/custom-database/list?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'importedDate'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\"\n }),\n }),\n deleteCustomDatabase: builder.mutation({\n query: (customDatabaseId) => ({\n url: `api/v1/foundation-service/custom-database/delete/${customDatabaseId}`,\n method: \"DELETE\"\n }),\n }),\n getFileList: builder.mutation({\n query: () => ({\n url: `api/v1/foundation-service/custom-database/file-list`,\n method: \"GET\"\n }),\n }),\n getMappedFields: builder.mutation({\n query: (customItemId) => ({\n url: `api/v1/foundation-service/custom-database/mapped-fields/${customItemId}`,\n method: \"GET\"\n }),\n }),\n getCustomDatabaseProvinceOrStateList: builder.mutation({\n query: (customDatabaseId) => ({\n url: `api/v1/foundation-service/custom-database/province-or-state/${customDatabaseId}`,\n method: \"GET\"\n }),\n }),\n getCustomDatabaseCityList: builder.mutation({\n query: (model) => ({\n url: `api/v1/foundation-service/custom-database/city/${model.customDatabaseId}`,\n method: \"POST\",\n body: [...model.provinceOrStateList]\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetRequiredOptionalFieldsMutation,\n useConfirmImportCustomDatabaseMutation,\n useGetCustomDatabaseListMutation,\n useDeleteCustomDatabaseMutation,\n useGetFileListMutation,\n useGetMappedFieldsMutation,\n useGetCustomDatabaseProvinceOrStateListMutation,\n useGetCustomDatabaseCityListMutation\n} = customDatabaseApi;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { searchEngineApi } from \"Services/SearchEngineService\";\nimport { userProjectApi } from \"Services/UserProjectService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { sectorApi } from \"Services/SectorService\";\nimport { projectFundersApi } from \"Services/ProjectFundersService\";\n\nexport const initialState = {\n collapseFilters: false,\n toggleAdvancedSearch: false,\n toggleExpandSearchBar: false,\n userProject: {\n id: null,\n value: null,\n label: null\n },\n userProjectList: [],\n searchBar: {\n any: '',\n all: '',\n none: '',\n directorName: '',\n foundationName: '',\n yearList: [],\n stemmingSearch: false,\n showFundersOnce: false,\n showMultiGrant: false,\n searchButton: '',\n customDatabaseFileId: '',\n customDatabaseContactName: '',\n customDatabaseOrganizationName: ''\n },\n searchFilters: {\n fromCountry: [],\n toCountry: [],\n provinceOrState: [],\n city: [],\n years: [],\n sector: [],\n subSector: [],\n foundation: ['Public & Private'],\n avgGrant: [],\n ratingValue: 0,\n grantSize: [0, 6],\n assertSize: [0, 6],\n },\n additionalFilters: {\n hasOnlineApplication: false,\n hasAdditionalInformation: false,\n doesNotHaveWebsite: false,\n doesHaveWebsite: false,\n hasPhoneNumber: false,\n hasEmail: false,\n showDesignedGiven: false\n },\n foundationList: [\n { id: 0, name: 'All', checked: false },\n { id: 1, name: 'Public & Private', checked: true },\n { id: 2, name: 'Public', checked: false },\n { id: 3, name: 'Private', checked: false },\n { id: 4, name: 'Charitable Trust', checked: false },\n ],\n countryList: [],\n provinceOrStateList: [],\n cityList: [],\n sectorList: [],\n subSectorList: [],\n avgGrantList: [\n { id: 2, name: '12 or more', checked: false },\n { id: 3, name: '8 or more', checked: false },\n { id: 4, name: '4 or more', checked: false },\n ],\n yearList: [\n ...Array(2021 - 2014 + 1)\n .fill()\n .map((_, idx) => ({ \n id: idx,\n name: (2014 + idx).toString(),\n checked: false\n }))\n ],\n categoryList: [\n { id: 1, name: 'Religion', checked: false },\n { id: 2, name: 'Social & Human Services', checked: false },\n { id: 3, name: 'Education', checked: false },\n { id: 4, name: 'Community', checked: false },\n { id: 5, name: 'Art & Culture', checked: false },\n { id: 6, name: 'Sports & Recreation', checked: false },\n { id: 7, name: 'Animal Welfare', checked: false },\n ],\n pagedList: {\n pageNumber: 1,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'doneename',\n orderDirection: 'desc',\n items: []\n },\n searchByNamePagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'name',\n orderDirection: 'asc',\n items: []\n },\n searchByDirectorPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'firstName',\n orderDirection: 'desc',\n items: []\n },\n searchByYearPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'accountName',\n orderDirection: 'asc',\n items: []\n },\n searchByRatingPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'accountName',\n orderDirection: 'asc',\n items: []\n },\n searchByCustomPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'firstName',\n orderDirection: 'asc',\n items: []\n },\n projectFundersProfileIdList: []\n};\n\nconst searchEngineSlice = createSlice({\n name: \"search-engine\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n if (action.payload !== null) {\n state.userProject = state.userProjectList.find(o => o.id === action.payload.id);\n }\n },\n handleChangeCountry: (state, action) => {\n state.countryList.forEach(country => {\n if (country.code === action.payload.code) {\n country.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.fromCountry.push(action.payload.code);\n }\n else {\n state.searchFilters.fromCountry = state.searchFilters.fromCountry.filter(o => o !== action.payload.code); \n }\n }\n });\n },\n handleChangeToCountry: (state, action) => {\n state.countryList.forEach(country => {\n if (country.code === action.payload.code) {\n country.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.toCountry.push(action.payload.code);\n }\n else {\n state.searchFilters.toCountry = state.searchFilters.toCountry.filter(o => o !== action.payload.code); \n }\n }\n });\n },\n handleChangeProvinceOrState: (state, action) => {\n state.provinceOrStateList.forEach(provinceOrState => {\n if (provinceOrState.code === action.payload.code) {\n provinceOrState.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.provinceOrState.push(action.payload.code);\n }\n else {\n state.searchFilters.provinceOrState = state.searchFilters.provinceOrState.filter(o => o !== action.payload.code); \n }\n }\n });\n },\n handleChangeCity: (state, action) => {\n state.cityList.forEach(city => {\n if (city.name === action.payload.name) {\n city.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.city.push(action.payload.name);\n }\n else {\n state.searchFilters.city = state.searchFilters.city.filter(o => o !== action.payload.name); \n }\n }\n });\n },\n handleChangeSector: (state, action) => {\n state.sectorList.forEach(sector => {\n if (sector.sectorName === action.payload.sectorName) {\n sector.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.sector.push(action.payload.sectorName);\n }\n else {\n state.searchFilters.sector = state.searchFilters.sector.filter(o => o !== action.payload.sectorName); \n }\n }\n });\n },\n handleChangeSubSector: (state, action) => {\n state.subSectorList.forEach(sector => {\n if (sector.subSectorName === action.payload.subSectorName) {\n sector.checked = action.payload.checked;\n\n if (action.payload.checked) {\n state.searchFilters.subSector.push(action.payload.subSectorName);\n }\n else {\n state.searchFilters.subSector = state.searchFilters.subSector.filter(o => o !== action.payload.subSectorName); \n }\n }\n });\n },\n setCollapseFilters: (state, action) => {\n state.collapseFilters = action.payload;\n },\n handleChangeSearchBar: (state, action) => {\n state.searchBar[action.payload.field] = action.payload.value;\n },\n handleCheckFilters: (state, action) => {\n\n if (action.payload.checked) {\n state.searchFilters[action.payload.field].push(action.payload.value);\n }\n else {\n state.searchFilters[action.payload.field] = state.searchFilters[action.payload.field].filter(o => o !== action.payload.value);\n }\n },\n handleCheckYearList: (state, action) => {\n state.searchBar.yearList = action.payload;\n },\n handleChangeAdditionalFilters: (state, action) => {\n state.additionalFilters[action.payload.field] = action.payload.checked;\n },\n handleToggleAdvancedSearch: (state, action) => {\n state.toggleAdvancedSearch = action.payload;\n },\n handleToggleExpandSearchBar: (state, action) => {\n state.toggleExpandSearchBar = action.payload;\n },\n handleRatingValue: (state, action) => {\n state.searchFilters.ratingValue = action.payload;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleAssertSize: (state, action) => {\n state.searchFilters.assertSize = action.payload;\n },\n handleGrantSize: (state, action) => {\n state.searchFilters.grantSize = action.payload;\n },\n handleClearForm: (state, action) => {\n state.searchBar = {...initialState.searchBar };\n state.searchFilters = {...initialState.searchFilters};\n state.additionalFilters = {...initialState.additionalFilters};\n\n state.countryList = state.countryList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.provinceOrStateList = state.provinceOrStateList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.cityList = state.cityList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.sectorList = state.sectorList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.subSectorList = state.subSectorList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.foundationList = [\n { id: 0, name: 'All', checked: false },\n { id: 1, name: 'Public & Private', checked: true },\n { id: 2, name: 'Public', checked: false },\n { id: 3, name: 'Private', checked: false },\n { id: 4, name: 'Charitable Trust', checked: false },\n ];\n },\n handleLoadingFields: (state, action) => {\n state.collapseFilters = true;\n state.searchBar = {...initialState.searchBar, ...action.payload.searchBar };\n state.searchFilters = {...initialState.searchFilters, ...action.payload.searchFilters };\n state.additionalFilters = {...initialState.additionalFilters, ...action.payload.additionalFilters };\n\n const grantSize = action.payload.searchFilters?.grantSize || [0, 50];\n const assertSize = action.payload.searchFilters?.assertSize || [0, 50];\n\n if (action.payload.searchBar.all !== '') {\n state.toggleExpandSearchBar = true;\n }\n\n if (action.payload.searchBar.none !== '') {\n state.toggleExpandSearchBar = true;\n }\n\n if (action.payload.searchBar.foundationName !== '') {\n state.toggleExpandSearchBar = true;\n }\n\n if (action.payload.searchFilters.foundation?.length > 0) {\n state.toggleAdvancedSearch = true;\n }\n\n if (grantSize[0] !== 0 || grantSize[1] !== 50) {\n state.toggleAdvancedSearch = true;\n }\n\n if (assertSize[0] !== 0 || assertSize[1] !== 50) {\n state.toggleAdvancedSearch = true;\n }\n\n if (action.payload.searchFilters.avgGrant?.length > 0) {\n state.toggleAdvancedSearch = true;\n }\n },\n handleClearList: (state, action) => {\n state.pagedList = { ...initialState.pagedList };\n state.searchByNamePagedList = { ...initialState.searchByNamePagedList };\n state.searchByYearPagedList = { ...initialState.searchByYearPagedList };\n state.searchByRatingPagedList = { ...initialState.searchByRatingPagedList };\n state.searchByCustomPagedList = { ...initialState.searchByCustomPagedList };\n },\n handleAddFundersToProject: (state, action) => {\n action.payload.forEach(projectFunders => {\n state.projectFundersProfileIdList.push(projectFunders.profileId);\n });\n },\n\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n searchEngineApi.endpoints.searchBySearchType.matchFulfilled, (state, action) => {\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByGivingHistory.matchFulfilled, (state, action) => {\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByName.matchFulfilled, (state, action) => {\n state.searchByNamePagedList.pageNumber = action.payload.pageNumber;\n state.searchByNamePagedList.pageSize = action.payload.pageSize;\n state.searchByNamePagedList.pageCount = action.payload.pageCount;\n state.searchByNamePagedList.totalCount = action.payload.totalCount;\n state.searchByNamePagedList.orderField = action.payload.orderField;\n state.searchByNamePagedList.orderDirection = action.payload.orderDirection;\n state.searchByNamePagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByDirector.matchFulfilled, (state, action) => {\n state.searchByDirectorPagedList.pageNumber = action.payload.pageNumber;\n state.searchByDirectorPagedList.pageSize = action.payload.pageSize;\n state.searchByDirectorPagedList.pageCount = action.payload.pageCount;\n state.searchByDirectorPagedList.totalCount = action.payload.totalCount;\n state.searchByDirectorPagedList.orderField = action.payload.orderField;\n state.searchByDirectorPagedList.orderDirection = action.payload.orderDirection;\n state.searchByDirectorPagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByYear.matchFulfilled, (state, action) => {\n state.searchByYearPagedList.pageNumber = action.payload.pageNumber;\n state.searchByYearPagedList.pageSize = action.payload.pageSize;\n state.searchByYearPagedList.pageCount = action.payload.pageCount;\n state.searchByYearPagedList.totalCount = action.payload.totalCount;\n state.searchByYearPagedList.orderField = action.payload.orderField;\n state.searchByYearPagedList.orderDirection = action.payload.orderDirection;\n state.searchByYearPagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByRating.matchFulfilled, (state, action) => {\n state.searchByRatingPagedList.pageNumber = action.payload.pageNumber;\n state.searchByRatingPagedList.pageSize = action.payload.pageSize;\n state.searchByRatingPagedList.pageCount = action.payload.pageCount;\n state.searchByRatingPagedList.totalCount = action.payload.totalCount;\n state.searchByRatingPagedList.orderField = action.payload.orderField;\n state.searchByRatingPagedList.orderDirection = action.payload.orderDirection;\n state.searchByRatingPagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.searchByCustom.matchFulfilled, (state, action) => {\n state.searchByCustomPagedList.pageNumber = action.payload.pageNumber;\n state.searchByCustomPagedList.pageSize = action.payload.pageSize;\n state.searchByCustomPagedList.pageCount = action.payload.pageCount;\n state.searchByCustomPagedList.totalCount = action.payload.totalCount;\n state.searchByCustomPagedList.orderField = action.payload.orderField;\n state.searchByCustomPagedList.orderDirection = action.payload.orderDirection;\n state.searchByCustomPagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n userProjectApi.endpoints.getCurrentList.matchFulfilled, (state, action) => {\n state.userProjectList = [];\n state.userProject = initialState.userProject;\n\n if (action.payload.length !== 0) {\n\n state.userProjectList = action.payload.map(item => ({\n id: item.id,\n value: item.name,\n label: item.name\n }));\n\n state.userProject = state.userProjectList[0];\n }\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryList.matchFulfilled, (state, action) => {\n state.countryList = action.payload.map(item => ({\n ...item,\n checked: false\n }));\n\n action.payload.forEach(country => {\n country.provinceOrStateList.forEach(provinceOrState => {\n state.provinceOrStateList.push({\n ...provinceOrState,\n checked: false\n });\n });\n });\n }\n )\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFundersProfileId.matchFulfilled, (state, action) => {\n state.projectFundersProfileIdList = action.payload;\n }\n ) \n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.cityList = action.payload.map(item => ({\n ...item,\n checked: false\n }));\n }\n )\n .addMatcher(\n sectorApi.endpoints.getSectorList.matchFulfilled, (state, action) => {\n state.sectorList = action.payload.map(item => ({\n ...item,\n checked: false\n }));\n }\n )\n .addMatcher(\n sectorApi.endpoints.getSubSectorListBySectorIds.matchFulfilled, (state, action) => {\n state.subSectorList = action.payload.map(item => ({\n ...item,\n checked: false\n }));\n }\n )\n }\n});\n\nexport const {\n handleChangeUserProject,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleChangeCity,\n handleChangeSector,\n handleChangeSubSector,\n handleToggleAdvancedSearch,\n handleToggleExpandSearchBar,\n handleRatingValue,\n handleChangeSearchBar,\n handleCheckFilters,\n handleChangeAdditionalFilters,\n handleModelErrors,\n handleAssertSize,\n handleGrantSize,\n handleLoadingFields,\n handleClearForm,\n handleClearList,\n setCollapseFilters,\n handleCheckYearList,\n handleAddFundersToProject\n} = searchEngineSlice.actions;\n\nexport default searchEngineSlice.reducer;\n","//v1 paths\nexport const FOUNDATION_PATH = 'main/foundation-profile';\nexport const FOUNDATION_CA_PATH = 'main/foundation-profile-ca';\nexport const CUSTOM_PROFILE_PATH = 'main/custom-profile';\n\n//search engines\nexport const GIVING_HISTORY_PATH = 'main/search/by-giving-history';\nexport const GIVING_HISTORY_CA_PATH = 'main/search/giving-history-ca';\nexport const KEYWORD_PATH = 'main/search/by-keyword';\nexport const NAME_PATH = 'main/search/by-name';\nexport const NAME_CA_PATH = 'main/search/name-ca';\nexport const DIRECTOR_PATH = 'main/search/by-director';\nexport const DIRECTOR_CA_PATH = 'main/search/directors-ca';\nexport const YEAR_PATH = 'main/search/by-year';\nexport const YEAR_CA_PATH = 'main/search/year-ca';\nexport const CUSTOM_PATH = 'main/search/by-custom';\nexport const INTERNATIONAL_FUNDING_PATH = 'main/search/by-international-funding';\n\n//v2 paths\nexport const FOUNDATION_V2_PATH = 'main/foundation-profile-v2';\nexport const FOUNDATION_CA_V2_PATH = 'main/foundation-profile-ca-v2';\nexport const FAVORITES_PATH = '/main/manage-funders';\nexport const CUSTOM_PROFILE_V2_PATH = 'main/custom-profile-v2';\n\n//search engines\nexport const GIVING_HISTORY_V2_PATH = 'main/search/giving-history-v2';\nexport const GIVING_HISTORY_CA_V2_PATH = 'main/search/giving-history-ca-v2';\nexport const KEYWORD_V2_PATH = 'main/search/by-keyword-v2';\nexport const NAME_V2_PATH = 'main/search/by-name-v2';\nexport const NAME_CA_V2_PATH = 'main/search/name-ca-v2';\nexport const DIRECTOR_V2_PATH = 'main/search/by-director-v2';\nexport const DIRECTOR_CA_V2_PATH = 'main/search/directors-ca-v2';\nexport const YEAR_V2_PATH = 'main/search/by-year-v2';\nexport const YEAR_CA_V2_PATH = 'main/search/year-ca-v2';\nexport const CUSTOM_V2_PATH = 'main/search/by-custom-v2';\nexport const INTERNATIONAL_FUNDING_V2_PATH = 'main/search/by-international-funding-v2';\n\n\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { adminApi } from \"Services/AdminService\";\n\nexport const initialState = {\n loadingList: false,\n openEnableDisableDialog: false,\n openExpirationDateDialog: false,\n openPipedriveImportDialog: false,\n userId: \"\",\n pipedriveOrganizationCode: {\n value: \"\",\n error: \"\",\n },\n isMasterUser: false,\n expirationDateDialog: {\n licenseExpirationDate: \"\",\n licenseDescription: \"\",\n expired: false,\n subscriptionPlanName: {\n value: \"\",\n error: \"\",\n },\n subscriptionPlanList: [],\n },\n search: {\n searchTerm: \"\",\n status: \"\",\n },\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: \"createdAt\",\n orderDirection: \"desc\",\n items: [],\n },\n additionalUsersList: [0, 1, 2, 3, 4, 5, 10, 20],\n bestowAccount: {\n openPopup: false,\n userId: \"\",\n userName: \"\",\n organizationName: \"\",\n additionalUsersAmount: 0,\n licenseAmount: 0,\n },\n restoreAccount: {\n openPopup: false,\n userId: \"\",\n userName: \"\",\n },\n reportUsage: {\n openPopup: false,\n userName: \"\",\n },\n licenses: {\n openPopup: false,\n licensesList: [],\n accountInfo: {},\n },\n salesDemoTemplate: {\n openPopup: false,\n userId: \"\",\n userName: \"\",\n },\n accessToken: {\n openPopup: false,\n userId: \"\",\n hashToken: \"\",\n expirationTime: \"\",\n createdAt: \"\",\n adminUserName: \"\",\n hasCreated: false,\n isExpired: false\n }\n};\n\nconst manageAccountSlice = createSlice({\n name: \"manage-account\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state.search[action.payload.field] = action.payload.value;\n },\n handleChangeField: (state, action) => {\n state[action.payload.field].error = \"\";\n state[action.payload.field].value = action.payload.value;\n },\n handleOpenExpirationDateDialog: (state, action) => {\n state.userId = action.payload;\n state.openExpirationDateDialog = true;\n },\n handleCloseExpirationDateDialog: (state, action) => {\n state.userId = \"\";\n state.openExpirationDateDialog = false;\n },\n handleChangeSubscriptionPlanDialog: (state, action) => {\n state.expirationDateDialog.subscriptionPlanName.value = action.payload;\n state.expirationDateDialog.subscriptionPlanName.error = \"\";\n state.expirationDateDialog.expired = false;\n state.expirationDateDialog.licenseExpirationDate =\n state.expirationDateDialog.subscriptionPlanList.find(\n (o) => o.subscriptionPlanName === action.payload\n ).expirationDate;\n },\n handleOpenEnableDisableDialog: (state, action) => {\n state.userId = action.payload.id;\n state.isMasterUser = action.payload.isMasterUser;\n state.openEnableDisableDialog = true;\n },\n handleCloseEnableDisableDialog: (state, action) => {\n state.userId = \"\";\n state.isMasterUser = false;\n state.openEnableDisableDialog = false;\n },\n handleOpenPipedriveImportDialog: (state, action) => {\n state.pipedriveOrganizationCode.value = \"\";\n state.pipedriveOrganizationCode.error = \"\";\n state.openPipedriveImportDialog = true;\n },\n handleClosePipedriveImportDialog: (state, action) => {\n state.openPipedriveImportDialog = false;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => {\n state[field].error = errors[0];\n });\n },\n handleOpenBestowAccount: (state, action) => {\n state.bestowAccount.openPopup = true;\n state.bestowAccount.userId = action.payload.id;\n state.bestowAccount.userName = action.payload.userName;\n state.bestowAccount.organizationName = action.payload.organization;\n state.bestowAccount.licenseAmount = action.payload.licenseAmount;\n state.bestowAccount.additionalUsersAmount =\n action.payload.additionalUsersAmount;\n },\n handleCloseBestowAccount: (state, action) => {\n state.bestowAccount.openPopup = false;\n },\n handleOpenRestoreAccountDialog: (state, action) => {\n state.restoreAccount.userId = action.payload.id;\n state.restoreAccount.userName = action.payload.userName;\n state.restoreAccount.openPopup = true;\n },\n handleCloseRestoreAccountDialog: (state, action) => {\n state.restoreAccount.userId = \"\";\n state.restoreAccount.userName = \"\";\n state.restoreAccount.openPopup = false;\n },\n handleOpenUsageReportDialog: (state, action) => {\n state.reportUsage.openPopup = true;\n state.reportUsage.userName = action.payload.internalUserName;\n },\n handleCloseUsageReportDialog: (state, action) => {\n state.reportUsage.openPopup = false;\n state.reportUsage.userName = \"\";\n },\n handleToggleLicensesDialog: (state, action) => {\n state.licenses.openPopup = !state.licenses.openPopup;\n state.licenses.accountInfo = state.licenses.openPopup\n ? action.payload\n : {};\n state.licenses.licensesList = [];\n },\n handleOpenSalesDemoTemplateDialog: (state, action) => {\n state.salesDemoTemplate.openPopup = true;\n state.salesDemoTemplate.userId = action.payload.id;\n state.salesDemoTemplate.userName = action.payload.userName;\n },\n handleCloseSalesDemoTemplateDialog: (state, action) => {\n state.salesDemoTemplate.openPopup = false;\n state.salesDemoTemplate.userId = \"\";\n state.salesDemoTemplate.userName = \"\";\n },\n handleOpenAccessTokenDialog: (state, action) => {\n state.accessToken.openPopup = true;\n state.accessToken.userId = action.payload.id;\n state.accessToken.hashToken = \"\";\n },\n handleCloseAccessTokenDialog: (state, action) => {\n state.accessToken.openPopup = false;\n },\n handleClearTokenDialog: (state, action) => {\n state.accessToken.userId = \"\";\n state.accessToken.hashToken = \"\";\n state.accessToken.expirationTime = \"\";\n state.accessToken.createdAt = \"\";\n state.accessToken.adminUserName = \"\";\n state.accessToken.hasCreated = false;\n state.accessToken.isExpired = false;\n },\n handleCreateAccessTokenSuccess: (state, action) => {\n state.accessToken.hashToken = action.payload;\n state.accessToken.hasCreated = false;\n },\n handleGetAccessTokenSuccess: (state, action) => {\n state.accessToken.hashToken = \"\";\n state.accessToken.expirationTime = action.payload.expirationTime;\n state.accessToken.createdAt = action.payload.createdAt;\n state.accessToken.adminUserName = action.payload.adminUserName;\n state.accessToken.hasCreated = action.payload.hasCreated;\n state.accessToken.isExpired = action.payload.isExpired;\n }\n\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n adminApi.endpoints.getAllUsersPagedList.matchFulfilled,\n (state, action) => {\n state.loadingList = false;\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n adminApi.endpoints.getAllUsersPagedList.matchPending,\n (state, action) => {\n state.loadingList = true;\n }\n )\n .addMatcher(\n adminApi.endpoints.getAllUsersPagedList.matchRejected,\n (state, action) => {\n state.loadingList = false;\n }\n )\n .addMatcher(\n adminApi.endpoints.getExpirationDateDetails.matchFulfilled,\n (state, action) => {\n state.expirationDateDialog.licenseExpirationDate =\n action.payload.licenseExpirationDate;\n state.expirationDateDialog.licenseDescription =\n action.payload.licenseDescription;\n state.expirationDateDialog.expired = action.payload.expired;\n state.expirationDateDialog.subscriptionPlanName.value =\n action.payload.subscriptionPlanName;\n state.expirationDateDialog.subscriptionPlanName.error = \"\";\n state.expirationDateDialog.subscriptionPlanList =\n action.payload.subscriptionPlanList;\n }\n )\n .addMatcher(\n adminApi.endpoints.getOrganizationLicenses.matchFulfilled,\n (state, action) => {\n let hyphens = action.payload.data.filter(\n (item) => item.userName === \"-\"\n );\n let others = action.payload.data.filter(\n (item) => item.userName !== \"-\"\n );\n state.licenses.loadingLicensesList = false;\n state.licenses.licensesList = others.concat(hyphens);\n }\n )\n .addMatcher(\n adminApi.endpoints.getOrganizationLicenses.matchPending,\n (state, action) => {\n state.licenses.loadingLicensesList = true;\n }\n )\n .addMatcher(\n adminApi.endpoints.getOrganizationLicenses.matchRejected,\n (state, action) => {\n state.licenses.loadingLicensesList = false;\n }\n )\n .addMatcher(\n adminApi.endpoints.deleteOrganizationLicense.matchFulfilled,\n (state, action) => {}\n )\n .addMatcher(\n adminApi.endpoints.deleteOrganizationLicense.matchPending,\n (state, action) => {\n state.licenses.loadingLicensesList = true;\n }\n )\n .addMatcher(\n adminApi.endpoints.deleteOrganizationLicense.matchRejected,\n (state, action) => {\n state.licenses.loadingLicensesList = true;\n }\n );\n },\n});\n\nexport const {\n handleChange,\n handleChangeField,\n handleCloseExpirationDateDialog,\n handleOpenExpirationDateDialog,\n handleChangeSubscriptionPlanDialog,\n handleOpenEnableDisableDialog,\n handleCloseEnableDisableDialog,\n handleOpenPipedriveImportDialog,\n handleClosePipedriveImportDialog,\n handleModelErrors,\n handleOpenBestowAccount,\n handleCloseBestowAccount,\n handleOpenRestoreAccountDialog,\n handleCloseRestoreAccountDialog,\n handleOpenUsageReportDialog,\n handleCloseUsageReportDialog,\n handleToggleLicensesDialog,\n handleOpenSalesDemoTemplateDialog,\n handleCloseSalesDemoTemplateDialog,\n handleOpenAccessTokenDialog,\n handleCloseAccessTokenDialog,\n handleCreateAccessTokenSuccess,\n handleGetAccessTokenSuccess,\n handleClearTokenDialog\n} = manageAccountSlice.actions;\n\nexport default manageAccountSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { foundationProfileApi } from \"Services/FoundationProfileService\";\nimport { notesApi } from \"Services/NoteService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { sectorApi } from \"Services/SectorService\";\nimport { formatPhoneNumber } from \"utils/formatPhoneNumber\";\nimport { searchEngineApi } from \"Services/SearchEngineService\";\nimport config from \"config\";\n\nexport const initialState = {\n openPopupNote: false,\n noteData: {\n id: null,\n title: '',\n description: '',\n notificationDate: null,\n emailNotification: false,\n emails:[]\n },\n loadingGifts: false,\n applyFilter: '',\n init: false,\n profileName: '',\n lastReportYear: null,\n registerYear: null,\n stateOrProvince: '',\n organizationRegion: '',\n city: '',\n onlineApplication: '',\n website: '',\n nationalGivingHistory: '',\n phoneNumber: '',\n fullAddress: '',\n nteeTitle: '',\n nteeDescription: '',\n recipientName: '',\n countryList: [],\n provinceOrStateList: [],\n provinceOrStateListTemp: [],\n cityList: [],\n sectorList: [],\n countyList: [],\n stemmingSearch: true,\n contactEmail: '',\n applicationData: {\n foundationId: null\n },\n programData: {\n foundationId: null\n },\n yearList: [\n ...Array(config.searchEngineYearFilter.US - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n key: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ],\n summary: {\n avgGrantSize: null,\n totalAsserts: null,\n avgGrantsAnnually: null,\n grantsState: null,\n avgAmount: null,\n largestAmount: null,\n nationalGivingHistory: null,\n medianAmount: null,\n range: null,\n customAnalysisList: [],\n foundationFinancialList: [],\n yearAnalysisList: []\n },\n giftList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'donationdate',\n orderDirection: 'desc',\n items: [],\n highlightFilter: [],\n },\n grantOverviewList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'category',\n orderDirection: 'desc',\n items: [\n { category: 'Animal Welfare', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Art & Culture', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Community', grants: '50', largest: '$200,00', average: '$2,000', score: '3', grantamount: '$300,00' },\n { category: 'Education', grants: '333', largest: '$1,317,386,921', average: '$3,958,476', score: '5', grantamount: '$1,318,172,382' },\n { category: 'Environment', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Health', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Religion', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Social & Human Services', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Sports & Recreation', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'TOTAL', grants: '383', largest: '-', average: '-', score: '-', grantamount: '$1,318,472,382' }, \n ]\n },\n directorList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'directorname',\n orderDirection: 'desc',\n items: []\n },\n noteList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'createdAt',\n orderDirection: 'desc',\n items: []\n },\n charts: {\n provinceList: [],\n rangeAmount: [],\n rangeSector: {}\n },\n toggleExpandFilters: {\n provinceOrState: false,\n city: false,\n year: false,\n stemmingSearch: false,\n county: false\n },\n taxReturnPdf: []\n \n};\n\nconst foundationProfileSlice = createSlice({\n name: \"foundation-profile\",\n initialState,\n reducers: {\n init: (state, action) => {\n state.init = true;\n },\n handleChangeCountry: (state, action) => {\n state.countryList.forEach(country => {\n if (country.code === action.payload.code) {\n country.checked = action.payload.checked;\n }\n });\n },\n handleChangeProvinceOrState: (state, action) => { \n action.payload.forEach(item => {\n const togglelistItem = state.provinceOrStateList.find(o => o.code === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeCity: (state, action) => {\n\n action.payload.forEach(item => {\n const togglelistItem = state.cityList.find(o => o.name === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeCounty: (state, action) => {\n\n action.payload.forEach(item => {\n const togglelistItem = state.countyList.find(o => o.value === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeYears: (state, action) => {\n state.yearList.forEach(year => {\n if (year.value === action.payload.value) {\n year.checked = action.payload.checked;\n }\n });\n },\n handleChangeSector: (state, action) => {\n state.sectorList.forEach(sector => {\n if (sector.value === action.payload.value) {\n sector.checked = action.payload.checked;\n }\n });\n },\n handleChangeRecipientName: (state, action) => {\n state.recipientName = action.payload;\n },\n handleAddNewNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData = {...initialState.noteData};\n },\n handleEditNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData.id = action.payload.id;\n state.noteData.title = action.payload.title;\n state.noteData.description = action.payload.description;\n state.noteData.notificationDate = action.payload.notificationDate;\n state.noteData.emailNotification = action.payload.emailNotification;\n state.noteData.emails = action.payload.emails;\n },\n handleClosePopupNote: (state, action) => {\n state.openPopupNote = false;\n state.noteData = {...initialState.noteData};\n },\n handleChangeStemmingSearch: (state, action) => {\n state.stemmingSearch = action.payload;\n },\n handleClear: (state, action) => {\n state.openPopupNote = false;\n state.noteData = { ...initialState.noteData };\n state.profileName = '';\n state.lastReportYear = null;\n state.lastReportYear = null;\n state.registerYear = null;\n state.stateOrProvince = '';\n state.organizationRegion = '';\n state.city = '';\n state.onlineApplication = '';\n state.website = '';\n state.nationalGivingHistory = '';\n state.phoneNumber = '';\n state.fullAddress = '';\n state.recipientName = '';\n state.stemmingSearch = true;\n state.yearList = [\n ...Array(config.searchEngineYearFilter.US - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n key: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ];\n state.summary = { ...initialState.summary };\n state.charts = { ...initialState.charts };\n state.giftList = { ...initialState.giftList };\n state.countryList = [];\n state.provinceOrStateList = [];\n state.cityList = [];\n state.countyList = [];\n state.sectorList = [];\n state.stemmingSearch = true;\n },\n handleApplyFilter: (state, action) => {\n state.applyFilter = action.payload;\n },\n handleClearCityList: (state, action) => {\n state.cityList = [];\n },\n handleClearGifts: (state, action) => {\n\n state.provinceOrStateList = state.provinceOrStateList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.cityList = state.cityList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.countyList = state.countyList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.sectorList = state.sectorList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.yearList = state.yearList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.applyFilter = action.payload;\n state.stemmingSearch = true;\n state.toggleExpandFilters = { ...initialState.toggleExpandFilters };\n \n state.giftList.pageNumber = 0;\n state.giftList.pageSize = 10;\n state.giftList.orderField = 'donationdate';\n state.giftList.orderDirection = 'desc';\n },\n handleToggleExpandFilters: (state, action) => {\n state.toggleExpandFilters = {\n ...state.toggleExpandFilters,\n [action.payload.id]: action.payload.value \n }\n },\n handleClearCountyAndCity: (state, action) => {\n state.countryList = [];\n state.cityList = [];\n },\n handleUpdateNoteItem: (state, action) => {\n var noteItem = state.noteList.items?.find(o => o.id === action.payload.id);\n if(noteItem) {\n noteItem[action.payload.key] = action.payload.value;\n }\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedList.matchFulfilled, (state, action) => {\n state.loadingGifts = false;\n state.giftList.pageNumber = action.payload.pageNumber;\n state.giftList.pageSize = action.payload.pageSize;\n state.giftList.pageCount = action.payload.pageCount;\n state.giftList.totalCount = action.payload.totalCount;\n state.giftList.orderField = action.payload.orderField;\n state.giftList.orderDirection = action.payload.orderDirection;\n state.giftList.items = action.payload.items;\n state.giftList.highlightFilter = action.payload.aggrFilters.highlightFilter?.map(o => o.key) ?? [];\n\n if (state.provinceOrStateListTemp.length === state.provinceOrStateList.length) {\n\n const newStateList = [];\n\n state.provinceOrStateListTemp.forEach(element => {\n \n const existsOnAggr = action.payload.aggrFilters?.statesFilter?.find(o => o.key.toUpperCase() === element.code.toUpperCase());\n \n if (existsOnAggr) {\n const isChecked = state.provinceOrStateList.find(o => o.code === element.code)?.checked ?? false;\n \n newStateList.push({\n ...element,\n checked: isChecked\n });\n }\n \n });\n \n state.provinceOrStateList = newStateList;\n } \n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedList.matchPending, (state, action) => {\n state.loadingGifts = true;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedList.matchRejected, (state, action) => {\n state.loadingGifts = false;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGrantOverview.matchFulfilled, (state, action) => {\n state.grantOverviewList.pageNumber = action.payload.pageNumber;\n state.grantOverviewList.pageSize = action.payload.pageSize;\n state.grantOverviewList.pageCount = action.payload.pageCount;\n state.grantOverviewList.totalCount = action.payload.totalCount;\n state.grantOverviewList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getDirectorList.matchFulfilled, (state, action) => {\n state.directorList.pageNumber = action.payload.pageNumber;\n state.directorList.pageSize = action.payload.pageSize;\n state.directorList.pageCount = action.payload.pageCount;\n state.directorList.totalCount = action.payload.totalCount;\n state.directorList.orderField = action.payload.orderField;\n state.directorList.orderDirection = action.payload.orderDirection;\n state.directorList.items = action.payload.items;\n }\n )\n .addMatcher(\n notesApi.endpoints.getNoteList.matchFulfilled, (state, action) => {\n state.noteList.pageNumber = action.payload.pageNumber;\n state.noteList.pageSize = action.payload.pageSize;\n state.noteList.orderField = action.payload.orderField;\n state.noteList.orderDirection = action.payload.orderDirection;\n state.noteList.pageCount = action.payload.pageCount;\n state.noteList.totalCount = action.payload.totalCount;\n state.noteList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getProfileHeader.matchFulfilled, (state, action) => {\n state.profileName = action.payload.profileName;\n state.lastReportYear = action.payload.lastReportYear;\n state.registerYear = action.payload.registerYear;\n state.stateOrProvince = action.payload.stateOrProvince;\n state.organizationRegion = action.payload.organizationRegion;\n state.city = action.payload.city;\n state.onlineApplication = action.payload.onlineApplication;\n state.website = action.payload.website;\n state.nationalGivingHistory = action.payload.nationalGivingHistory;\n state.phoneNumber = formatPhoneNumber(action.payload.phoneNumber);\n state.nationalGivingHistory = action.payload.nationalGivingHistory;\n state.fullAddress = action.payload.fullAddress;\n state.nteeTitle = action.payload.nteeTitle;\n state.nteeDescription = action.payload.nteeDescription;\n state.contactEmail = action.payload.contactEmail;\n\n state.summary.avgGrantSize = action.payload.summary.avgGrantSize;\n state.summary.totalAsserts = action.payload.summary.totalAsserts;\n state.summary.avgGrantsAnnually = action.payload.summary.avgGrantsAnnually;\n state.summary.grantsState = action.payload.summary.grantsState;\n\n state.summary.avgAmount = action.payload.summary.avgAmount;\n state.summary.largestAmount = action.payload.summary.largestAmount;\n state.summary.medianAmount = action.payload.summary.medianAmount;\n state.summary.range = action.payload.summary.range;\n\n state.summary.yearAnalysisList = action.payload.summary.yearAnalysisList;\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryByCodeWithTrigger.matchFulfilled, (state, action) => {\n\n state.countryList = [{\n ...action.payload,\n checked: true\n }];\n\n state.provinceOrStateList = [];\n state.provinceOrStateListTemp = [];\n\n action.payload.provinceOrStateList.forEach(provinceOrState => {\n state.provinceOrStateList.push({\n ...provinceOrState,\n checked: false\n });\n\n state.provinceOrStateListTemp.push({\n ...provinceOrState,\n checked: false\n });\n });\n }\n )\n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.cityList = action.payload.map(item => ({\n ...item,\n checked: state.cityList.find(o => o.name === item.name)?.checked ?? false\n }));\n }\n )\n .addMatcher(\n sectorApi.endpoints.getSectorList.matchFulfilled, (state, action) => {\n state.sectorList = action.payload.map(item => ({\n ...item,\n value: item.sectorName,\n checked: false,\n }));\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartProvinceList.matchFulfilled, (state, action) => {\n state.charts.provinceList = action.payload;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartRangeAmountList.matchFulfilled, (state, action) => {\n state.charts.rangeAmount = action.payload;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartRangeSector.matchFulfilled, (state, action) => {\n state.charts.rangeSector = action.payload;\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.getCounties.matchFulfilled, (state, action) => {\n state.countyList = action.payload.map(county => ({\n key: county.key,\n value: county.key,\n label: county.label,\n provinceOrState: county.provinceOrStateCode,\n checked: state.countyList.find(o => o.key === county.key)?.checked ?? false\n }));\n }\n )\n }\n});\n\nexport const { \n init,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleChangeCity,\n handleChangeSector,\n handleChangeRecipientName,\n handleAddNewNote,\n handleEditNote,\n handleClosePopupNote,\n handleChangeStemmingSearch,\n handleChangeYears,\n handleClear,\n handleApplyFilter,\n handleClearCityList,\n handleClearGifts,\n handleToggleExpandFilters,\n handleChangeCounty,\n handleClearCountyAndCity,\n handleUpdateNoteItem,\n} = foundationProfileSlice.actions;\n\nexport default foundationProfileSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { foundationProfileApi } from \"Services/FoundationProfileService\";\nimport { notesApi } from \"Services/NoteService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { sectorApi } from \"Services/SectorService\";\nimport { formatPhoneNumber } from \"utils/formatPhoneNumber\";\nimport { searchEngineApi } from \"Services/SearchEngineService\";\nimport config from \"config\";\n\nexport const initialState = {\n openPopupNote: false,\n noteData: {\n id: null,\n title: '',\n description: '',\n notificationDate: null,\n emailNotification: false,\n emails:[]\n },\n loadingGifts: false,\n applyFilter: '',\n init: false,\n profileName: '',\n lastReportYear: null,\n registerYear: null,\n fiscalPeriodEnd: '',\n stateOrProvince: '',\n organizationRegion: '',\n city: '',\n onlineApplication: '',\n website: '',\n nationalGivingHistory: '',\n phoneNumber: '',\n fullAddress: '',\n nteeTitle: '',\n nteeDescription: '',\n recipientName: '',\n countryList: [],\n selectedFilters: {\n country: [],\n provinceOrState: [],\n county: [],\n city: [],\n years: [],\n },\n provinceOrStateList: [],\n provinceOrStateListTemp: [],\n cityList: [],\n sectorList: [],\n countyList: [],\n stemmingSearch: true,\n contactEmail: '',\n applicationData: {\n foundationId: null\n },\n programData: {\n foundationId: null\n },\n yearList: [\n ...Array(config.searchEngineYearFilter.US - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n id: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n }))\n ],\n summary: {\n avgGrantSize: null,\n totalAsserts: null,\n avgGrantsAnnually: null,\n grantsState: null,\n avgAmount: null,\n largestAmount: null,\n nationalGivingHistory: null,\n medianAmount: null,\n range: null,\n customAnalysisList: [],\n foundationFinancialList: [],\n yearAnalysisList: []\n },\n giftList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'donationdate',\n orderDirection: 'desc',\n items: [],\n statesFilter: [], \n highlightFilter: [],\n },\n grantOverviewList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'category',\n orderDirection: 'desc',\n items: [\n { category: 'Animal Welfare', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Art & Culture', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Community', grants: '50', largest: '$200,00', average: '$2,000', score: '3', grantamount: '$300,00' },\n { category: 'Education', grants: '333', largest: '$1,317,386,921', average: '$3,958,476', score: '5', grantamount: '$1,318,172,382' },\n { category: 'Environment', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Health', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Religion', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Social & Human Services', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Sports & Recreation', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'TOTAL', grants: '383', largest: '-', average: '-', score: '-', grantamount: '$1,318,472,382' }, \n ]\n },\n directorList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'directorname',\n orderDirection: 'desc',\n items: []\n },\n noteList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'createdAt',\n orderDirection: 'desc',\n items: []\n },\n charts: {\n provinceList: [],\n rangeAmount: [],\n rangeSector: {}\n },\n toggleExpandFilters: {\n provinceOrState: false,\n city: false,\n year: false,\n stemmingSearch: false,\n county: false\n },\n taxReturnPdf: []\n \n};\n\nconst foundationProfileSliceV2 = createSlice({\n name: \"foundation-profile-v2\",\n initialState,\n reducers: {\n init: (state, action) => {\n state.init = true;\n },\n handleChangeFilter: (state, action) => {\n const { key, value } = action.payload;\n state.selectedFilters[key] = value;\n },\n handleChangeRecipientName: (state, action) => {\n state.recipientName = action.payload;\n },\n handleAddNewNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData = {...initialState.noteData};\n },\n handleEditNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData.id = action.payload.id;\n state.noteData.title = action.payload.title;\n state.noteData.description = action.payload.description;\n state.noteData.notificationDate = action.payload.notificationDate;\n state.noteData.emailNotification = action.payload.emailNotification;\n state.noteData.emails = action.payload.emails;\n },\n handleClosePopupNote: (state, action) => {\n state.openPopupNote = false;\n state.noteData = {...initialState.noteData};\n },\n handleChangeStemmingSearch: (state, action) => {\n state.stemmingSearch = action.payload;\n },\n handleClear: (state, action) => {\n state.openPopupNote = false;\n state.noteData = { ...initialState.noteData };\n state.profileName = '';\n state.lastReportYear = null;\n state.lastReportYear = null;\n state.registerYear = null;\n state.fiscalPeriodEnd = '';\n state.stateOrProvince = '';\n state.organizationRegion = '';\n state.city = '';\n state.onlineApplication = '';\n state.website = '';\n state.nationalGivingHistory = '';\n state.phoneNumber = '';\n state.fullAddress = '';\n state.recipientName = '';\n state.stemmingSearch = true;\n state.yearList = [\n ...Array(config.searchEngineYearFilter.US - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n key: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ];\n state.summary = { ...initialState.summary };\n state.charts = { ...initialState.charts };\n state.giftList = { ...initialState.giftList };\n state.countryList = [];\n state.provinceOrStateList = [];\n state.cityList = [];\n state.countyList = [];\n state.sectorList = [];\n state.stemmingSearch = true;\n },\n handleApplyFilter: (state, action) => {\n state.applyFilter = action.payload;\n },\n handleClearCityList: (state, action) => {\n state.cityList = [];\n },\n handleClearGifts: (state, action) => {\n\n state.selectedFilters.provinceOrState = [];\n state.selectedFilters.county = [];\n state.selectedFilters.city = [];\n state.selectedFilters.years = [];\n\n state.applyFilter = action.payload;\n state.stemmingSearch = true;\n state.toggleExpandFilters = { ...initialState.toggleExpandFilters };\n \n state.giftList.pageNumber = 0;\n state.giftList.pageSize = 10;\n state.giftList.orderField = 'donationdate';\n state.giftList.orderDirection = 'desc';\n },\n handleToggleExpandFilters: (state, action) => {\n state.toggleExpandFilters = {\n ...state.toggleExpandFilters,\n [action.payload.id]: action.payload.value \n }\n },\n handleClearCountyAndCity: (state, action) => {\n state.countryList = [];\n state.cityList = [];\n },\n handleUpdateNoteItem: (state, action) => {\n var noteItem = state.noteList.items?.find(o => o.id === action.payload.id);\n if(noteItem) {\n noteItem[action.payload.key] = action.payload.value;\n }\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedListV2.matchFulfilled, (state, action) => {\n state.loadingGifts = false;\n state.giftList.pageNumber = action.payload.pageNumber;\n state.giftList.pageSize = action.payload.pageSize;\n state.giftList.pageCount = action.payload.pageCount;\n state.giftList.totalCount = action.payload.totalCount;\n state.giftList.orderField = action.payload.orderField;\n state.giftList.orderDirection = action.payload.orderDirection;\n state.giftList.items = action.payload.items;\n state.giftList.statesFilter = action.payload.aggrFilters.statesFilter;\n state.giftList.highlightFilter = action.payload.aggrFilters.highlightFilter?.map(o => o.key) ?? [];\n\n // if (state.provinceOrStateListTemp.length === state.provinceOrStateList.length) {\n\n // const newStateList = [];\n\n // state.provinceOrStateListTemp.forEach(element => {\n \n // const existsOnAggr = action.payload.aggrFilters?.statesFilter?.find(o => o.key.toUpperCase() === element.code.toUpperCase());\n \n // if (existsOnAggr) {\n // const isChecked = state.provinceOrStateList.find(o => o.code === element.code)?.checked ?? false;\n \n // newStateList.push({\n // ...element,\n // checked: isChecked\n // });\n // }\n \n // });\n \n // state.provinceOrStateList = newStateList;\n // } \n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedList.matchPending, (state, action) => {\n state.loadingGifts = true;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGiftsPagedList.matchRejected, (state, action) => {\n state.loadingGifts = false;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getGrantOverview.matchFulfilled, (state, action) => {\n state.grantOverviewList.pageNumber = action.payload.pageNumber;\n state.grantOverviewList.pageSize = action.payload.pageSize;\n state.grantOverviewList.pageCount = action.payload.pageCount;\n state.grantOverviewList.totalCount = action.payload.totalCount;\n state.grantOverviewList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getDirectorList.matchFulfilled, (state, action) => {\n state.directorList.pageNumber = action.payload.pageNumber;\n state.directorList.pageSize = action.payload.pageSize;\n state.directorList.pageCount = action.payload.pageCount;\n state.directorList.totalCount = action.payload.totalCount;\n state.directorList.orderField = action.payload.orderField;\n state.directorList.orderDirection = action.payload.orderDirection;\n state.directorList.items = action.payload.items;\n }\n )\n .addMatcher(\n notesApi.endpoints.getNoteList.matchFulfilled, (state, action) => {\n state.noteList.pageNumber = action.payload.pageNumber;\n state.noteList.pageSize = action.payload.pageSize;\n state.noteList.orderField = action.payload.orderField;\n state.noteList.orderDirection = action.payload.orderDirection;\n state.noteList.pageCount = action.payload.pageCount;\n state.noteList.totalCount = action.payload.totalCount;\n state.noteList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getProfileHeader.matchFulfilled, (state, action) => {\n state.profileName = action.payload.profileName;\n state.lastReportYear = action.payload.lastReportYear;\n state.registerYear = action.payload.registerYear;\n state.fiscalPeriodEnd = action.payload.fiscalPeriodEnd;\n state.stateOrProvince = action.payload.stateOrProvince;\n state.organizationRegion = action.payload.organizationRegion;\n state.city = action.payload.city;\n state.onlineApplication = action.payload.onlineApplication;\n state.website = action.payload.website;\n state.nationalGivingHistory = action.payload.nationalGivingHistory;\n state.phoneNumber = formatPhoneNumber(action.payload.phoneNumber);\n state.nationalGivingHistory = action.payload.nationalGivingHistory;\n state.fullAddress = action.payload.fullAddress;\n state.nteeTitle = action.payload.nteeTitle;\n state.nteeDescription = action.payload.nteeDescription;\n state.contactEmail = action.payload.contactEmail;\n\n state.summary.avgGrantSize = action.payload.summary.avgGrantSize;\n state.summary.totalAsserts = action.payload.summary.totalAsserts;\n state.summary.avgGrantsAnnually = action.payload.summary.avgGrantsAnnually;\n state.summary.grantsState = action.payload.summary.grantsState;\n\n state.summary.avgAmount = action.payload.summary.avgAmount;\n state.summary.largestAmount = action.payload.summary.largestAmount;\n state.summary.medianAmount = action.payload.summary.medianAmount;\n state.summary.range = action.payload.summary.range;\n\n state.summary.yearAnalysisList = action.payload.summary.yearAnalysisList;\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryByCodeWithTrigger.matchFulfilled, (state, action) => {\n const countries = [action.payload]; //action.payload value is 1 object (US)\n state.countryList = countries.map(country => ({\n id: country.id,\n value: country.code,\n label: country.description,\n }))\n\n state.selectedFilters.country = state.countryList.length > 0 ? [state.countryList[0]] : [];\n\n state.provinceOrStateList = action.payload.provinceOrStateList.map(provinceOrState => ({\n id: provinceOrState.id,\n value: provinceOrState.code,\n label: provinceOrState.description,\n }));\n }\n )\n .addMatcher(\n searchEngineApi.endpoints.getCounties.matchFulfilled, (state, action) => {\n state.countyList = action.payload.map(county => ({\n id: county.key,\n value: county.key,\n label: county.label,\n secondaryAction: county.provinceOrStateCode,\n }));\n\n state.selectedFilters.county = state.countyList.length > 0 \n ? state.selectedFilters.county.filter(county => state.countyList.some(county2 => county2.value === county.value) ) \n : [];\n }\n )\n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.cityList = action.payload.map(city => ({\n id: city.id,\n value: city.name,\n label: city.name,\n secondaryAction: city.provinceOrStateCode,\n }));\n\n state.selectedFilters.city = state.cityList.length > 0 \n ? state.selectedFilters.city.filter(city => state.cityList.some(city2 => city2.value === city.value) ) \n : [];\n }\n )\n .addMatcher(\n sectorApi.endpoints.getSectorList.matchFulfilled, (state, action) => {\n state.sectorList = action.payload.map(item => ({\n ...item,\n value: item.sectorName,\n checked: false,\n }));\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartProvinceList.matchFulfilled, (state, action) => {\n state.charts.provinceList = action.payload;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartRangeAmountList.matchFulfilled, (state, action) => {\n state.charts.rangeAmount = action.payload;\n }\n )\n .addMatcher(\n foundationProfileApi.endpoints.getChartRangeSector.matchFulfilled, (state, action) => {\n state.charts.rangeSector = action.payload;\n }\n )\n }\n});\n\nexport const { \n init,\n handleChangeFilter,\n handleChangeRecipientName,\n handleAddNewNote,\n handleEditNote,\n handleClosePopupNote,\n handleChangeStemmingSearch,\n handleChangeYears,\n handleClear,\n handleApplyFilter,\n handleClearCityList,\n handleClearGifts,\n handleToggleExpandFilters,\n handleChangeCounty,\n handleClearCountyAndCity,\n handleUpdateNoteItem,\n} = foundationProfileSliceV2.actions;\n\nexport default foundationProfileSliceV2.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { userProjectApi } from 'Services/UserProjectService'\nimport { sharedProjectApi } from 'Services/SharedProjectService'\n\nexport const initialState = {\n openFormDialog: false,\n openDeleteDialog: false,\n tabIndex: 0,\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n showArchived: false,\n orderField: 'projectStatus',\n orderDirection: 'asc',\n items: [],\n activeUserProjectId: ''\n },\n pagedSharedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n showArchived: false,\n orderField: 'projectStatus',\n orderDirection: 'asc',\n items: [],\n activeUserProjectId: ''\n },\n projectStatusList: [ 'Active', 'Completed', 'InProgress' ],\n id: null,\n searchTerm: {\n value: '',\n error: ''\n },\n name: {\n value: '',\n error: ''\n },\n startDate: {\n value: null,\n error: ''\n },\n endDate: {\n value: null,\n error: ''\n },\n projectCost: {\n value: '',\n error: ''\n },\n projectDescription: {\n value: '',\n error: ''\n },\n projectStatus: {\n value: '',\n error: ''\n }\n};\n\nconst userProjectSlice = createSlice({\n name: \"user-project\",\n initialState,\n reducers: {\n handleCloseDialog: (state, action) => {\n state.openFormDialog = false;\n state.openDeleteDialog = false;\n },\n handleOpenDeleteDialog: (state, action) => {\n state.id = action.payload.id;\n state.openFormDialog = false;\n state.openDeleteDialog = true;\n },\n handleCreateNewProject: (state, action) => {\n state.openFormDialog = true;\n state.id = null;\n\n state.name.value = '';\n state.name.error = '';\n\n state.startDate.value = null;\n state.startDate.error = '';\n\n state.endDate.value = null;\n state.endDate.error = '';\n\n state.projectCost.value = '';\n state.projectCost.error = '';\n\n state.projectDescription.value = '';\n state.projectDescription.error = '';\n\n state.projectStatus.value = '';\n state.projectStatus.error = '';\n },\n handleEditUserProject: (state, action) => {\n state.openFormDialog = true;\n state.id = action.payload.id;\n\n state.name.value = action.payload.name;\n state.name.error = '';\n\n state.startDate.value = action.payload.startDate;\n state.startDate.error = '';\n\n state.endDate.value = action.payload.endDate;\n state.endDate.error = '';\n\n state.projectCost.value = action.payload.projectCost;\n state.projectCost.error = '';\n\n state.projectDescription.value = action.payload.projectDescription;\n state.projectDescription.error = '';\n\n state.projectStatus.value = '';\n state.projectStatus.error = '';\n },\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n setTabIndex: (state, action) => {\n state.tabIndex = action.payload;\n },\n setSharedActiveProject: (state, action) => {\n state.pagedSharedList.activeUserProjectId = action.payload;\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n userProjectApi.endpoints.getAll.matchFulfilled, (state, action) => {\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n state.pagedList.activeUserProjectId = action.payload.data.activeUserProjectId;\n }\n ).addMatcher(\n sharedProjectApi.endpoints.getAllShared.matchFulfilled, (state, action) => {\n state.pagedSharedList.pageNumber = action.payload.pageNumber;\n state.pagedSharedList.pageSize = action.payload.pageSize;\n state.pagedSharedList.pageCount = action.payload.pageCount;\n state.pagedSharedList.totalCount = action.payload.totalCount;\n state.pagedSharedList.orderField = action.payload.orderField;\n state.pagedSharedList.orderDirection = action.payload.orderDirection;\n state.pagedSharedList.items = action.payload.items;\n }\n )\n }\n});\n\nexport const {\n handleCloseDialog, \n handleChange,\n handleModelErrors,\n handleCreateNewProject,\n handleEditUserProject,\n handleOpenDeleteDialog,\n setTabIndex,\n setSharedActiveProject,\n} = userProjectSlice.actions;\n\nexport default userProjectSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { foundationProfileCanadianApi } from \"Services/FoundationProfileCanadianService\";\nimport { notesApi } from \"Services/NoteService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { sectorCAApi } from \"Services/SectorServiceCA\";\nimport { formatPhoneNumber } from \"utils/formatPhoneNumber\";\nimport config from \"config\";\n\nexport const initialState = {\n openPopupNote: false,\n noteData: {\n id: null,\n title: '',\n description: '',\n notificationDate: null,\n emailNotification: false,\n emails:[],\n },\n loadingGifts: false,\n applyFilter: '',\n init: false,\n profileName: '',\n lastReportYear: null,\n registerYear: null,\n fiscalPeriodEnd: '',\n stateOrProvince: '',\n organizationRegion: '',\n city: '',\n onlineApplication: '',\n website: '',\n phoneNumber: '',\n fullAddress: '',\n nteeTitle: '',\n nteeDescription: '',\n recipientName: '',\n countryList: [],\n provinceOrStateList: [],\n selectedFilters: {\n country: [],\n provinceOrState: [],\n county: [],\n city: [],\n years: [],\n sectors: [],\n },\n cityList: [],\n sectorList: [],\n countyList: [],\n stemmingSearch: true,\n contactEmail: '',\n donorDesignation: '',\n nationalGivingHistory:'',\n applicationData: {\n foundationId: null\n },\n programData: {\n foundationId: null\n },\n yearList: [\n ...Array(config.searchEngineYearFilter.CA - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n id: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ],\n summary: {\n avgGrantSize: null,\n totalAsserts: null,\n avgGrantsAnnually: null,\n grantsState: null,\n avgAmount: null,\n largestAmount: null,\n medianAmount: null,\n range: null,\n customAnalysisList: [],\n foundationFinancialList: [],\n yearAnalysisList: [],\n nationalGivingHistory: null\n },\n giftList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'donationdate',\n orderDirection: 'desc',\n items: [],\n statesFilter: [],\n highlightFilter: [],\n },\n grantOverviewList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'category',\n orderDirection: 'desc',\n items: [\n { category: 'Animal Welfare', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Art & Culture', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Community', grants: '50', largest: '$200,00', average: '$2,000', score: '3', grantamount: '$300,00' },\n { category: 'Education', grants: '333', largest: '$1,317,386,921', average: '$3,958,476', score: '5', grantamount: '$1,318,172,382' },\n { category: 'Environment', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Health', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Religion', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Social & Human Services', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Sports & Recreation', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'TOTAL', grants: '383', largest: '-', average: '-', score: '-', grantamount: '$1,318,472,382' }, \n ]\n },\n directorList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'directorname',\n orderDirection: 'desc',\n items: []\n },\n noteList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'createdAt',\n orderDirection: 'desc',\n items: []\n },\n charts: {\n provinceList: [],\n rangeAmount: [],\n rangeSector: {}\n },\n toggleExpandFilters: {\n provinceOrState: false,\n city: false,\n year: false,\n stemmingSearch: false,\n county: false,\n sector: false\n },\n taxReturnPdf: []\n \n};\n\nconst foundationProfileCASliceV2 = createSlice({\n name: \"foundation-profile-ca-v2\",\n initialState,\n reducers: {\n init: (state, action) => {\n state.init = true;\n },\n handleChangeFilter: (state, action) => {\n const { key, value } = action.payload;\n state.selectedFilters[key] = value;\n },\n handleChangeRecipientName: (state, action) => {\n state.recipientName = action.payload;\n },\n handleAddNewNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData = {...initialState.noteData};\n },\n handleEditNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData.id = action.payload.id;\n state.noteData.title = action.payload.title;\n state.noteData.description = action.payload.description;\n state.noteData.notificationDate = action.payload.notificationDate;\n state.noteData.emailNotification = action.payload.emailNotification;\n state.noteData.emails = action.payload.emails;\n },\n handleClosePopupNote: (state, action) => {\n state.openPopupNote = false;\n state.noteData = {...initialState.noteData};\n },\n handleChangeStemmingSearch: (state, action) => {\n state.stemmingSearch = action.payload;\n },\n handleClear: (state, action) => {\n state.openPopupNote = false;\n state.noteData = { ...initialState.noteData };\n state.profileName = '';\n state.lastReportYear = null;\n state.lastReportYear = null;\n state.registerYear = null;\n state.fiscalPeriodEnd = '';\n state.stateOrProvince = '';\n state.organizationRegion = '';\n state.city = '';\n state.onlineApplication = '';\n state.website = '';\n state.phoneNumber = '';\n state.fullAddress = '';\n state.recipientName = '';\n state.stemmingSearch = true;\n state.nationalGivingHistory = '';\n state.yearList = [\n ...Array(config.searchEngineYearFilter.CA - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n id: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ];\n state.summary = { ...initialState.summary };\n state.charts = { ...initialState.charts };\n state.giftList = { ...initialState.giftList };\n state.countryList = [];\n state.provinceOrStateList = [];\n state.cityList = [];\n state.countyList = [];\n state.sectorList = [];\n state.stemmingSearch = true; \n \n },\n handleApplyFilter: (state, action) => {\n state.applyFilter = action.payload;\n },\n handleClearCityList: (state, action) => {\n state.cityList = [];\n },\n handleClearGifts: (state, action) => {\n\n state.selectedFilters.provinceOrState = [];\n state.selectedFilters.county = [];\n state.selectedFilters.city = [];\n state.selectedFilters.years = [];\n state.selectedFilters.sectors = [];\n\n state.cityList = [];\n\n state.applyFilter = action.payload;\n state.stemmingSearch = true;\n state.toggleExpandFilters = { ...initialState.toggleExpandFilters };\n \n state.giftList.pageNumber = 0;\n state.giftList.pageSize = 10;\n state.giftList.orderField = 'donationdate';\n state.giftList.orderDirection = 'desc';\n },\n handleToggleExpandFilters: (state, action) => {\n state.toggleExpandFilters = {\n ...state.toggleExpandFilters,\n [action.payload.id]: action.payload.value \n }\n },\n handleUpdateNoteItem: (state, action) => {\n var noteItem = state.noteList.items?.find(o => o.id === action.payload.id);\n if(noteItem) {\n noteItem[action.payload.key] = action.payload.value;\n }\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCAV2.matchFulfilled, (state, action) => {\n state.loadingGifts = false;\n state.giftList.pageNumber = action.payload.pageNumber;\n state.giftList.pageSize = action.payload.pageSize;\n state.giftList.pageCount = action.payload.pageCount;\n state.giftList.totalCount = action.payload.totalCount;\n state.giftList.orderField = action.payload.orderField;\n state.giftList.orderDirection = action.payload.orderDirection;\n state.giftList.items = action.payload.items;\n state.countyList = action.payload.aggrFilters.countiesFilter?.map(county => ({\n ...county,\n checked: !!state.countyList.find(o => o.key === county.key)?.checked,\n })) ?? [];\n state.giftList.statesFilter = action.payload.aggrFilters.statesFilter;\n state.giftList.highlightFilter = action.payload.aggrFilters.highlightFilter?.map(o => o.key) ?? [];\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCA.matchPending, (state, action) => {\n state.loadingGifts = true;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCA.matchRejected, (state, action) => {\n state.loadingGifts = false;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGrantOverviewCA.matchFulfilled, (state, action) => {\n state.grantOverviewList.pageNumber = action.payload.pageNumber;\n state.grantOverviewList.pageSize = action.payload.pageSize;\n state.grantOverviewList.pageCount = action.payload.pageCount;\n state.grantOverviewList.totalCount = action.payload.totalCount;\n state.grantOverviewList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getDirectorListCA.matchFulfilled, (state, action) => {\n state.directorList.pageNumber = action.payload.pageNumber;\n state.directorList.pageSize = action.payload.pageSize;\n state.directorList.pageCount = action.payload.pageCount;\n state.directorList.totalCount = action.payload.totalCount;\n state.directorList.orderField = action.payload.orderField;\n state.directorList.orderDirection = action.payload.orderDirection;\n state.directorList.items = action.payload.items;\n }\n )\n .addMatcher(\n notesApi.endpoints.getNoteList.matchFulfilled, (state, action) => {\n state.noteList.pageNumber = action.payload.pageNumber;\n state.noteList.pageSize = action.payload.pageSize;\n state.noteList.orderField = action.payload.orderField;\n state.noteList.orderDirection = action.payload.orderDirection;\n state.noteList.pageCount = action.payload.pageCount;\n state.noteList.totalCount = action.payload.totalCount;\n state.noteList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getMainProfileCA.matchFulfilled, (state, action) => {\n state.profileName = action.payload.profileName;\n state.lastReportYear = action.payload.lastReportYear;\n state.registerYear = action.payload.registerYear;\n state.fiscalPeriodEnd = action.payload.fiscalPeriodEnd;\n state.stateOrProvince = action.payload.stateOrProvince;\n state.organizationRegion = action.payload.organizationRegion;\n state.city = action.payload.city;\n state.onlineApplication = action.payload.onlineApplication;\n state.website = action.payload.website;\n state.phoneNumber = formatPhoneNumber(action.payload.phoneNumber);\n state.fullAddress = action.payload.fullAddress;\n state.nteeTitle = action.payload.nteeTitle;\n state.nteeDescription = action.payload.nteeDescription;\n state.contactEmail = action.payload.contactEmail;\n state.donorDesignation = action.payload.donorDesignation;\n \n state.summary.nationalGivingHistory = (action.payload.summary.nationalGivingHistory ?? action.payload.nationalGivingHistory) ?? '';\n state.summary.avgGrantSize = action.payload.summary.avgGrantSize;\n state.summary.totalAsserts = action.payload.summary.totalAsserts;\n state.summary.avgGrantsAnnually = action.payload.summary.avgGrantsAnnually;\n state.summary.grantsState = action.payload.summary.grantsState;\n\n state.summary.avgAmount = action.payload.summary.avgAmount;\n state.summary.largestAmount = action.payload.summary.largestAmount;\n state.summary.medianAmount = action.payload.summary.medianAmount;\n state.summary.range = action.payload.summary.range;\n state.programData.foundationId = action.payload.programData.foundationId;\n state.taxReturnPdf = action.payload.taxReturnPdf; \n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryByCodeWithTrigger.matchFulfilled, (state, action) => {\n\n const countries = [action.payload]; //action.payload value is 1 object (CA)\n state.countryList = countries.map(country => ({\n id: country.id,\n value: country.code,\n label: country.description,\n }))\n\n state.selectedFilters.country = state.countryList.length > 0 ? [state.countryList[0]] : [];\n\n state.provinceOrStateList = action.payload.provinceOrStateList.map(provinceOrState => ({\n id: provinceOrState.id,\n value: provinceOrState.code,\n label: provinceOrState.description,\n }));\n }\n )\n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.cityList = action.payload.map(city => ({\n id: city.id,\n value: city.name,\n label: city.name,\n secondaryAction: city.provinceOrStateCode,\n }));\n\n state.selectedFilters.city = state.cityList.length > 0 \n ? state.selectedFilters.city.filter(city => state.cityList.some(city2 => city2.value === city.value) ) \n : [];\n }\n )\n .addMatcher(\n sectorCAApi.endpoints.getSectorListCA.matchFulfilled, (state, action) => {\n state.sectorList = action.payload.map(item => ({\n id: item.id,\n value: item.sectorName,\n label: item.sectorName,\n }));\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartProvinceListCA.matchFulfilled, (state, action) => {\n state.charts.provinceList = action.payload;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartRangeAmountListCA.matchFulfilled, (state, action) => {\n state.charts.rangeAmount = action.payload;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartRangeSectorCA.matchFulfilled, (state, action) => {\n state.charts.rangeSector = action.payload;\n }\n )\n }\n});\n\nexport const { \n init,\n handleChangeRecipientName,\n handleAddNewNote,\n handleEditNote,\n handleClosePopupNote,\n handleChangeStemmingSearch,\n handleClear,\n handleApplyFilter,\n handleClearCityList,\n handleClearGifts,\n handleToggleExpandFilters,\n handleUpdateNoteItem,\n handleChangeFilter,\n} = foundationProfileCASliceV2.actions;\n\nexport default foundationProfileCASliceV2.reducer;\n","const config = {\n // basename: only at build time to set, and Don't add '/' at end off BASENAME for breadcrumbs, also Don't put only '/' use blank('') instead,\n // like '/berry-material-react/react/default'\n basename: '/',\n defaultPath: '/main/dashboard/default',\n fontFamily: `'Poppins', sans-serif`,\n borderRadius: 12,\n outlinedFilled: true,\n theme: 'light', // light, dark\n presetColor: 'default', // default, theme1, theme2, theme3, theme4, theme5, theme6\n i18n: 'en', // 'en' - English, 'fr' - French, 'ro' - Romanian, 'zh' - Chinese\n rtlLayout: false,\n jwt: {\n secret: 'SECRET-KEY',\n timeout: '1 days'\n },\n firebase: {\n apiKey: 'AIzaSyBernKzdSojh_vWXBHt0aRhf5SC9VLChbM',\n authDomain: 'berry-material-react.firebaseapp.com',\n projectId: 'berry-material-react',\n storageBucket: 'berry-material-react.appspot.com',\n messagingSenderId: '901111229354',\n appId: '1:901111229354:web:a5ae5aa95486297d69d9d3',\n measurementId: 'G-MGJHSL8XW3'\n },\n auth0: {\n client_id: '7T4IlWis4DKHSbG8JAye4Ipk0rvXkH9V',\n domain: 'dev-w0-vxep3.us.auth0.com'\n },\n welcomeMessage: {\n keyVersion: 'version_3_2_2',\n message: [\n \"We’re excited to announce that versions V3.2.1 and V3.2.2 of Grant Advance are now live!
\",\n \"These updates include exciting new features like enhanced search tools, AI-powered document generation, and improved profile management, along with essential fixes for a smoother experience.
\",\n \"Please check out the detailed announcement for more information and resources.
\"\n ]\n },\n markerOptions: {\n \"accuracy\": \n { \n \"value\": \"exactly\", \n \"limiters\": [\"-\", \".\", \";\", \",\"]\n } \n },\n searchEngineYearFilter: {\n CA: 2023,\n US: 2024\n }\n};\n\nexport default config;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { subscriptionPlanApi } from 'Services/SubscriptionPlanService';\nimport { countryApi } from 'Services/CountryService';\n\nexport const initialState = {\n openPopupPayment: false,\n userNameOrEmail: {\n value: '',\n error: ''\n },\n password: {\n value: '',\n error: ''\n },\n coupon: null,\n subscriptionPlanList: [],\n countryList: [],\n selectedCountry: {\n id: null,\n code: null,\n description: null,\n provinceOrStateList: []\n },\n selectedCountryBilling: {\n id: null,\n code: null,\n description: null,\n provinceOrStateList: []\n },\n selectedProvinceOrState: {\n id: null,\n code: null,\n description: null,\n },\n selectedProvinceOrStateBilling: {\n id: null,\n code: null,\n description: null,\n },\n firstName: {\n value: '',\n error: ''\n },\n lastName: {\n value: '',\n error: ''\n },\n phoneNumber: {\n value: '',\n error: ''\n },\n userNameRegister: {\n value: '',\n error: ''\n },\n passwordRegister: {\n value: '',\n error: ''\n },\n email: {\n value: '',\n error: ''\n },\n subscriptionPlanName: {\n value: '',\n error: '',\n },\n companyName: {\n value: '',\n error: ''\n },\n addressLine: {\n value: '',\n error: ''\n },\n addressLine2: {\n value: '',\n error: ''\n },\n city: {\n value: '',\n error: ''\n },\n provinceOrState: {\n value: null,\n error: ''\n },\n postalCode: {\n value: '',\n error: ''\n },\n country: {\n value: '',\n error: ''\n },\n county: {\n value: '',\n error: ''\n },\n addressLineBilling: {\n value: '',\n error: ''\n },\n addressLine2Billing: {\n value: '',\n error: ''\n },\n countryBilling: {\n value: '',\n error: ''\n },\n countyBilling: {\n value: '',\n error: ''\n },\n postalCodeBilling: {\n value: '',\n error: ''\n },\n provinceOrStateBilling: {\n value: '',\n error: ''\n },\n cityBilling: {\n value: '',\n error: ''\n },\n useSameAddress: {\n value: false,\n error: ''\n },\n userNameRecovery: {\n value: '',\n error: ''\n },\n emailRecovery: {\n value: '',\n error: ''\n },\n newPassword: {\n value: '',\n error: ''\n },\n confirmPassword: {\n value: '',\n error: ''\n }\n};\n\nconst authSlice = createSlice({\n name: \"auth\",\n initialState,\n reducers: {\n handleOpenPopupPayment: (state, action) => {\n state.openPopupPayment = true;\n }, \n handleClosePopupPayment: (state, action) => {\n state.openPopupPayment = false;\n },\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleChangeCountry: (state, action) => {\n state.selectedCountry = state.countryList.find(o => o.description === action.payload);\n state.country.value = state.countryList.find(o => o.description === action.payload).description;\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.provinceOrState = initialState.provinceOrState;\n },\n handleChangeCountryBilling: (state, action) => {\n state.selectedCountryBilling = state.countryList.find(o => o.description === action.payload);\n state.countryBilling.value = state.countryList.find(o => o.description === action.payload).description;\n state.selectedProvinceOrStateBilling = initialState.selectedProvinceOrStateBilling;\n state.provinceOrStateBilling = initialState.provinceOrStateBilling;\n \n },\n handleChangeProvinceOrState: (state, action) => {\n if (action.payload?.value) {\n state.selectedProvinceOrState = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '');\n state.provinceOrState.value = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '').description;\n state.provinceOrState.error = '';\n }\n },\n handleChangeProvinceOrStateBilling: (state, action) => {\n if (action.payload?.value) {\n state.selectedProvinceOrStateBilling = state.selectedCountryBilling.provinceOrStateList.find(o => o.description === action.payload.value || '');\n state.provinceOrStateBilling.value = state.selectedCountryBilling.provinceOrStateList.find(o => o.description === action.payload.value || '').description;\n }\n },\n handleChangeUseSameAddress: (state, action) => {\n state.useSameAddress.value = action.payload;\n state.useSameAddress.error = '';\n\n if (state.useSameAddress.value === true) {\n state.addressLineBilling.value = state.addressLine.value;\n state.addressLineBilling.error = '';\n\n state.addressLine2Billing.value = state.addressLine2.value;\n state.addressLine2Billing.error = '';\n\n state.selectedCountryBilling = { ...state.selectedCountry };\n state.countryBilling.value = state.country.value;\n state.countryBilling.error = '';\n \n state.postalCodeBilling.value = state.postalCode.value;\n state.postalCodeBilling.error = '';\n \n state.selectedProvinceOrStateBilling = { ...state.selectedProvinceOrState };\n state.provinceOrStateBilling.value = state.provinceOrState.value;\n state.provinceOrStateBilling.error = '';\n\n state.cityBilling.value = state.city.value;\n state.cityBilling.error = '';\n }\n },\n clearErrors: (state, action) => {\n Object.keys(initialState).forEach(field => {\n if (state[field]?.error !== undefined) {\n state[field].error = ''; \n }\n });\n },\n formReset: (state, action) => {\n state.firstName.value = '';\n state.firstName.error = '';\n \n state.lastName.value = '';\n state.lastName.error = '';\n \n state.phoneNumber.value = '';\n state.phoneNumber.error = '';\n\n state.userNameRegister.value = '';\n state.userNameRegister.error = '';\n\n state.passwordRegister.value = '';\n state.passwordRegister.error = '';\n \n state.email.value = '';\n state.email.error = '';\n \n state.subscriptionPlanName.value = '';\n state.subscriptionPlanName.error = '';\n\n state.companyName.value = '';\n state.companyName.error = '';\n\n state.addressLine.value = '';\n state.addressLine.error = '';\n\n state.addressLine2.value = '';\n state.addressLine2.error = '';\n\n state.city.value = '';\n state.city.error = '';\n\n state.provinceOrState.value = '';\n state.provinceOrState.error = '';\n\n state.postalCode.value = '';\n state.postalCode.error = '';\n\n state.country.value = '';\n state.country.error = '';\n\n state.county.value = '';\n state.county.error = '';\n\n state.addressLineBilling.value = '';\n state.addressLineBilling.error = '';\n\n state.addressLine2Billing.value = '';\n state.addressLine2Billing.error = '';\n\n state.countryBilling.value = '';\n state.countryBilling.error = '';\n\n state.countyBilling.value = '';\n state.countyBilling.error = '';\n\n state.postalCodeBilling.value = '';\n state.postalCodeBilling.error = '';\n\n state.provinceOrStateBilling.value = '';\n state.provinceOrStateBilling.error = '';\n\n state.cityBilling.value = '';\n state.cityBilling.error = '';\n\n state.useSameAddress.value = false;\n state.useSameAddress.error = '';\n\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.selectedProvinceOrStateBilling = initialState.selectedProvinceOrStateBilling;\n },\n clearPasswordRecovery: (state, action) => {\n state.userNameRecovery.value = '';\n state.userNameRecovery.error = '';\n state.emailRecovery.value = '';\n state.emailRecovery.error = '';\n state.confirmPassword.value = '';\n state.confirmPassword.error = '';\n state.newPassword.value = '';\n state.newPassword.error = '';\n },\n setSubscriptionPlanList: (state, action) => {\n state.subscriptionPlanList = action.payload;\n },\n setCoupon: (state, action) => {\n state.coupon = action.payload;\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n subscriptionPlanApi.endpoints.getPublicPlans.matchFulfilled, (state, action) => {\n state.subscriptionPlanList = action.payload;\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryList.matchFulfilled, (state, action) => {\n state.countryList = action.payload;\n }\n )\n }\n});\n\nexport const {\n handleOpenPopupPayment,\n handleClosePopupPayment, \n handleChange, \n handleModelErrors,\n handleChangeUseSameAddress,\n clearErrors,\n formReset,\n clearPasswordRecovery,\n handleChangeCountry,\n handleChangeCountryBilling,\n handleChangeProvinceOrState,\n handleChangeProvinceOrStateBilling,\n setSubscriptionPlanList,\n setCoupon,\n} = authSlice.actions;\n\nexport default authSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\n\nexport const initialState = {\n usersList: [],\n licenseAmount: 0,\n usersAmount: 0,\n loadingList: false,\n searchTerm: '',\n isDialogOpen: false,\n isDialogRemoveOpen: false,\n userId: null,\n userName: {\n value: '',\n error: ''\n },\n firstName: {\n value: '',\n error: ''\n },\n lastName: {\n value: '',\n error: ''\n },\n status: {\n value: true,\n error: ''\n },\n collaborationAll: {\n value: false,\n error: ''\n },\n collaborationParent: {\n value: false,\n error: ''\n },\n};\n\nconst additionalUsersSlice = createSlice({\n name: \"additional-users\",\n initialState,\n reducers: {\n handleAddNewUser: (state, action) => {\n state.isDialogOpen = true;\n state.userId = null;\n state.userName.value = '';\n state.userName.error = '';\n state.firstName.value = '';\n state.firstName.error = '';\n state.lastName.value = '';\n state.lastName.error = '';\n state.status.value = true;\n state.status.error = '';\n state.collaborationAll.value = false;\n state.collaborationAll.error = '';\n state.collaborationParent.value = false;\n state.collaborationParent.error = '';\n },\n handleEditUser: (state, action) => {\n state.isDialogOpen = true;\n state.userId = action.payload.id;\n state.userName.value = action.payload.userName;\n state.userName.error = '';\n state.firstName.value = action.payload.firstName;\n state.firstName.error = '';\n state.lastName.value = action.payload.lastName;\n state.lastName.error = '';\n state.status.value = action.payload.status;\n state.status.error = '';\n state.collaborationAll.value = action.payload.collaborationAll;\n state.collaborationAll.error = '';\n state.collaborationParent.value = action.payload.collaborationParent;\n state.collaborationParent.error = '';\n },\n handleChangeSearch: (state, action) => {\n state[action.payload.field] = action.payload.value; \n },\n handleChangeForm: (state, action) => {\n state[action.payload.field].error = ''; \n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleInsertSuccess: (state, action) => {\n state.usersList.push({\n id: action.payload.id,\n userName: state.userName.value,\n firstName: state.firstName.value,\n lastName: state.lastName.value,\n status: state.status.value,\n collaborationAll: state.collaborationAll.value,\n collaborationParent: state.collaborationParent.value,\n email: state.userName.value,\n });\n\n state.usersAmount = action.payload.usersAmount;\n state.licenseAmount = action.payload.licenseAmount;\n state.userId = null;\n state.userName.value = '';\n state.userName.error = '';\n state.firstName.value = '';\n state.firstName.error = '';\n state.lastName.value = '';\n state.lastName.error = '';\n state.status.value = true;\n state.status.error = true;\n state.collaborationAll.value = false;\n state.collaborationAll.error = '';\n state.collaborationParent.value = false;\n state.collaborationParent.error = '';\n state.isDialogOpen = false;\n },\n handleUpdateSuccess: (state, action) => {\n\n state.usersList.forEach(value => {\n if (value.id === state.userId) {\n value.userName = state.userName.value;\n value.firstName = state.firstName.value;\n value.lastName = state.lastName.value;\n value.status = state.status.value;\n value.collaborationAll = state.collaborationAll.value;\n value.collaborationParent = state.collaborationParent.value;\n }\n });\n \n state.userId = null;\n state.userName.value = '';\n state.firstName.value = '';\n state.lastName.value = '';\n state.status.value = true;\n state.collaborationAll.value = false;\n state.collaborationParent.value = false;\n state.isDialogOpen = false;\n },\n setLoading: (state, action) => {\n \n if (action.payload)\n state.usersList = [];\n\n state.loadingList = action.payload;\n },\n fillList: (state, action) => {\n state.usersList = action.payload.additionalUsers;\n state.licenseAmount = action.payload.licenseAmount;\n state.usersAmount = action.payload.usersAmount;\n },\n closeDialog: (state, action) => {\n state.isDialogOpen = false;\n },\n handleClearSearch: (state, action) => {\n state.searchTerm = '';\n },\n handleOpenDialogRemove: (state, action) => {\n state.isDialogRemoveOpen = true;\n state.userId = action.payload;\n },\n handleCloseDialogRemove: (state, action) => {\n state.isDialogRemoveOpen = false;\n state.userId = null;\n }\n },\n});\n\nexport const { \n handleAddNewUser,\n handleEditUser,\n handleChangeSearch,\n handleChangeForm,\n setLoading,\n fillList,\n closeDialog,\n handleModelErrors,\n handleInsertSuccess,\n handleUpdateSuccess,\n handleClearSearch,\n handleOpenDialogRemove,\n handleCloseDialogRemove\n} = additionalUsersSlice.actions;\n\nexport default additionalUsersSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { foundationProfileCanadianApi } from \"Services/FoundationProfileCanadianService\";\nimport { notesApi } from \"Services/NoteService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { sectorCAApi } from \"Services/SectorServiceCA\";\nimport { formatPhoneNumber } from \"utils/formatPhoneNumber\";\nimport config from \"config\";\n\nexport const initialState = {\n openPopupNote: false,\n noteData: {\n id: null,\n title: '',\n description: '',\n notificationDate: null,\n emailNotification: false,\n emails:[],\n },\n loadingGifts: false,\n applyFilter: '',\n init: false,\n profileName: '',\n lastReportYear: null,\n registerYear: null,\n stateOrProvince: '',\n organizationRegion: '',\n city: '',\n onlineApplication: '',\n website: '',\n phoneNumber: '',\n fullAddress: '',\n nteeTitle: '',\n nteeDescription: '',\n recipientName: '',\n countryList: [],\n provinceOrStateList: [],\n cityList: [],\n sectorList: [],\n countyList: [],\n stemmingSearch: true,\n contactEmail: '',\n donorDesignation: '',\n nationalGivingHistory:'',\n applicationData: {\n foundationId: null\n },\n programData: {\n foundationId: null\n },\n yearList: [\n ...Array(config.searchEngineYearFilter.CA - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n key: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ],\n summary: {\n avgGrantSize: null,\n totalAsserts: null,\n avgGrantsAnnually: null,\n grantsState: null,\n avgAmount: null,\n largestAmount: null,\n medianAmount: null,\n range: null,\n customAnalysisList: [],\n foundationFinancialList: [],\n yearAnalysisList: [],\n nationalGivingHistory: null\n },\n giftList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'donationdate',\n orderDirection: 'desc',\n items: [],\n highlightFilter: [],\n },\n grantOverviewList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'category',\n orderDirection: 'desc',\n items: [\n { category: 'Animal Welfare', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Art & Culture', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Community', grants: '50', largest: '$200,00', average: '$2,000', score: '3', grantamount: '$300,00' },\n { category: 'Education', grants: '333', largest: '$1,317,386,921', average: '$3,958,476', score: '5', grantamount: '$1,318,172,382' },\n { category: 'Environment', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Health', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Religion', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Social & Human Services', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'Sports & Recreation', grants: '0', largest: '$0', average: '$0', score: '1', grantamount: '$0' },\n { category: 'TOTAL', grants: '383', largest: '-', average: '-', score: '-', grantamount: '$1,318,472,382' }, \n ]\n },\n directorList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'directorname',\n orderDirection: 'desc',\n items: []\n },\n noteList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'createdAt',\n orderDirection: 'desc',\n items: []\n },\n charts: {\n provinceList: [],\n rangeAmount: [],\n rangeSector: {}\n },\n toggleExpandFilters: {\n provinceOrState: false,\n city: false,\n year: false,\n stemmingSearch: false,\n county: false,\n sector: false\n },\n taxReturnPdf: []\n \n};\n\nconst foundationProfileCASlice = createSlice({\n name: \"foundation-profile-ca\",\n initialState,\n reducers: {\n init: (state, action) => {\n state.init = true;\n },\n handleChangeCountry: (state, action) => {\n state.countryList.forEach(country => {\n if (country.code === action.payload.code) {\n country.checked = action.payload.checked;\n }\n });\n },\n handleChangeProvinceOrState: (state, action) => {\n action.payload.forEach(item => {\n const togglelistItem = state.provinceOrStateList.find(o => o.code === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeCity: (state, action) => {\n\n action.payload.forEach(item => {\n const togglelistItem = state.cityList.find(o => o.name === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeSectorGifts: (state, action) => {\n\n action.payload.forEach(item => {\n const togglelistItem = state.sectorList.find(o => o.sectorName === item.value);\n \n if (togglelistItem) {\n togglelistItem.checked = item.checked;\n }\n \n });\n },\n handleChangeCounty: (state, action) => {\n state.countyList.forEach(county => {\n if (county.value === action.payload.value) {\n county.checked = action.payload.checked;\n }\n });\n },\n handleChangeYears: (state, action) => {\n state.yearList.forEach(year => {\n if (year.value === action.payload.value) {\n year.checked = action.payload.checked;\n }\n });\n },\n handleChangeSector: (state, action) => {\n state.sectorList.forEach(sector => {\n if (sector.value === action.payload.value) {\n sector.checked = action.payload.checked;\n }\n });\n },\n handleChangeRecipientName: (state, action) => {\n state.recipientName = action.payload;\n },\n handleAddNewNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData = {...initialState.noteData};\n },\n handleEditNote: (state, action) => {\n state.openPopupNote = true;\n state.noteData.id = action.payload.id;\n state.noteData.title = action.payload.title;\n state.noteData.description = action.payload.description;\n state.noteData.notificationDate = action.payload.notificationDate;\n state.noteData.emailNotification = action.payload.emailNotification;\n state.noteData.emails = action.payload.emails;\n },\n handleClosePopupNote: (state, action) => {\n state.openPopupNote = false;\n state.noteData = {...initialState.noteData};\n },\n handleChangeStemmingSearch: (state, action) => {\n state.stemmingSearch = action.payload;\n },\n handleClear: (state, action) => {\n state.openPopupNote = false;\n state.noteData = { ...initialState.noteData };\n state.profileName = '';\n state.lastReportYear = null;\n state.lastReportYear = null;\n state.registerYear = null;\n state.stateOrProvince = '';\n state.organizationRegion = '';\n state.city = '';\n state.onlineApplication = '';\n state.website = '';\n state.phoneNumber = '';\n state.fullAddress = '';\n state.recipientName = '';\n state.stemmingSearch = true;\n state.nationalGivingHistory = '';\n state.yearList = [\n ...Array(config.searchEngineYearFilter.CA - 2014 + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n key: (2014 + idx).toString(),\n value: (2014 + idx).toString(),\n label: (2014 + idx).toString(),\n checked: false\n }))\n ];\n state.summary = { ...initialState.summary };\n state.charts = { ...initialState.charts };\n state.giftList = { ...initialState.giftList };\n state.countryList = [];\n state.provinceOrStateList = [];\n state.cityList = [];\n state.countyList = [];\n state.sectorList = [];\n state.stemmingSearch = true; \n \n },\n handleApplyFilter: (state, action) => {\n state.applyFilter = action.payload;\n },\n handleClearCityList: (state, action) => {\n state.cityList = [];\n },\n handleClearGifts: (state, action) => {\n\n state.provinceOrStateList = state.provinceOrStateList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.cityList = [];\n\n state.countyList = state.countyList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.sectorList = state.sectorList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.yearList = state.yearList.map(item => ({\n ...item,\n checked: false\n }));\n\n state.applyFilter = action.payload;\n state.stemmingSearch = true;\n state.toggleExpandFilters = { ...initialState.toggleExpandFilters };\n \n state.giftList.pageNumber = 0;\n state.giftList.pageSize = 10;\n state.giftList.orderField = 'donationdate';\n state.giftList.orderDirection = 'desc';\n },\n handleToggleExpandFilters: (state, action) => {\n state.toggleExpandFilters = {\n ...state.toggleExpandFilters,\n [action.payload.id]: action.payload.value \n }\n },\n handleUpdateNoteItem: (state, action) => {\n var noteItem = state.noteList.items?.find(o => o.id === action.payload.id);\n if(noteItem) {\n noteItem[action.payload.key] = action.payload.value;\n }\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCA.matchFulfilled, (state, action) => {\n state.loadingGifts = false;\n state.giftList.pageNumber = action.payload.pageNumber;\n state.giftList.pageSize = action.payload.pageSize;\n state.giftList.pageCount = action.payload.pageCount;\n state.giftList.totalCount = action.payload.totalCount;\n state.giftList.orderField = action.payload.orderField;\n state.giftList.orderDirection = action.payload.orderDirection;\n state.giftList.items = action.payload.items;\n state.countyList = action.payload.aggrFilters.countiesFilter?.map(county => ({\n ...county,\n checked: !!state.countyList.find(o => o.key === county.key)?.checked,\n })) ?? [];\n state.giftList.highlightFilter = action.payload.aggrFilters.highlightFilter?.map(o => o.key) ?? [];\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCA.matchPending, (state, action) => {\n state.loadingGifts = true;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGiftsPagedListCA.matchRejected, (state, action) => {\n state.loadingGifts = false;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getGrantOverviewCA.matchFulfilled, (state, action) => {\n state.grantOverviewList.pageNumber = action.payload.pageNumber;\n state.grantOverviewList.pageSize = action.payload.pageSize;\n state.grantOverviewList.pageCount = action.payload.pageCount;\n state.grantOverviewList.totalCount = action.payload.totalCount;\n state.grantOverviewList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getDirectorListCA.matchFulfilled, (state, action) => {\n state.directorList.pageNumber = action.payload.pageNumber;\n state.directorList.pageSize = action.payload.pageSize;\n state.directorList.pageCount = action.payload.pageCount;\n state.directorList.totalCount = action.payload.totalCount;\n state.directorList.orderField = action.payload.orderField;\n state.directorList.orderDirection = action.payload.orderDirection;\n state.directorList.items = action.payload.items;\n }\n )\n .addMatcher(\n notesApi.endpoints.getNoteList.matchFulfilled, (state, action) => {\n state.noteList.pageNumber = action.payload.pageNumber;\n state.noteList.pageSize = action.payload.pageSize;\n state.noteList.orderField = action.payload.orderField;\n state.noteList.orderDirection = action.payload.orderDirection;\n state.noteList.pageCount = action.payload.pageCount;\n state.noteList.totalCount = action.payload.totalCount;\n state.noteList.items = action.payload.items;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getMainProfileCA.matchFulfilled, (state, action) => {\n state.profileName = action.payload.profileName;\n state.lastReportYear = action.payload.lastReportYear;\n state.registerYear = action.payload.registerYear;\n state.stateOrProvince = action.payload.stateOrProvince;\n state.organizationRegion = action.payload.organizationRegion;\n state.city = action.payload.city;\n state.onlineApplication = action.payload.onlineApplication;\n state.website = action.payload.website;\n state.phoneNumber = formatPhoneNumber(action.payload.phoneNumber);\n state.fullAddress = action.payload.fullAddress;\n state.nteeTitle = action.payload.nteeTitle;\n state.nteeDescription = action.payload.nteeDescription;\n state.contactEmail = action.payload.contactEmail;\n state.donorDesignation = action.payload.donorDesignation;\n \n state.summary.nationalGivingHistory = (action.payload.summary.nationalGivingHistory ?? action.payload.nationalGivingHistory) ?? '';\n state.summary.avgGrantSize = action.payload.summary.avgGrantSize;\n state.summary.totalAsserts = action.payload.summary.totalAsserts;\n state.summary.avgGrantsAnnually = action.payload.summary.avgGrantsAnnually;\n state.summary.grantsState = action.payload.summary.grantsState;\n\n state.summary.avgAmount = action.payload.summary.avgAmount;\n state.summary.largestAmount = action.payload.summary.largestAmount;\n state.summary.medianAmount = action.payload.summary.medianAmount;\n state.summary.range = action.payload.summary.range;\n state.programData.foundationId = action.payload.programData.foundationId;\n state.taxReturnPdf = action.payload.taxReturnPdf; \n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryByCodeWithTrigger.matchFulfilled, (state, action) => {\n\n state.countryList = [{\n ...action.payload,\n checked: true\n }];\n\n action.payload.provinceOrStateList.forEach(provinceOrState => {\n state.provinceOrStateList.push({\n ...provinceOrState,\n checked: false\n });\n });\n }\n )\n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.cityList = action.payload.map(item => ({\n ...item,\n checked: false\n }));\n }\n )\n .addMatcher(\n sectorCAApi.endpoints.getSectorListCA.matchFulfilled, (state, action) => {\n state.sectorList = action.payload.map(item => ({\n ...item,\n value: item.sectorName,\n checked: false,\n }));\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartProvinceListCA.matchFulfilled, (state, action) => {\n state.charts.provinceList = action.payload;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartRangeAmountListCA.matchFulfilled, (state, action) => {\n state.charts.rangeAmount = action.payload;\n }\n )\n .addMatcher(\n foundationProfileCanadianApi.endpoints.getChartRangeSectorCA.matchFulfilled, (state, action) => {\n state.charts.rangeSector = action.payload;\n }\n )\n }\n});\n\nexport const { \n init,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleChangeCity,\n handleChangeSector,\n handleChangeRecipientName,\n handleAddNewNote,\n handleEditNote,\n handleClosePopupNote,\n handleChangeStemmingSearch,\n handleChangeYears,\n handleClear,\n handleApplyFilter,\n handleClearCityList,\n handleClearGifts,\n handleToggleExpandFilters,\n handleChangeCounty,\n handleChangeSectorGifts,\n handleUpdateNoteItem,\n} = foundationProfileCASlice.actions;\n\nexport default foundationProfileCASlice.reducer;\n","import { useEffect } from 'react';\nimport { useLocation } from 'react-router';\nimport { useSelector } from \"react-redux\";\nimport { FOUNDATION_V2_PATH, FOUNDATION_CA_V2_PATH, FAVORITES_PATH } from 'utils/constants';\n\nconst GRANT_SECRETARY_PATH = '/main/grant-secretary';\n\nconst useRestoreScrollYPosition = () => {\n\n const { pathname } = useLocation();\n\n const {\n fetchStatus: { funders: GSFunders, fundersCustomDocument: GSFundersCustomDocument },\n } = useSelector(state => state.grantSecretaryState);\n\n const {\n fetchStatus: {\n favoritesPagedList,\n favoritesPagedSharedList,\n favoriteFundersPagedList,\n }\n } = useSelector(state => state.favoritesState);\n\n const lastLocation = JSON.parse(localStorage.getItem('lastScrollLocation'));\n const isFoundationPage = (pathname.includes(FOUNDATION_V2_PATH) || pathname.includes(FOUNDATION_CA_V2_PATH));\n\n useEffect(() => {\n if (lastLocation && lastLocation.pathname !== pathname && !isFoundationPage) {\n\n window.scrollTo(0, 0);\n localStorage.removeItem('lastScrollLocation');\n }\n\n if (lastLocation && lastLocation.pathname === pathname) {\n\n window.scrollTo(0, 0);\n\n if (pathname === GRANT_SECRETARY_PATH && GSFunders && GSFundersCustomDocument) {\n window.scrollTo(0, lastLocation.scrollPosition);\n\n } else if (pathname === FAVORITES_PATH && favoriteFundersPagedList && favoritesPagedSharedList && favoritesPagedList) {\n window.scrollTo(0, lastLocation.scrollPosition);\n }\n }\n }, [pathname, GSFunders, GSFundersCustomDocument, favoriteFundersPagedList, favoritesPagedSharedList, favoritesPagedList, lastLocation]);\n\n\n};\n\nconst storeLocationScrollPosition = () => {\n window.localStorage.setItem('lastScrollLocation', JSON.stringify({ pathname: window.location.pathname, scrollPosition: window.scrollY }));\n\n};\n\n\nexport { useRestoreScrollYPosition, storeLocationScrollPosition };","import { emptySplitApi } from './index'\n\nconst authManagementApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n register: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/register`,\n method: \"POST\",\n body: model,\n }),\n }),\n passwordRecovery: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/password-recovery`,\n method: \"POST\",\n body: model,\n }),\n }),\n passwordReset: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/password-reset`,\n method: \"POST\",\n body: model,\n }),\n }),\n settingUpAccount: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/setting-up-account`,\n method: \"POST\",\n body: model,\n }),\n }),\n confirmRegisterUser: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/confirm-register-user`,\n method: \"POST\",\n body: model,\n }),\n }),\n registerValidation: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/register-validation`,\n method: \"POST\",\n body: model,\n }),\n }),\n updatePassword: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/authManagement/update-password`,\n method: \"POST\",\n body: model,\n })\n })\n }),\n overrideExisting: false,\n});\n\nexport const { \n useRegisterMutation, \n usePasswordRecoveryMutation,\n usePasswordResetMutation,\n useSettingUpAccountMutation,\n useConfirmRegisterUserMutation,\n useRegisterValidationMutation,\n useUpdatePasswordMutation,\n} = authManagementApi;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { projectFundersApi } from \"Services/ProjectFundersService\";\nimport startcase from \"utils/startcase\";\n\nexport const initialState = {\n userProject: {\n id: null,\n value: null,\n label: null\n },\n allProjectList: [],\n letterTypeList: [\n { id: 'Inquiry', value: 'Letter of Inquiry', label: 'Letter of Inquiry' },\n { id: 'Proposal', value: 'Proposal', label: 'Proposal' },\n { id: 'ThankYou', value: 'Thank You Letter', label: 'Thank You Letter' },\n { id: 'ImpactReport', value: 'Impact Report Letter', label: 'Impact Report Letter' },\n { id: 'CustomLetter', value: 'Custom Letter', label: 'Custom Letter' },\n ],\n letterType: {\n id: '',\n value: '',\n label: ''\n },\n funders: {\n profileId: '',\n foundationSourceType: '',\n checkAll: false,\n itemsSelected: [],\n excludedSelected: [],\n fundersSelected: [],\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'foundationName',\n orderDirection: 'asc',\n items: []\n },\n openPopupFavourite: false,\n openPopupDelete: false,\n openPopupBlock: false,\n openPopupExportExcel: false,\n openPopupExportAll: false,\n openPopupPrintLabels: false,\n openPopupLetterheadFooterSettings: false,\n openPopupProfileSummary: false,\n },\n fundersCustomDocument: {\n profileId: '',\n foundationSourceType: '',\n flagFilter: 'All',\n checkAll: false,\n itemsSelected: [],\n excludedSelected: [],\n fundersSelected: [],\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'foundationName',\n orderDirection: 'asc',\n items: []\n },\n openPopupFavourite: false,\n openPopupDelete: false,\n openPopupBlock: false,\n openPopupExportExcel: false,\n openPopupExportAll: false,\n openPopupPrintLabels: false,\n openPopupLetterheadFooterSettings: false,\n openPopupProfileSummary: false,\n savedHeaderFooterSetting: false,\n },\n profileSummary: {\n profileName: 'Chesed Charity Foundation',\n lastReportYear: 2021,\n registerYear: 1973,\n stateOrProvince: 'ON',\n onlineApplication: 'http://www.torontofoundation.ca',\n webSite: 'http://www.torontofoundation.ca',\n phoneNumber: '(416)783-5395',\n fullAddress: '87 SULTANA AVE TORONTO ON M6A 1T4',\n summary: {\n avgGrantSize: 1488490,\n grantsState: 608,\n totalAsserts: 245068,\n avgGrantsAnnually: 73266744\n },\n countNotes: 2,\n },\n labelList: [\n {\n id: 'Avery5163',\n value: 'Avery 5163 (2 columns, 5 rows) - Recommended',\n label: 'Avery 5163 (2 columns, 5 rows) - Recommended'\n },\n {\n id: 'Avery5161',\n value: 'Avery 5161 (2 columns, 10 rows)',\n label: 'Avery 5161 (2 columns, 10 rows)'\n },\n {\n id: 'Avery5167',\n value: 'Avery 5167 (4 columns, 20 rows, for return addresses)',\n label: 'Avery 5167 (4 columns, 20 rows, for return addresses)'\n },\n {\n id: 'Avery6572',\n value: 'Avery 6572 (3 columns, 5 rows)',\n label: 'Avery 6572 (3 columns, 5 rows)'\n },\n {\n id: 'Avery6871',\n value: 'Avery 6871 (3 columns, 6 rows)',\n label: 'Avery 6871 (3 columns, 6 rows)'\n },\n {\n id: 'Avery7160',\n value: 'Avery 7160 (3 columns, 7 rows)',\n label: 'Avery 7160 (3 columns, 7 rows)'\n },\n {\n id: 'Envelope',\n value: 'Envelope',\n label: 'Envelope'\n }\n ],\n fetchStatus: {\n funders: false,\n fundersCustomDocument: false\n }\n};\n\nconst grantSecretarySlice = createSlice({\n name: \"grant-secretary\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n if (action.payload !== null) {\n state.userProject = action.payload;\n }\n },\n handleFillAllProject: (state, action) => {\n state.allProjectList = action.payload;\n },\n handleChangeLetterType: (state, action) => {\n if (action.payload !== null) {\n localStorage.setItem('currentLetterType', action.payload.id);\n state.letterType = state.letterTypeList.find(o => o.id === action.payload.id);\n }\n },\n\n handleCheckItemsChange: (state, action) => {\n const {\n itemsSelected,\n excludedSelected,\n type,\n checkAll\n } = action.payload;\n\n let fundersSelected = [...state[type].fundersSelected];\n\n fundersSelected.forEach(funder => {\n const findIndex = itemsSelected.indexOf(funder.id);\n\n if (findIndex === -1) {\n fundersSelected = fundersSelected.filter(o => o.id !== funder.id);\n }\n\n });\n\n itemsSelected.forEach(item => {\n const pagedListItem = state[type].pagedList.items.find(o => o.id === item);\n const existsFunder = fundersSelected.findIndex(o => o.profileId === pagedListItem?.profileId ?? '');\n\n if (pagedListItem && existsFunder === -1) {\n fundersSelected.push({\n id: pagedListItem.id,\n profileId: pagedListItem.profileId,\n foundationName: pagedListItem.foundationName,\n website: pagedListItem.website,\n foundationSourceType: pagedListItem.foundationSourceType,\n });\n }\n });\n\n state[type].itemsSelected = itemsSelected;\n state[type].excludedSelected = excludedSelected;\n state[type].checkAll = checkAll;\n state[type].fundersSelected = fundersSelected\n\n /*state[type].itemsSelected = itemsSelected;\n state[type].excludedSelected = excludedSelected;\n state[type].checkAll = checkAll;\n state[type].fundersSelected = [];\n \n itemsSelected.forEach(item => {\n const pagedItem = state[type].pagedList.items.find(o => o.id === item);\n \n state[type].fundersSelected.push({\n profileId: pagedItem.profileId,\n foundationName: pagedItem.foundationName,\n website: pagedItem.website\n });\n });*/\n },\n\n handleClear: (state, action) => {\n state.funders.checkAll = false;\n state.funders.checkAll = false;\n state.funders.itemsSelected = [];\n state.funders.excludedSelected = [];\n state.funders.fundersSelected = [];\n state.funders.pagedList = { ...initialState.funders.pagedList };\n\n state.fundersCustomDocument.checkAll = false;\n state.fundersCustomDocument.checkAll = false;\n state.fundersCustomDocument.itemsSelected = [];\n state.fundersCustomDocument.excludedSelected = [];\n state.fundersCustomDocument.fundersSelected = [];\n state.fundersCustomDocument.pagedList = { ...initialState.fundersCustomDocument.pagedList };\n state.fundersCustomDocument.flagFilter = 'All';\n\n state.letterType = { ...initialState.letterType };\n state.userProject = { ...initialState.userProject };\n state.allProjectList = [];\n },\n\n handleClosePopup: (state, action) => {\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenDeletePopup: (state, action) => {\n state[action.payload].openPopupDelete = true;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupFavourites: (state, action) => {\n state[action.payload].openPopupFavourite = true;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupExportExcel: (state, action) => {\n state[action.payload].openPopupExportExcel = true;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupExportAll: (state, action) => {\n state[action.payload].openPopupExportAll = true;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupPrintLabels: (state, action) => {\n state[action.payload].openPopupPrintLabels = true;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenLetterheadFooterSettings: (state, action) => {\n state[action.payload].openPopupLetterheadFooterSettings = true;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenProfileSummary: (state, action) => {\n state[action.payload.type].openPopupProfileSummary = true;\n state[action.payload.type].profileId = action.payload.profileId;\n state[action.payload.type].foundationSourceType = 'IRS'; //action.payload.foundationSourceType;\n\n if (action.payload.profileId.length > 10) {\n state[action.payload.type].foundationSourceType = 'CRA'\n }\n\n state[action.payload.type].openPopupLetterheadFooterSettings = false;\n state[action.payload.type].openPopupPrintLabels = false;\n state[action.payload.type].openPopupExportAll = false;\n state[action.payload.type].openPopupExportExcel = false;\n state[action.payload.type].openPopupFavourite = false;\n state[action.payload.type].openPopupBlock = false;\n state[action.payload.type].openPopupDelete = false;\n },\n handleOpenPopupBlockFunders: (state, action) => {\n state[action.payload].openPopupBlock = true;\n state[action.payload].openPopupProfileSummary = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupDelete = false;\n },\n handleChangeFlagFilter: (state, action) => {\n state.fundersCustomDocument.flagFilter = action.payload;\n },\n handleChangeHeaderFooterSetting: (state, action) => {\n state.fundersCustomDocument.savedHeaderFooterSetting = action.payload;\n }\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFunders.matchFulfilled, (state, action) => {\n state.funders.pagedList.pageNumber = action.payload.pageNumber;\n state.funders.pagedList.pageSize = action.payload.pageSize;\n state.funders.pagedList.pageCount = action.payload.pageCount;\n state.funders.pagedList.totalCount = action.payload.totalCount;\n state.funders.pagedList.orderField = action.payload.orderField;\n state.funders.pagedList.orderDirection = action.payload.orderDirection;\n state.funders.pagedList.items = action.payload.items?.map(o => ({ ...o, foundationName: startcase(o.foundationName) }));\n\n state.fetchStatus.funders = true;\n\n }\n )\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFundersCustomDocument.matchFulfilled, (state, action) => {\n state.fundersCustomDocument.pagedList.pageNumber = action.payload.pageNumber;\n state.fundersCustomDocument.pagedList.pageSize = action.payload.pageSize;\n state.fundersCustomDocument.pagedList.pageCount = action.payload.pageCount;\n state.fundersCustomDocument.pagedList.totalCount = action.payload.totalCount;\n state.fundersCustomDocument.pagedList.orderField = action.payload.orderField;\n state.fundersCustomDocument.pagedList.orderDirection = action.payload.orderDirection;\n state.fundersCustomDocument.pagedList.items = action.payload.items?.map(o => ({ ...o, foundationName: startcase(o.foundationName) }));\n\n state.fetchStatus.fundersCustomDocument = true;\n\n }\n )\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFundersCustomDocument.matchPending, (state, action) => {\n state.fetchStatus.fundersCustomDocument = false;\n }\n )\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFunders.matchPending, (state, action) => {\n state.fetchStatus.funders = false;\n }\n )\n\n }\n});\n\nexport const {\n handleChangeUserProject,\n handleFillAllProject,\n handleChangeLetterType,\n handleCheckItemsChange,\n handleClosePopup,\n handleOpenDeletePopup,\n handleOpenPopupFavourites,\n handleOpenPopupExportExcel,\n handleOpenPopupExportAll,\n handleOpenPopupPrintLabels,\n handleOpenLetterheadFooterSettings,\n handleOpenProfileSummary,\n handleOpenPopupBlockFunders,\n handleClear,\n handleChangeFlagFilter,\n handleChangeHeaderFooterSetting\n} = grantSecretarySlice.actions;\n\nexport default grantSecretarySlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { favoriteFundersApi } from \"Services/FavoriteFundersService\";\nimport { favoritesApi } from \"Services/FavoritesService\";\nimport startcase from \"utils/startcase\";\n\nexport const initialState = {\n selectedFavorite: {\n id: null,\n favoriteName: ''\n },\n popupFavorites: {\n open: false,\n mode: 'insert'\n },\n firstProfileId: '',\n openPopupDuplicateFavorites: false,\n favoritesPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'favoriteName',\n orderDirection: 'asc',\n items: []\n },\n favoritesPagedSharedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'favoriteName',\n orderDirection: 'asc',\n items: []\n },\n favoriteFundersPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'isQualified',\n orderDirection: 'desc',\n items: []\n },\n cacheFavoriteFundersList: [],\n fetchStatus: {\n favoritesPagedList: false,\n favoritesPagedSharedList: false,\n favoriteFundersPagedList: false\n }\n\n};\n\nconst favoritesSlice = createSlice({\n name: \"favorites-page\",\n initialState,\n reducers: {\n handleSelectFavorite: (state, action) => {\n state.selectedFavorite.id = action.payload.id;\n state.selectedFavorite.favoriteName = action.payload.favoriteName;\n },\n handleCreateNewFavorites: (state, action) => {\n state.popupFavorites.open = true;\n state.popupFavorites.mode = 'insert'\n },\n handleEditFavorites: (state, action) => {\n state.popupFavorites.open = true;\n state.popupFavorites.mode = 'edit';\n state.selectedFavorite.id = action.payload.id;\n state.selectedFavorite.favoriteName = action.payload.favoriteName;\n },\n handleClosePopupFavorites: (state, action) => {\n state.popupFavorites.open = false;\n state.popupFavorites.mode = 'insert';\n state.openPopupDuplicateFavorites = false;\n },\n handleConfirmEditFavorites: (state, action) => {\n state.selectedFavorite.favoriteName = action.payload.favoriteName;\n state.favoritesPagedList.items.forEach(item => {\n if (item.id === action.payload.id) {\n item.favoriteName = action.payload.favoriteName;\n return;\n }\n });\n },\n handleOpenPopupDuplicateFavorites: (state, action) => {\n state.openPopupDuplicateFavorites = true;\n },\n handleClearFavoriteFundersList: (state, action) => {\n state.favoriteFundersPagedList = { ...initialState.favoriteFundersPagedList };\n },\n handleResetPage: (state, action) => {\n state.favoriteFundersPagedList.pageNumber = 0;\n state.favoriteFundersPagedList.pageSize = 10;\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n favoritesApi.endpoints.getFavoritesPagedList.matchFulfilled, (state, action) => {\n state.favoritesPagedList.pageNumber = action.payload.pageNumber;\n state.favoritesPagedList.pageSize = action.payload.pageSize;\n state.favoritesPagedList.pageCount = action.payload.pageCount;\n state.favoritesPagedList.totalCount = action.payload.totalCount;\n state.favoritesPagedList.orderField = action.payload.orderField;\n state.favoritesPagedList.orderDirection = action.payload.orderDirection;\n state.favoritesPagedList.items = action.payload.items;\n\n state.fetchStatus.favoritesPagedList = true;\n }).addMatcher(\n favoritesApi.endpoints.getFavoritesPagedSharedList.matchFulfilled, (state, action) => {\n state.favoritesPagedSharedList.pageNumber = action.payload.pageNumber;\n state.favoritesPagedSharedList.pageSize = action.payload.pageSize;\n state.favoritesPagedSharedList.pageCount = action.payload.pageCount;\n state.favoritesPagedSharedList.totalCount = action.payload.totalCount;\n state.favoritesPagedSharedList.orderField = action.payload.orderField;\n state.favoritesPagedSharedList.orderDirection = action.payload.orderDirection;\n state.favoritesPagedSharedList.items = action.payload.items;\n\n state.fetchStatus.favoritesPagedSharedList = true;\n }).addMatcher(\n favoriteFundersApi.endpoints.getFavoriteFundersPagedList.matchFulfilled, (state, action) => {\n state.favoriteFundersPagedList.pageNumber = action.payload.pageNumber;\n state.favoriteFundersPagedList.pageSize = action.payload.pageSize;\n state.favoriteFundersPagedList.pageCount = action.payload.pageCount;\n state.favoriteFundersPagedList.totalCount = action.payload.totalCount;\n state.favoriteFundersPagedList.orderField = action.payload.orderField;\n state.favoriteFundersPagedList.orderDirection = action.payload.orderDirection;\n state.favoriteFundersPagedList.items = action.payload.items?.map(o => ({ ...o, foundationName: startcase(o.foundationName) }));\n\n state.fetchStatus.favoriteFundersPagedList = true;\n\n\n if (action.payload.pageNumber === 0 && action.payload.items.length > 0) {\n state.firstProfileId = action.payload.items[0]?.profileId;\n }\n\n state.favoriteFundersPagedList.items.forEach(item => {\n const favFunder = state.cacheFavoriteFundersList.find(item2 => item.profileId === item2.profileId);\n if (!favFunder) {\n state.cacheFavoriteFundersList.push(item);\n }\n });\n }).addMatcher(favoriteFundersApi.endpoints.getFavoriteFundersPagedList.matchPending, (state, action) => {\n state.fetchStatus.favoriteFundersPagedList = false;\n }).addMatcher(favoritesApi.endpoints.getFavoritesPagedList.matchPending, (state, action) => {\n state.fetchStatus.favoritesPagedList = false;\n }).addMatcher(favoritesApi.endpoints.getFavoritesPagedSharedList.matchPending, (state, action) => {\n state.fetchStatus.favoritesPagedSharedList = false;\n })\n }\n\n});\n\nexport const {\n handleSelectFavorite,\n handleOpenPopupFavorites,\n handleEditFavorites,\n handleCreateNewFavorites,\n handleClosePopupFavorites,\n handleConfirmEditFavorites,\n handleOpenPopupDuplicateFavorites,\n handleClearFavoriteFundersList,\n handleResetPage\n} = favoritesSlice.actions;\n\nexport default favoritesSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { couponApi } from \"Services/CouponService\";\n\nexport const initialState = {\n loadingList: false,\n openCreateCouponDialog: false,\n subscriptionPlanList: [],\n selectedSubscriptionPlanList: [],\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'name',\n orderDirection: 'asc',\n items: []\n },\n couponValues: {\n id: \"\",\n subscriptionPlanLabelList: [],\n isPaused: false,\n name: {\n value: \"\",\n error: \"\"\n },\n code: {\n value: \"\",\n error: \"\"\n },\n expirationDate: {\n value: null,\n error: \"\"\n },\n subscriptionPlanId: {\n value: null,\n error: \"\"\n },\n toggleExtraTime: {\n value: false,\n error: \"\"\n },\n toggleDiscount: {\n value: false,\n error: \"\"\n },\n toggleTemplate: {\n value: false,\n error: \"\"\n },\n extraTime: {\n value: null,\n error: \"\"\n },\n discount: {\n value: null,\n error: \"\"\n },\n }\n};\n\nconst manageCouponSlice = createSlice({\n name: \"manage-coupons\",\n initialState,\n reducers: {\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state.couponValues[field].error = errors[0];\n });\n },\n handleOpenForm: (state, action) => {\n if(action.payload === false) {\n state.couponValues = initialState.couponValues;\n state.selectedSubscriptionPlanList = [];\n } \n state.openCreateCouponDialog = action.payload;\n },\n handleUpdateCouponValues: (state, action) => {\n const { key, value } = action.payload;\n state.couponValues[key].value = value;\n state.couponValues[key].error = \"\";\n },\n handleToggleUpdate: (state, action) => {\n \n const { toggleToOn, toggleToOff, isSales, value } = action.payload;\n var toggleToOnValue = state.couponValues[toggleToOn].value;\n if (isSales) {\n state.couponValues[toggleToOn].value = !toggleToOnValue;\n state.couponValues[toggleToOn].error = \"\";\n \n state.couponValues[toggleToOff].value = toggleToOnValue;\n state.couponValues[toggleToOff].error = \"\";\n } else {\n //when adm, the both toggles can be false, but the both cant be true\n if (state.couponValues[toggleToOff].value === true && value === true) {\n state.couponValues[toggleToOn].value = value;\n state.couponValues[toggleToOn].error = \"\";\n\n state.couponValues[toggleToOff].value = !value;\n state.couponValues[toggleToOn].error = \"\";\n } else {\n state.couponValues[toggleToOn].value = value;\n state.couponValues[toggleToOn].error = \"\";\n }\n }\n \n },\n handleSetCouponValues: (state, action) => {\n const { \n id, \n name, \n code, \n expirationDate, \n isExtraTime, \n isDiscount, \n extraMonths, \n discountPercentual, \n subscriptionPlanLabelList, \n isPaused,\n isTemplate,\n } = action.payload;\n\n state.selectedSubscriptionPlanList = subscriptionPlanLabelList;\n state.couponValues = {\n id,\n isPaused,\n subscriptionPlanLabelList,\n name: {\n value: name,\n error: \"\"\n },\n code: {\n value: code,\n error: \"\"\n },\n expirationDate: {\n value: expirationDate,\n error: \"\"\n },\n toggleExtraTime: {\n value: isExtraTime,\n error: \"\"\n },\n toggleDiscount: {\n value: isDiscount,\n error: \"\"\n },\n toggleTemplate: {\n value: isTemplate,\n error: \"\"\n },\n extraTime: {\n value: extraMonths,\n error: \"\"\n },\n discount: {\n value: discountPercentual,\n error: \"\"\n }\n };\n },\n handleCheckSubscriptionPlans: (state, action) => {\n state.selectedSubscriptionPlanList = action.payload;\n },\n handleClearSubscriptionPlanList: (state, action) => {\n state.selectedSubscriptionPlanList = [];\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n couponApi.endpoints.getCouponPagedList.matchFulfilled, (state, action) => {\n state.loadingList = false;\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n couponApi.endpoints.getCouponPagedList.matchPending, (state, action) => {\n state.loadingList = true;\n }\n )\n .addMatcher(\n couponApi.endpoints.getCouponPagedList.matchRejected, (state, action) => {\n state.loadingList = false;\n }\n )\n .addMatcher(couponApi.endpoints.getCouponPlans.matchFulfilled, (state, action) => {\n state.subscriptionPlanList = action.payload?.map(plan => ({\n id: plan.id,\n value: plan.subscriptionPlanName,\n label: plan.planDescription\n })) ?? [];\n });\n }\n\n});\n\nexport const {\n handleModelErrors,\n handleOpenForm,\n handleSetCouponValues,\n handleToggleUpdate,\n handleUpdateCouponValues,\n handleCheckSubscriptionPlans,\n handleClearSubscriptionPlanList\n} = manageCouponSlice.actions;\n\nexport default manageCouponSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { deadlineApi } from \"Services/DeadlineService\";\n\nexport const initialState = {\n loadingList: false,\n importDialogPopup: {\n open: false,\n fileToImport: null,\n },\n openUpdateDialog: false,\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'foundationName',\n orderDirection: 'asc',\n items: []\n },\n deadlineValues: {\n id: \"\",\n foundationName: {\n value: \"\",\n error: \"\"\n },\n category: {\n value: \"\",\n error: \"\"\n },\n ein: {\n value: null,\n error: \"\"\n },\n country: {\n value: null,\n error: \"\"\n },\n url: {\n value: false,\n error: \"\"\n },\n grantAmount: {\n value: null,\n error: \"\"\n },\n deadlineDate: {\n value: null,\n error: \"\"\n },\n upcoming: {\n value: null,\n error: \"\"\n },\n description: {\n value: null,\n error: \"\"\n },\n }\n};\n\nconst manageDeadlineSlice = createSlice({\n name: \"manage-deadlines\",\n initialState,\n reducers: {\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state.deadlineValues[field].error = errors[0];\n });\n },\n handleSetImportDialogPopup: (state, action) => {\n state.importDialogPopup.open = action.payload.fileToImport;\n state.importDialogPopup.fileToImport = action.payload.fileToImport\n },\n handleOpenForm: (state, action) => {\n if(action.payload === false) {\n state.deadlineValues = initialState.deadlineValues;\n } \n state.openUpdateDialog = action.payload;\n },\n handleUpdateDeadlineValues: (state, action) => {\n const { key, value } = action.payload;\n state.deadlineValues[key].value = value;\n state.deadlineValues[key].error = \"\";\n },\n handleSetDeadlineValues: (state, action) => {\n const { \n id, \n foundationName, \n category, \n ein, \n country, \n url, \n grantAmount, \n deadlineDate, \n upcoming, \n description,\n } = action.payload;\n\n state.deadlineValues = {\n id,\n foundationName: {\n value: foundationName,\n error: \"\"\n },\n category: {\n value: category,\n error: \"\"\n },\n ein: {\n value: ein,\n error: \"\"\n },\n country: {\n value: country,\n error: \"\"\n },\n url: {\n value: url,\n error: \"\"\n },\n grantAmount: {\n value: grantAmount,\n error: \"\"\n },\n deadlineDate: {\n value: deadlineDate,\n error: \"\"\n },\n upcoming: {\n value: upcoming,\n error: \"\"\n },\n description: {\n value: description,\n error: \"\"\n },\n };\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n deadlineApi.endpoints.getDeadlinePagedList.matchFulfilled, (state, action) => {\n state.loadingList = false;\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n deadlineApi.endpoints.getDeadlinePagedList.matchPending, (state, action) => {\n state.loadingList = true;\n }\n )\n .addMatcher(\n deadlineApi.endpoints.getDeadlinePagedList.matchRejected, (state, action) => {\n state.loadingList = false;\n }\n )\n }\n});\n\nexport const {\n handleModelErrors,\n handleSetImportDialogPopup,\n handleOpenForm,\n handleSetDeadlineValues,\n handleUpdateDeadlineValues,\n} = manageDeadlineSlice.actions;\n\nexport default manageDeadlineSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { projectFundersApi } from \"Services/ProjectFundersService\";\nimport startcase from \"utils/startcase\";\n\nexport const initialState = {\n userProject: {\n id: null,\n value: null,\n label: null\n },\n allProjectList: [],\n letterTypeList: [\n { id: 'Inquiry', value: 'Inquiry', label: 'Letter of Inquiry' },\n { id: 'Proposal', value: 'Proposal', label: 'Proposal' },\n { id: 'ThankYou', value: 'ThankYou', label: 'Thank You Letter' },\n { id: 'ImpactReport', value: 'ImpactReport', label: 'Impact Report Letter' },\n { id: 'CustomLetter', value: 'CustomLetter', label: 'Custom Letter' },\n ],\n letterType: {\n id: '',\n value: '',\n label: ''\n },\n funders: {\n profileId: '',\n foundationSourceType: '',\n flagFilter: 'All',\n documentType: 'All',\n foundationStatus: 'All',\n checkAll: false,\n itemsSelected: [],\n excludedSelected: [],\n fundersSelected: [],\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'foundationName',\n orderDirection: 'asc',\n items: []\n },\n openPopupFavourite: false,\n openPopupDelete: false,\n openPopupBlock: false,\n openPopupExportExcel: false,\n openPopupExportAll: false,\n openPopupPrintLabels: false,\n openPopupLetterheadFooterSettings: false,\n openPopupProfileSummary: false,\n },\n profileSummary: {\n profileName: 'Chesed Charity Foundation',\n lastReportYear: 2021,\n registerYear: 1973,\n stateOrProvince: 'ON',\n onlineApplication: 'http://www.torontofoundation.ca',\n webSite: 'http://www.torontofoundation.ca',\n phoneNumber: '(416)783-5395',\n fullAddress: '87 SULTANA AVE TORONTO ON M6A 1T4',\n summary: {\n avgGrantSize: 1488490,\n grantsState: 608,\n totalAsserts: 245068,\n avgGrantsAnnually: 73266744\n },\n countNotes: 2,\n },\n labelList: [\n {\n id: 'Avery5161',\n value: 'Avery 5161 (2 columns, 10 rows)',\n label: 'Avery 5161 (2 columns, 10 rows)'\n },\n {\n id: 'Avery5163',\n value: 'Avery 5163 (2 columns, 5 rows)',\n label: 'Avery 5163 (2 columns, 5 rows)'\n },\n {\n id: 'Avery5167',\n value: 'Avery 5167 (4 columns, 20 rows, for return addresses)',\n label: 'Avery 5167 (4 columns, 20 rows, for return addresses)'\n },\n {\n id: 'Avery6572',\n value: 'Avery 6572 (3 columns, 5 rows)',\n label: 'Avery 6572 (3 columns, 5 rows)'\n },\n {\n id: 'Avery6871',\n value: 'Avery 6871 (3 columns, 6 rows)',\n label: 'Avery 6871 (3 columns, 6 rows)'\n },\n {\n id: 'Avery7160',\n value: 'Avery 7160 (3 columns, 7 rows)',\n label: 'Avery 7160 (3 columns, 7 rows)'\n },\n {\n id: 'Envelope',\n value: 'Envelope',\n label: 'Envelope'\n }\n ],\n};\n\nconst grantSecretarySliceV2 = createSlice({\n name: \"grant-secretary-v2\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n if (action.payload !== null) {\n state.userProject = action.payload;\n }\n },\n handleFillAllProject: (state, action) => {\n state.allProjectList = action.payload;\n },\n handleChangeLetterType: (state, action) => {\n if (action.payload !== null) {\n state.letterType = state.letterTypeList.find(o => o.id === action.payload.id);\n }\n },\n\n handleCheckItemsChange: (state, action) => {\n const {\n itemsSelected,\n excludedSelected,\n type,\n checkAll\n } = action.payload;\n\n let fundersSelected = [...state[type].fundersSelected];\n\n fundersSelected.forEach(funder => {\n const findIndex = itemsSelected.indexOf(funder.id);\n\n if (findIndex === -1) {\n fundersSelected = fundersSelected.filter(o => o.id !== funder.id);\n }\n\n });\n\n itemsSelected.forEach(item => {\n const pagedListItem = state[type].pagedList.items.find(o => o.id === item);\n const existsFunder = fundersSelected.findIndex(o => o.profileId === pagedListItem?.profileId ?? '');\n\n if (pagedListItem && existsFunder === -1) {\n fundersSelected.push(pagedListItem);\n }\n });\n\n state[type].itemsSelected = itemsSelected;\n state[type].excludedSelected = excludedSelected;\n state[type].checkAll = checkAll;\n state[type].fundersSelected = fundersSelected\n },\n\n handleClear: (state, action) => {\n state.funders.checkAll = false;\n state.funders.checkAll = false;\n state.funders.itemsSelected = [];\n state.funders.excludedSelected = [];\n state.funders.fundersSelected = [];\n state.funders.pagedList = { ...initialState.funders.pagedList };\n state.funders.flagFilter = 'All';\n state.funders.documentType = 'All';\n state.funders.foundationStatus = 'All';\n\n state.letterType = { ...initialState.letterType };\n state.userProject = { ...initialState.userProject };\n state.allProjectList = [];\n },\n\n handleClosePopup: (state, action) => {\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenDeletePopup: (state, action) => {\n state[action.payload].openPopupDelete = true;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupFavourites: (state, action) => {\n state[action.payload].openPopupFavourite = true;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupExportExcel: (state, action) => {\n state[action.payload].openPopupExportExcel = true;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupExportAll: (state, action) => {\n state[action.payload].openPopupExportAll = true;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenPopupPrintLabels: (state, action) => {\n state[action.payload].openPopupPrintLabels = true;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenLetterheadFooterSettings: (state, action) => {\n state[action.payload].openPopupLetterheadFooterSettings = true;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupBlock = false;\n state[action.payload].openPopupDelete = false;\n state[action.payload].openPopupProfileSummary = false;\n },\n handleOpenProfileSummary: (state, action) => {\n state[action.payload.type].openPopupProfileSummary = true;\n state[action.payload.type].profileId = action.payload.profileId;\n state[action.payload.type].foundationSourceType = 'IRS'; //action.payload.foundationSourceType;\n\n if (action.payload.profileId.length > 10) {\n state[action.payload.type].foundationSourceType = 'CRA'\n }\n\n state[action.payload.type].openPopupLetterheadFooterSettings = false;\n state[action.payload.type].openPopupPrintLabels = false;\n state[action.payload.type].openPopupExportAll = false;\n state[action.payload.type].openPopupExportExcel = false;\n state[action.payload.type].openPopupFavourite = false;\n state[action.payload.type].openPopupBlock = false;\n state[action.payload.type].openPopupDelete = false;\n },\n handleOpenPopupBlockFunders: (state, action) => {\n state[action.payload].openPopupBlock = true;\n state[action.payload].openPopupProfileSummary = false;\n state[action.payload].openPopupLetterheadFooterSettings = false;\n state[action.payload].openPopupPrintLabels = false;\n state[action.payload].openPopupExportAll = false;\n state[action.payload].openPopupExportExcel = false;\n state[action.payload].openPopupFavourite = false;\n state[action.payload].openPopupDelete = false;\n },\n handleChangeFlagFilter: (state, action) => {\n state.funders.flagFilter = action.payload;\n },\n handleFundersChangeLetterType: (state, action) => {\n state.funders.documentType = action.payload;\n },\n handleChangeDocumentType: (state, action) => {\n state.funders.foundationStatus = action.payload;\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n projectFundersApi.endpoints.getAllProjectFundersDocument.matchFulfilled, (state, action) => {\n state.funders.pagedList.pageNumber = action.payload.pageNumber;\n state.funders.pagedList.pageSize = action.payload.pageSize;\n state.funders.pagedList.pageCount = action.payload.pageCount;\n state.funders.pagedList.totalCount = action.payload.totalCount;\n state.funders.pagedList.orderField = action.payload.orderField;\n state.funders.pagedList.orderDirection = action.payload.orderDirection;\n state.funders.pagedList.items = action.payload.items?.map(o => ({ ...o, foundationName: startcase(o.foundationName) }));\n }\n )\n }\n});\n\nexport const {\n handleChangeUserProject,\n handleFillAllProject,\n handleChangeLetterType,\n handleCheckItemsChange,\n handleClosePopup,\n handleOpenDeletePopup,\n handleOpenPopupFavourites,\n handleOpenPopupExportExcel,\n handleOpenPopupExportAll,\n handleOpenPopupPrintLabels,\n handleOpenLetterheadFooterSettings,\n handleOpenProfileSummary,\n handleOpenPopupBlockFunders,\n handleClear,\n handleChangeFlagFilter,\n handleFundersChangeLetterType,\n handleChangeDocumentType,\n} = grantSecretarySliceV2.actions;\n\nexport default grantSecretarySliceV2.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { publicProfileApi } from \"Services/PublicProfilePageService\";\nimport { countryApi } from \"Services/CountryService\";\nimport { getYearList } from \"utils/dates\";\n\nexport const initialState = {\n country: '',\n profileId: '',\n gifts: {\n isLoadingGift: false,\n countyList: [],\n sectorList: [],\n stemmingSearch: false,\n selectedFilters: {\n country: [],\n provinceOrState: [],\n county: [],\n city: [],\n years: [],\n sectors: [],\n },\n provinceOrStateList: [],\n cityList: [],\n yearList: getYearList(),\n giftList: {\n countryList: [],\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'donationdate',\n orderDirection: 'desc',\n items: [],\n },\n },\n directors: {\n items: [],\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'directorname',\n orderDirection: 'asc',\n },\n charts: {\n rangeSector: {},\n rangeAmount: {},\n provinceList: [],\n }\n};\n\nconst publicFoundationProfileSlice = createSlice({\n name: \"public-foundation-profile\",\n initialState,\n reducers: {\n setProfileId: (state, action) => {\n state.profileId = action.payload;\n },\n setCountry: (state, action) => {\n state.country = action.payload;\n },\n handleChangeFilter: (state, action) => {\n const { key, value } = action.payload;\n state.gifts.selectedFilters[key] = value;\n },\n handleChangeStemmingSearch: (state, action) => {\n state.gifts.stemmingSearch = action.payload;\n },\n handleClearGifts: (state, action) => {\n state.gifts.selectedFilters = initialState.gifts.selectedFilters;\n\n state.gifts.stemmingSearch = true;\n\n state.giftList = initialState.gifts.giftList;\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n publicProfileApi.endpoints.getPublicCounties.matchFulfilled, (state, action) => {\n\n state.gifts.countyList = action.payload.map(county => ({\n id: county.key,\n label: county.label,\n value: county.value,\n secondaryAction: county.provinceOrStateCode,\n }));\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicGiftsPagedList.matchPending, (state, action) => {\n state.gifts.isLoadingGift = true;\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicGiftsPagedList.matchRejected, (state, action) => {\n state.gifts.isLoadingGift = false;\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicGiftsPagedList.matchFulfilled, (state, action) => {\n state.gifts.isLoadingGift = false;\n state.gifts.giftList = action.payload;\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryByCode.matchFulfilled, (state, action) => {\n state.gifts.provinceOrStateList = action.payload.provinceOrStateList.map(provinceOrState => ({\n id: provinceOrState.id,\n value: provinceOrState.code,\n label: provinceOrState.description,\n }));\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicSector.matchFulfilled, (state, action) => {\n state.gifts.sectorList = action.payload.map(item => ({\n id: item.id,\n value: item.sectorName,\n label: item.sectorName,\n }));\n }\n )\n .addMatcher(\n countryApi.endpoints.getCityListByProvinceOrStates.matchFulfilled, (state, action) => {\n state.gifts.cityList = action.payload.map(city => ({\n id: city.id,\n value: city.name,\n label: city.name,\n secondaryAction: city.provinceOrStateCode,\n }));\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicDirectorsPagedList.matchFulfilled, (state, action) => {\n state.directors = action.payload;\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicChartProvinceList.matchFulfilled, (state, action) => {\n state.charts.provinceList = action.payload;\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicRangeAmountList.matchFulfilled, (state, action) => {\n state.charts.rangeAmount = action.payload;\n }\n )\n .addMatcher(\n publicProfileApi.endpoints.getPublicRangeSectorList.matchFulfilled, (state, action) => {\n state.charts.rangeSector = action.payload;\n }\n )\n }\n});\n\nexport const {\n handleChangeFilter,\n handleChangeStemmingSearch,\n handleClearGifts,\n setCountry,\n setProfileId\n} = publicFoundationProfileSlice.actions;\n\nexport default publicFoundationProfileSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { subscriptionPlanApi } from 'Services/SubscriptionPlanService'\nimport { countryApi } from \"Services/CountryService\";\nimport { adminApi } from \"Services/AdminService\";\n\nexport const initialState = {\n roleList: ['Admin', 'User', 'SubUser', 'Supervisor', 'Member', 'Demo', 'Sales', 'SuperAdmin', 'IT'],\n additionalUsersList: [0,1,2,3,4,5,10,20],\n subscriptionPlanList: [],\n countryList: [],\n selectedCountry: {\n id: null,\n code: null,\n description: null,\n provinceOrStateList: []\n },\n selectedProvinceOrState: {\n id: null,\n code: null,\n description: null,\n },\n firstName: {\n value: '',\n error: ''\n },\n lastName: {\n value: '',\n error: ''\n },\n phoneNumber: {\n value: '',\n error: ''\n },\n\n userName: {\n value: '',\n error: ''\n },\n email: {\n value: '',\n error: ''\n },\n subscriptionPlanName: {\n value: '',\n error: ''\n },\n userRole: {\n value: '',\n error: ''\n },\n companyName: {\n value: '',\n error: ''\n },\n addressLine: {\n value: '',\n error: ''\n },\n addressLine2: {\n value: '',\n error: ''\n },\n city: {\n value: '',\n error: ''\n },\n provinceOrState: {\n value: '',\n error: ''\n },\n postalCode: {\n value: '',\n error: ''\n },\n country: {\n value: '',\n error: ''\n },\n additionalUsers: {\n value: '',\n error: ''\n },\n businessEin: {\n value: '',\n error: ''\n },\n startDay:{\n value: '',\n error: ''\n },\n isImporting: false,\n pipedrivePersonCode: null,\n pipedriveOrganizationCode: null,\n processPayment: false,\n openPopupPayment: false\n};\n\nconst createAccountSlice = createSlice({\n name: \"create-account\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleChangeSubscriptionPlan: (state, action) => {\n state.subscriptionPlanName.value = action.payload;\n state.subscriptionPlanName.error = '';\n state.additionalUsers.value = state.subscriptionPlanList.find(value => (value.subscriptionPlanName === action.payload)).amountUsers;\n state.additionalUsers.error = '';\n },\n handleChangeCountry: (state, action) => {\n state.selectedCountry = state.countryList.find(o => o.description === action.payload);\n state.country.value = state.countryList.find(o => o.description === action.payload).description;\n state.country.error = '';\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.provinceOrState = initialState.provinceOrState;\n },\n handleChangeProvinceOrState: (state, action) => {\n if (action.payload?.value) {\n state.selectedProvinceOrState = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '');\n state.provinceOrState.value = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '').description;\n }\n },\n handleFillCountryAndState: (state, action) => {\n\n const selectedCountry = state.countryList.find(o => o.description === state.country.value);\n\n if (selectedCountry) {\n state.selectedCountry = selectedCountry;\n const selectedProvinceOrState = selectedCountry.provinceOrStateList.find(o => o.description === state.provinceOrState.value);\n if (selectedProvinceOrState) {\n state.selectedProvinceOrState = selectedProvinceOrState;\n }\n }\n },\n handleChangeProcessPayment: (state, action) => {\n state.processPayment = action.payload;\n },\n \n handleChangeScheduleStartDay:(state, action) => {\n state.scheduleStartDay = action.payload;\n\n }, \n handleOpenPopupPayment: (state, action) => {\n state.openPopupPayment = true;\n },\n handleClosePopupPayment: (state, action) => {\n state.openPopupPayment = false;\n },\n clearErrors: (state, action) => {\n Object.keys(initialState).forEach(field => {\n if (state[field]?.error !== undefined) {\n state[field].error = ''; \n }\n });\n },\n clearForm: (state, action) => {\n state.firstName.value = '';\n state.firstName.error = '';\n\n state.lastName.value = '';\n state.lastName.error = '';\n \n state.phoneNumber.value = '';\n state.phoneNumber.error = '';\n\n state.userName.value = '';\n state.userName.error = '';\n\n state.email.value = '';\n state.email.error = '';\n\n state.subscriptionPlanName.value = '';\n state.subscriptionPlanName.error = '';\n\n state.userRole.value = '';\n state.userRole.error = '';\n\n state.companyName.value = '';\n state.companyName.error = '';\n\n state.businessEin.value = '';\n state.businessEin.error = '';\n \n state.addressLine.value = '';\n state.addressLine.error = '';\n\n state.addressLine2.value = '';\n state.addressLine2.error = '';\n\n state.city.value = '';\n state.city.error = '';\n\n state.provinceOrState.value = '';\n state.provinceOrState.error = '';\n\n state.postalCode.value = '';\n state.postalCode.error = '';\n\n state.country.value = '';\n state.country.error = '';\n\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.pipedriveOrganizationCode = null;\n state.pipedrivePersonCode = null;\n state.processPayment = false;\n state.openPopupPayment = false;\n\n state.startDay.value = '';\n state.startDay.error = '';\n\n state.scheduleStartDay = false;\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n subscriptionPlanApi.endpoints.getPlans.matchFulfilled, (state, action) => {\n state.subscriptionPlanList = action.payload;\n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryList.matchFulfilled, (state, action) => {\n state.countryList = action.payload;\n }\n )\n .addMatcher(\n adminApi.endpoints.importPipedriveOrganization.matchFulfilled, (state, action) => {\n\n state.isImporting = false;\n\n state.firstName.value = action.payload.firstName || '';\n state.firstName.error = '';\n\n state.lastName.value = action.payload.lastName || '';;\n state.lastName.error = '';\n \n state.phoneNumber.value = action.payload.phoneNumber || '';;\n state.phoneNumber.error = '';\n\n state.userName.value = action.payload.email || '';;\n state.userName.error = '';\n\n state.email.value = action.payload.email || '';;\n state.email.error = '';\n\n state.subscriptionPlanName.value = '';\n state.subscriptionPlanName.error = '';\n\n state.userRole.value = ''\n state.userRole.error = '';\n\n state.companyName.value = action.payload.companyName || '';;\n state.companyName.error = '';\n\n state.businessEin.value = action.payload.businessEin || '';;\n state.businessEin.error = '';\n \n state.addressLine.value = action.payload.addressLine || '';;\n state.addressLine.error = '';\n\n state.addressLine2.value = '';\n state.addressLine2.error = '';\n\n state.city.value = action.payload.city || '';;\n state.city.error = '';\n\n state.provinceOrState.value = action.payload.provinceOrState || '';;\n state.provinceOrState.error = '';\n\n state.postalCode.value = action.payload.postalCode || '';;\n state.postalCode.error = '';\n\n state.country.value = action.payload.country || '';;\n state.country.error = '';\n\n state.pipedrivePersonCode = action.payload.pipedrivePersonCode;\n state.pipedriveOrganizationCode = action.payload.pipedriveOrganizationCode;\n\n state.startDay.value = action.payload.startDay || '';\n state.startDay.error = '';\n\n state.scheduleStartDay = false;\n }\n )\n .addMatcher(\n adminApi.endpoints.importPipedriveOrganization.matchPending, (state, action) => {\n state.isImporting = true;\n }\n )\n .addMatcher(\n adminApi.endpoints.importPipedriveOrganization.matchRejected, (state, action) => {\n state.isImporting = false;\n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n clearForm,\n handleChangeSubscriptionPlan,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleFillCountryAndState,\n handleChangeProcessPayment,\n handleOpenPopupPayment,\n handleClosePopupPayment,\n handleChangeScheduleStartDay,\n clearErrors,\n} = createAccountSlice.actions;\n\nexport default createAccountSlice.reducer;","import { useRef, useEffect } from \"react\";\nimport {\n useTheme,\n Box, \n Stack,\n Typography,\n IconButton,\n Chip,\n Divider,\n LinearProgress,\n} from \"@mui/material\";\nimport { Download } from \"@mui/icons-material\";\n\nimport SubCard from \"ui-component/cards/SubCard\";\nimport { grey } from \"@mui/material/colors\";\n\nconst NotificationCard = ({\n title,\n fullDescription,\n tagNew,\n creationTimeAgo,\n documents=[],\n isLoading,\n}) => {\n\n const theme = useTheme();\n const descriptionRef = useRef();\n\n useEffect(() => {\n const images = descriptionRef.current.querySelectorAll(\"img\");\n images.forEach(image => {\n\n image.style.border = \"1px solid #fff\";\n image.style.borderRadius = \"8px\";\n image.style.boxShadow = \"0px 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 2px 8px 3px rgba(0, 0, 0, 0.1)\";\n\n const parent = image.parentElement;\n parent.style.display = \"flex\";\n parent.style.justifyContent = \"center\";\n parent.style.gap = \"4px\"\n })\n }, []);\n\n return (\n \n \n {tagNew &&\n \n }\n \n {creationTimeAgo}\n \n \n {title} \n br': { display: 'none' },\n 'p:not(:last-of-type)': { marginBottom: '1.5rem' },\n }} \n />\n \n {(isLoading || documents.length > 0) && (\n \n {isLoading \n ? \n \n Loading Attached Documents\n \n \n \n : (documents.length > 0 &&\n \n \n Attached Documents\n \n {documents.map((document, i) => (\n \n {i <= documents.length - 1 &&
}\n
\n {document.name} \n window.open(document.url)}>\n \n \n \n
\n ))}\n )\n }\n \n )}\n \n )\n}\n\nexport default NotificationCard;","import { emptySplitApi } from './index'\n\nexport const countryApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getCountryList: builder.query({\n query: (model) => ({\n url: `api/v1/auth-service/country`,\n method: \"GET\"\n }),\n }),\n getCountryByCode: builder.query({\n query: (model) => ({\n url: `api/v1/auth-service/country/${model.countryCode}`,\n method: \"GET\"\n }),\n }),\n getCountryByCodeWithTrigger: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/country/${model.countryCode}`,\n method: \"GET\"\n }),\n }),\n getCountryOnlyList: builder.query({\n query: (model) => ({\n url: `api/v1/auth-service/country/country-only`,\n method: \"GET\"\n }),\n }),\n getCountyOnlyList: builder.query({\n query: (model) => ({\n url: `api/v1/search-engine-service/country/counties`,\n method: \"GET\"\n }),\n }),\n getCityListByProvinceOrStates: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/country/city-list`,\n method: \"POST\",\n body: model\n }),\n }),\n getProvinceOrStateListByCountryCodes: builder.mutation({\n query: (countryCodes) => ({\n url: `api/v1/auth-service/country/province-state-list`,\n method: \"POST\",\n body: [...countryCodes]\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetCountryListQuery,\n useGetCityListByProvinceOrStatesMutation,\n useGetCountryOnlyListQuery,\n useGetCountyOnlyListQuery,\n useGetProvinceOrStateListByCountryCodesMutation,\n useGetCountryByCodeQuery,\n useGetCountryByCodeWithTriggerMutation\n} = countryApi;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { subscriptionPlanApi } from 'Services/SubscriptionPlanService'\n\nexport const initialState = {\n roleList: ['Admin', 'User', 'SubUser', 'supervisor', 'member', 'Demo', 'Sales', 'SuperAdmin', 'IT'],\n subscriptionPlanName: {\n value: '',\n error: ''\n },\n planDescription: {\n value: '',\n error: ''\n },\n displayplan: {\n value: '',\n error: ''\n },\n amountYears: {\n value: '',\n error: ''\n },\n amountMonths: {\n value: '',\n error: ''\n },\n amountDays: {\n value: '',\n error: ''\n },\n amountLicenses: {\n value: '',\n error: ''\n },\n amountPlan: {\n value: '',\n error: ''\n }\n};\n\nconst createSubscriptionPlanSlice = createSlice({\n name: \"create-subscription-plan\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleChangeSubscriptionPlan: (state, action) => {\n state.subscriptionPlanName.value = action.payload;\n state.subscriptionPlanName.error = '';\n \n }, \n handleChangeDisplayPlan: (state, action) => {\n state.displayplan = action.payload;\n }, \n clearErrors: (state, action) => {\n Object.keys(initialState).forEach(field => {\n if (state[field]?.error !== undefined) {\n state[field].error = ''; \n }\n });\n },\n clearForm: (state, action) => {\n state.subscriptionPlanName.value = '';\n state.subscriptionPlanName.error = '';\n\n state.planDescription.value = '';\n state.planDescription.error = '';\n\n state.displayplan.value = '';\n state.displayplan.error = '';\n \n state.amountYears.value = '';\n state.amountYears.error = '';\n\n state.amountMonths.value = '';\n state.amountMonths.error = '';\n\n state.amountDays.value = '';\n state.amountDays.error = '';\n\n state.amountLicenses.value = '';\n state.amountLicenses.error = '';\n\n state.amountPlan.value = '';\n state.amountPlan.error = '';\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n subscriptionPlanApi.endpoints.getPlans.matchFulfilled, (state, action) => {\n state.subscriptionPlanList = action.payload;\n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n clearForm,\n clearErrors,\n handleChangeDisplayPlan\n} = createSubscriptionPlanSlice.actions;\n\nexport default createSubscriptionPlanSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { adminApi } from 'Services/AdminService';\nimport { countryApi } from 'Services/CountryService';\n\nexport const initialState = {\n roleList: ['Admin', 'User', 'SubUser', 'Supervisor', 'Member', 'Demo', 'Sales', 'SuperAdmin', 'IT'],\n subscriptionPlanList: [],\n countryList: [],\n selectedCountry: {\n id: null,\n code: null,\n description: null,\n provinceOrStateList: []\n },\n selectedProvinceOrState: {\n id: null,\n code: null,\n description: null,\n },\n firstName: {\n value: '',\n error: ''\n },\n lastName: {\n value: '',\n error: ''\n },\n phoneNumber: {\n value: '',\n error: ''\n },\n userName: {\n value: '',\n error: ''\n },\n email: {\n value: '',\n error: ''\n },\n planDescription: {\n value: '',\n error: ''\n },\n expirationDate: {\n value: '',\n error: ''\n },\n amountUsers: {\n value: '',\n error: ''\n },\n amountLicenses: {\n value: '',\n error: ''\n },\n userRole: {\n value: '',\n error: ''\n },\n companyName: {\n value: '',\n error: ''\n },\n businessEin: {\n value: '',\n error: ''\n },\n addressLine: {\n value: '',\n error: ''\n },\n addressLine2: {\n value: '',\n error: ''\n },\n city: {\n value: '',\n error: ''\n },\n provinceOrState: {\n value: '',\n error: ''\n },\n postalCode: {\n value: '',\n error: ''\n },\n country: {\n value: '',\n error: ''\n },\n userNameIsEmail: {\n value: false,\n error: ''\n },\n startDay:{\n value: '',\n error: ''\n },\n scheduleStartDay:{\n value: '',\n error: ''\n },\n emailConfirmed:{\n value: '',\n error: ''\n }\n};\n\nconst updateAccountSlice = createSlice({\n name: \"update-account\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleFillCountryAndState: (state, action) => {\n\n const selectedCountry = state.countryList.find(o => o.description === state.country.value);\n\n if (selectedCountry) {\n state.selectedCountry = selectedCountry;\n const selectedProvinceOrState = selectedCountry.provinceOrStateList.find(o => o.description === state.provinceOrState.value);\n if (selectedProvinceOrState) {\n state.selectedProvinceOrState = selectedProvinceOrState;\n }\n }\n },\n handleChangeCountry: (state, action) => {\n state.selectedCountry = state.countryList.find(o => o.description === action.payload);\n state.country.value = state.countryList.find(o => o.description === action.payload).description;\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.provinceOrState = initialState.provinceOrState;\n },\n handleChangeProvinceOrState: (state, action) => {\n if (action.payload?.value) {\n state.selectedProvinceOrState = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '');\n state.provinceOrState.value = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '').description;\n }\n },\n handleChangeScheduleStartDay:(state, action) => {\n \n if(!action.payload){\n state.startDay.value = null\n state.startDay.error = ''\n }\n state.scheduleStartDay.value = action.payload;\n state.scheduleStartDay.error = ''\n\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n adminApi.endpoints.getUserAccount.matchFulfilled, (state, action) => {\n Object.entries(action.payload).forEach(([field, value]) => {\n if (state[field] != null) {\n state[field].value = value ?? ''; \n if (field === 'userRole') {\n const roles = value.split(',');\n state[field].value = roles[0];\n }\n }\n }); \n }\n )\n .addMatcher(\n countryApi.endpoints.getCountryList.matchFulfilled, (state, action) => {\n state.countryList = action.payload;\n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleFillCountryAndState,\n handleChangeScheduleStartDay\n} = updateAccountSlice.actions;\n\nexport default updateAccountSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\n\nexport const initialState = {\n foundationName: {\n value: '',\n error: ''\n },\n registeredName: {\n value: '',\n error: ''\n },\n otherName: {\n value: '',\n error: ''\n },\n phoneNumber: {\n value: '',\n error: ''\n },\n email: {\n value: '',\n error: ''\n },\n site: {\n value: '',\n error: ''\n },\n address: {\n value: '',\n error: ''\n },\n complement: {\n value: '',\n error: ''\n },\n city: {\n value: '',\n error: ''\n },\n province: {\n value: '',\n error: ''\n },\n postalCode: {\n value: '',\n error: ''\n },\n bn: {\n value: '',\n error: ''\n } \n};\n\nconst updateFoundationSlice = createSlice({\n name: \"update-foundation-ca\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n \n },\n \n});\n\nexport const { \n handleChange,\n handleModelErrors,\n} = updateFoundationSlice.actions;\n\nexport default updateFoundationSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\n\nexport const initialState = {\n foundationName: {\n value: '',\n error: ''\n },\n registeredName: {\n value: '',\n error: ''\n },\n otherName: {\n value: '',\n error: ''\n },\n phoneNumber: {\n value: '',\n error: ''\n },\n email: {\n value: '',\n error: ''\n },\n site: {\n value: '',\n error: ''\n },\n address: {\n value: '',\n error: ''\n },\n complement: {\n value: '',\n error: ''\n },\n city: {\n value: '',\n error: ''\n },\n state: {\n value: '',\n error: ''\n },\n zipCode: {\n value: '',\n error: ''\n },\n ein: {\n value: '',\n error: ''\n } \n};\n\nconst updateFoundationSlice = createSlice({\n name: \"update-foundation-us\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n \n },\n \n});\n\nexport const { \n handleChange,\n handleModelErrors,\n} = updateFoundationSlice.actions;\n\nexport default updateFoundationSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { projectBudgetApi } from \"Services/ProjectBudgetService\";\n\nexport const initialState = {\n id: null,\n projectDescription: '',\n budgetDescription: '',\n description: {\n value: '',\n error: ''\n },\n categoryDescription: {\n value: '',\n error: ''\n },\n amount: {\n value: '',\n error: ''\n },\n checkAll: false,\n openBudgetDialog: false,\n openResetDialog: false,\n openDeleteSelectedDialog: false,\n openDeleteAllDialog: false,\n openDeleteOneDialog: false,\n incomePagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'description',\n orderDirection: 'desc',\n items: []\n },\n incomeSelected: [],\n excludedSelected: []\n};\n\nconst incomeSlice = createSlice({\n name: \"project-income\",\n initialState,\n reducers: {\n setProjectDescription: (state, action) => {\n state.projectDescription = action.payload;\n },\n handleOpenBudgetDialog: (state, action) => {\n state.openBudgetDialog = action.payload;\n },\n handleCloseDialog: (state, action) => {\n state.openBudgetDialog = false;\n state.openResetDialog = false;\n state.openDeleteSelectedDialog = false;\n state.openDeleteAllDialog = false;\n state.openDeleteOneDialog = false;\n },\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleNewBudget: (state, action) => {\n state.id = null;\n state.description.value = '';\n state.description.error = '';\n state.categoryDescription.value = '';\n state.categoryDescription.error = '';\n state.amount.value = '';\n state.amount.error = '';\n state.openBudgetDialog = true;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleOpenResetDialog: (state, action) => {\n state.openResetDialog = true;\n },\n handleOpenDeleteSelectedDialog: (state, action) => {\n state.openDeleteSelectedDialog = true;\n },\n handleOpenDeleteAllDialog: (state, action) => {\n state.openDeleteAllDialog = true;\n },\n handleOpenDeleteOneDialog: (state, action) => {\n state.id = action.payload.id;\n state.budgetDescription = action.payload.description;\n state.openDeleteOneDialog = true;\n },\n handleOpenEditDialog: (state, action) => {\n state.id = action.payload.id;\n state.description.value = action.payload.description;\n state.description.error = '';\n state.categoryDescription.value = action.payload.categoryDescription || '';\n state.categoryDescription.error = '';\n state.amount.value = action.payload.amount;\n state.amount.error = '';\n state.openBudgetDialog = true;\n },\n handleClearSelection : (state, action) => {\n state.incomeSelected = [];\n state.excludedSelected = [];\n state.checkAll = false;\n },\n handleSelectItem: (state, action) => {\n\n if (state.incomeSelected.indexOf(action.payload) === -1) {\n state.incomeSelected.push(action.payload);\n }\n else {\n state.incomeSelected = state.incomeSelected.filter(item => item !== action.payload);\n }\n\n if (state.checkAll) {\n const indeterminated = state.incomeSelected.length > 0 && state.incomeSelected.length < state.incomePagedList.totalCount;\n\n if (indeterminated) {\n state.excludedSelected.push(action.payload);\n }\n }\n \n },\n handleToggleAll: (state, action) => {\n let copySelected = [...state.incomeSelected];\n const excludedItems = [];\n\n state.incomePagedList.items.forEach(item => {\n const existsIndex = copySelected.indexOf(item.id);\n \n if (existsIndex === -1) {\n copySelected.push(item.id);\n }\n else {\n copySelected.splice(existsIndex, 1);\n excludedItems.push(item.id);\n }\n });\n\n if (copySelected.length === state.incomePagedList.totalCount) {\n state.checkAll = !state.checkAll;\n }\n\n const indeterminated = state.checkAll && copySelected.length > 0 && copySelected.length < state.incomePagedList.totalCount;\n\n if (indeterminated) {\n excludedItems.forEach(item => {\n state.excludedSelected.push(item);\n });\n }\n\n state.incomeSelected = copySelected;\n },\n handleToggleCheckExclusive: (state, action) => {\n const toggleCheck = !state.checkAll;\n \n if (toggleCheck) {\n const copyData = state.incomePagedList.items.map(item => (\n item.id\n ));\n \n const length = copyData.length;\n \n for (let index = 0; index < state.incomePagedList.totalCount - length; index++) {\n copyData.push('');\n };\n\n state.incomeSelected = copyData;\n }\n else {\n state.incomeSelected = [];\n }\n\n state.excludedSelected = [];\n state.checkAll = toggleCheck;\n },\n handlePageChangeWithCheckAll: (state, action) => {\n const copySelected = [...state.incomeSelected];\n\n state.incomePagedList.items.forEach(item => {\n const emptyIndex = copySelected.indexOf('');\n\n if (emptyIndex !== -1) {\n copySelected[emptyIndex] = item.id;\n } \n });\n\n state.incomeSelected = copySelected;\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n projectBudgetApi.endpoints.getAllIncomePagedList.matchFulfilled, (state, action) => {\n state.incomePagedList.pageNumber = action.payload.pageNumber;\n state.incomePagedList.pageSize = action.payload.pageSize;\n state.incomePagedList.pageCount = action.payload.pageCount;\n state.incomePagedList.totalCount = action.payload.totalCount;\n state.incomePagedList.orderField = action.payload.orderField;\n state.incomePagedList.orderDirection = action.payload.orderDirection;\n state.incomePagedList.items = action.payload.items;\n }\n )\n }\n\n});\n\nexport const { \n setProjectDescription,\n handleOpenBudgetDialog,\n handleCloseDialog,\n handleChange,\n handleNewBudget,\n handleModelErrors,\n handleBudgetSelection,\n handleOpenResetDialog,\n handleOpenDeleteSelectedDialog,\n handleOpenDeleteAllDialog,\n handleOpenDeleteOneDialog,\n handleOpenEditDialog,\n handleClearSelection,\n handleCheckAllSelection,\n handleSelectItem,\n handleToggleAll,\n handleToggleCheckExclusive,\n handlePageChangeWithCheckAll\n} = incomeSlice.actions;\n\nexport default incomeSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { projectBudgetApi } from \"Services/ProjectBudgetService\";\n\nexport const initialState = {\n id: null,\n projectDescription: '',\n budgetDescription: '',\n description: {\n value: '',\n error: ''\n },\n categoryDescription: {\n value: '',\n error: ''\n },\n amount: {\n value: '',\n error: ''\n },\n checkAll: false,\n openBudgetDialog: false,\n openResetDialog: false,\n openDeleteSelectedDialog: false,\n openDeleteAllDialog: false,\n openDeleteOneDialog: false,\n expensePagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'description',\n orderDirection: 'desc',\n items: []\n },\n expenseSelected: [],\n excludedSelected: []\n};\n\nconst expenseSlice = createSlice({\n name: \"project-expense\",\n initialState,\n reducers: {\n setProjectDescription: (state, action) => {\n state.projectDescription = action.payload;\n },\n handleOpenBudgetDialog: (state, action) => {\n state.openBudgetDialog = action.payload;\n },\n handleCloseDialog: (state, action) => {\n state.openBudgetDialog = false;\n state.openResetDialog = false;\n state.openDeleteSelectedDialog = false;\n state.openDeleteAllDialog = false;\n state.openDeleteOneDialog = false;\n },\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleNewBudget: (state, action) => {\n state.id = null;\n state.description.value = '';\n state.description.error = '';\n state.categoryDescription.value = null;\n state.categoryDescription.error = '';\n state.amount.value = '';\n state.amount.error = '';\n state.openBudgetDialog = true;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleOpenResetDialog: (state, action) => {\n state.openResetDialog = true;\n },\n handleOpenDeleteSelectedDialog: (state, action) => {\n state.openDeleteSelectedDialog = true;\n },\n handleOpenDeleteAllDialog: (state, action) => {\n state.openDeleteAllDialog = true;\n },\n handleOpenDeleteOneDialog: (state, action) => {\n state.id = action.payload.id;\n state.budgetDescription = action.payload.description;\n state.openDeleteOneDialog = true;\n },\n handleOpenEditDialog: (state, action) => {\n state.id = action.payload.id;\n state.description.value = action.payload.description;\n state.description.error = '';\n state.categoryDescription.value = action.payload.categoryDescription || '';\n state.categoryDescription.error = '';\n state.amount.value = action.payload.amount;\n state.amount.error = '';\n state.openBudgetDialog = true;\n },\n handleClearSelection: (state, action) => {\n state.expenseSelected = [];\n state.excludedSelected = [];\n state.checkAll = false;\n },\n handleChangeCategory: (state, action) => {\n state.categoryDescription.error = '';\n state.categoryDescription.value = action.payload?.value || null;\n },\n handleSelectItem: (state, action) => {\n\n if (state.expenseSelected.indexOf(action.payload) === -1) {\n state.expenseSelected.push(action.payload);\n }\n else {\n state.expenseSelected = state.expenseSelected.filter(item => item !== action.payload);\n }\n\n if (state.checkAll) {\n const indeterminated = state.expenseSelected.length > 0 && state.expenseSelected.length < state.expensePagedList.totalCount;\n\n if (indeterminated) {\n state.excludedSelected.push(action.payload);\n }\n }\n \n },\n handleToggleAll: (state, action) => {\n let copySelected = [...state.expenseSelected];\n const excludedItems = [];\n\n state.expensePagedList.items.forEach(item => {\n const existsIndex = copySelected.indexOf(item.id);\n \n if (existsIndex === -1) {\n copySelected.push(item.id);\n }\n else {\n copySelected.splice(existsIndex, 1);\n excludedItems.push(item.id);\n }\n });\n\n if (copySelected.length === state.expensePagedList.totalCount) {\n state.checkAll = !state.checkAll;\n }\n\n const indeterminated = state.checkAll && copySelected.length > 0 && copySelected.length < state.expensePagedList.totalCount;\n\n if (indeterminated) {\n excludedItems.forEach(item => {\n state.excludedSelected.push(item);\n });\n }\n\n state.expenseSelected = copySelected;\n },\n handleToggleCheckExclusive: (state, action) => {\n const toggleCheck = !state.checkAll;\n \n if (toggleCheck) {\n const copyData = state.expensePagedList.items.map(item => (\n item.id\n ));\n \n const length = copyData.length;\n \n for (let index = 0; index < state.expensePagedList.totalCount - length; index++) {\n copyData.push('');\n };\n\n state.expenseSelected = copyData;\n }\n else {\n state.expenseSelected = [];\n }\n\n state.excludedSelected = [];\n state.checkAll = toggleCheck;\n },\n handlePageChangeWithCheckAll: (state, action) => {\n const copySelected = [...state.expenseSelected];\n\n state.expensePagedList.items.forEach(item => {\n const emptyIndex = copySelected.indexOf('');\n\n if (emptyIndex !== -1) {\n copySelected[emptyIndex] = item.id;\n } \n });\n\n state.expenseSelected = copySelected;\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n projectBudgetApi.endpoints.getAllExpensePagedList.matchFulfilled, (state, action) => {\n state.expensePagedList.pageNumber = action.payload.pageNumber;\n state.expensePagedList.pageSize = action.payload.pageSize;\n state.expensePagedList.pageCount = action.payload.pageCount;\n state.expensePagedList.totalCount = action.payload.totalCount;\n state.expensePagedList.orderField = action.payload.orderField;\n state.expensePagedList.orderDirection = action.payload.orderDirection;\n state.expensePagedList.items = action.payload.items;\n }\n )\n }\n\n});\n\nexport const { \n setProjectDescription,\n handleOpenBudgetDialog,\n handleCloseDialog,\n handleChange,\n handleNewBudget,\n handleModelErrors,\n handleBudgetSelection,\n handleOpenResetDialog,\n handleOpenDeleteSelectedDialog,\n handleOpenDeleteAllDialog,\n handleOpenDeleteOneDialog,\n handleOpenEditDialog,\n handleClearSelection,\n handleChangeCategory,\n handleCheckAllSelection,\n handleSelectItem,\n handleToggleAll,\n handleToggleCheckExclusive,\n handlePageChangeWithCheckAll,\n} = expenseSlice.actions;\n\nexport default expenseSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { inquiryLetterApi } from \"Services/InquiryLetterService\";\n\nexport const initialState = {\n id: null,\n userProject: {\n id: '',\n value: '',\n label: ''\n },\n activeStep: 0,\n inquiryDocument: {\n introduction: '',\n describeOrganization: '',\n needStatement: '',\n methodology: '',\n otherFunding: '',\n summary: ''\n },\n stepList: [],\n forceDisabled: false,\n autosaveEnabled: false,\n timeoutId: null,\n};\n\nconst inquirySlice = createSlice({\n name: \"document-generator-inquiry\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n state.userProject = action.payload;\n },\n handleStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleChangeDocument: (state, action) => {\n if (action.payload.document.replace(/<(.|\\n)*?>/g, '').trim().length === 0) {\n state.inquiryDocument[action.payload.stepName] = null;\n }\n else {\n state.inquiryDocument[action.payload.stepName] = action.payload.document;\n }\n },\n handleSaveSuccess: (state, action) => {\n state.id = action.payload.data;\n },\n handleAutoSaveEnabled: (state, action) => {\n state.autosaveEnabled = action.payload;\n },\n handleClear: (state, action) => {\n state.id = null;\n state.activeStep = 0;\n state.userProject.id = '';\n state.userProject.value = '';\n state.userProject.label = '';\n state.autosaveEnabled = false;\n state.inquiryDocument.introduction = \"\";\n state.inquiryDocument.describeOrganization = \"\";\n state.inquiryDocument.needStatement = \"\";\n state.inquiryDocument.methodology = \"\";\n state.inquiryDocument.otherFunding = \"\";\n state.inquiryDocument.summary = \"\";\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n inquiryLetterApi.endpoints.getStepList.matchFulfilled, (state, action) => {\n state.stepList = action.payload;\n }\n )\n .addMatcher(\n inquiryLetterApi.endpoints.getInquiryLetter.matchFulfilled, (state, action) => {\n state.id = action.payload.id;\n state.inquiryDocument.introduction = action.payload.introduction;\n state.inquiryDocument.describeOrganization = action.payload.describeOrganization;\n state.inquiryDocument.needStatement = action.payload.needStatement;\n state.inquiryDocument.methodology = action.payload.methodology;\n state.inquiryDocument.otherFunding = action.payload.otherFunding;\n state.inquiryDocument.summary = action.payload.summary;\n state.inquiryDocument.notesQuantity = action.payload.notesQuantity;\n }\n )\n }\n\n});\n\nexport const { \n handleChangeUserProject,\n handleStep,\n handleChangeDocument,\n handleSaveSuccess,\n handleAutoSaveEnabled,\n handleClear,\n} = inquirySlice.actions;\n\nexport default inquirySlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { proposalLetterApi } from \"Services/ProposalLetterService\";\n\nexport const initialState = {\n id: null,\n userProject: {\n id: '',\n value: '',\n label: ''\n },\n activeStep: 0,\n proposalDocument: {\n coverLetter: '',\n executiveSummary: '',\n needStatement: '',\n goals: '',\n methods: '',\n evaluation: '',\n funding: '',\n organization: '',\n closingStatement: '',\n },\n stepList: [],\n forceDisabled: false,\n autosaveEnabled: false,\n};\n\nconst proposalSlice = createSlice({\n name: \"document-generator-proposal\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n state.userProject = action.payload;\n },\n handleStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleChangeDocument: (state, action) => {\n if (action.payload.document.replace(/<(.|\\n)*?>/g, '').trim().length === 0) {\n state.proposalDocument[action.payload.stepName] = null;\n }\n else {\n state.proposalDocument[action.payload.stepName] = action.payload.document;\n }\n },\n handleSaveSuccess: (state, action) => {\n state.id = action.payload.data;\n },\n handleAutoSaveEnabled: (state, action) => {\n state.autosaveEnabled = action.payload;\n },\n handleClear: (state, action) => {\n state.id = null;\n state.activeStep = 0;\n state.userProject.id = '';\n state.userProject.value = '';\n state.userProject.label = '';\n state.autosaveEnabled = false;\n state.proposalDocument = initialState.proposalDocument;\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n proposalLetterApi.endpoints.getProposalStepList.matchFulfilled, (state, action) => {\n state.stepList = action.payload;\n }\n )\n .addMatcher(\n proposalLetterApi.endpoints.getProposalLetter.matchFulfilled, (state, action) => {\n state.id = action.payload.id;\n state.proposalDocument.coverLetter = action.payload.coverLetter;\n state.proposalDocument.executiveSummary = action.payload.executiveSummary;\n state.proposalDocument.needStatement = action.payload.needStatement;\n state.proposalDocument.goals = action.payload.goals;\n state.proposalDocument.methods = action.payload.methods;\n state.proposalDocument.evaluation = action.payload.evaluation;\n state.proposalDocument.funding = action.payload.funding;\n state.proposalDocument.organization = action.payload.organization;\n state.proposalDocument.closingStatement = action.payload.closingStatement;\n state.proposalDocument.notesQuantity = action.payload.notesQuantity;\n }\n )\n }\n\n});\n\nexport const { \n handleChangeUserProject,\n handleStep,\n handleChangeDocument,\n handleSaveSuccess,\n handleAutoSaveEnabled,\n handleClear,\n} = proposalSlice.actions;\n\nexport default proposalSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { customLetterApi } from \"Services/CustomLetterService\";\n\nexport const initialState = {\n id: null,\n userProject: {\n id: '',\n value: '',\n label: ''\n },\n userProjectToChange: {\n id: null,\n value: null,\n label: null\n },\n allProjectList: [],\n activeStep: 0,\n customDocument: {\n template: '',\n letter: ''\n },\n stepList: [],\n forceDisabled: false,\n autosaveEnabled: false,\n};\n\nconst customSlice = createSlice({\n name: \"document-generator-custom\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n state.userProject = action.payload;\n },\n handleStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleChangeDocument: (state, action) => {\n if (action.payload.document.replace(/<(.|\\n)*?>/g, '').trim().length === 0) {\n state.customDocument[action.payload.stepName] = null;\n }\n else {\n state.customDocument[action.payload.stepName] = action.payload.document;\n }\n },\n handleSaveSuccess: (state, action) => {\n state.id = action.payload.data;\n },\n handleAutoSaveEnabled: (state, action) => {\n state.autosaveEnabled = action.payload;\n },\n handleClear: (state, action) => {\n state.id = null;\n state.activeStep = 0;\n state.userProject.id = '';\n state.userProject.value = '';\n state.userProject.label = '';\n state.autosaveEnabled = false;\n state.customDocument.template = \"\";\n state.customDocument.letter = \"\";\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n customLetterApi.endpoints.getCustomStepList.matchFulfilled, (state, action) => {\n state.stepList = action.payload;\n }\n )\n .addMatcher(\n customLetterApi.endpoints.getCustomLetter.matchFulfilled, (state, action) => {\n state.id = action.payload.id;\n state.customDocument.template = action.payload.template;\n state.customDocument.letter = action.payload.letter;\n }\n )\n }\n\n});\n\nexport const { \n handleChangeUserProject,\n handleStep,\n handleChangeDocument,\n handleSaveSuccess,\n handleAutoSaveEnabled,\n handleClear,\n} = customSlice.actions;\n\nexport default customSlice.reducer;\n","import React from 'react';\nimport NumberFormat from 'react-number-format';\n\nconst NumberFormatWrapper = React.forwardRef(function NumberFormatWrapper(props, ref) {\n const { onChange, ...other } = props;\n return (\n {\n onChange({\n target: {\n name: props.name,\n value: values.value,\n },\n });\n }}\n thousandSeparator\n prefix= { props.prefix }\n decimalScale={0}\n allowNegative={false}\n isNumericString={false}\n allowEmptyFormatting={true}\n type=\"tel\"\n />\n );\n\n});\n \nexport default NumberFormatWrapper;","import {\n FormControl,\n FormHelperText,\n InputLabel,\n OutlinedInput,\n} from \"@mui/material\";\n\nimport NumberFormatWrapper from \"./NumberFormatWrapper\";\n\nimport { useTranslation } from \"react-i18next\";\n\nconst FormControlWrapper = ({\n name, \n value,\n label, \n type, \n maxLength, \n error = '', \n theme, \n onChange,\n required,\n disabled,\n multiline,\n rows = 4,\n sx,\n labelSx={},\n maskNumber,\n autoFocus,\n placeholder,\n endAdornment,\n prefix='$',\n shrinkLabel,\n size=\"medium\",\n}) => {\n\n const { t } = useTranslation();\n\n return(\n \n {label} \n \n {error !== \"\" && (\n \n {t(error)}\n \n )}\n \n )\n}\n\nexport default FormControlWrapper;","import { createSlice } from \"@reduxjs/toolkit\";\nimport {subscriptionPlanApi} from \"Services/SubscriptionPlanService\"\n\nexport const initialState = {\n loadingList: false,\n openEnableDisableDialog: false,\n search: {\n searchTerm: '',\n status: ''\n },\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'createdAt',\n orderDirection: 'desc',\n items: []\n }\n };\n\nconst manageSubscriptionPlanSlice = createSlice({\n name: \"manage-subscription-plans\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state.search[action.payload.field] = action.payload.value;\n },\n handleChangeField: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleOpenEnableDisableDialog: (state, action) => {\n state.openEnableDisableDialog = true;\n },\n \n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n subscriptionPlanApi.endpoints.getAllUsersPagedList.matchFulfilled, (state, action) => {\n state.loadingList = false;\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n )\n .addMatcher(\n subscriptionPlanApi.endpoints.getPlans.matchPending, (state, action) => {\n state.loadingList = true;\n }\n )\n .addMatcher(\n subscriptionPlanApi.endpoints.getPlans.matchRejected, (state, action) => {\n state.loadingList = false;\n }\n )\n }\n\n});\n\nexport const { \n handleChange,\n handleChangeField,\n handleModelErrors,\n handleOpenEnableDisableDialog\n} = manageSubscriptionPlanSlice.actions;\n\nexport default manageSubscriptionPlanSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { feedbackApi } from \"Services/FeedbackService\";\n\nexport const initialState = {\n loadingList: false,\n pagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'reviewed',\n orderDirection: 'asc',\n items: []\n },\n search: {\n searchTerm: '',\n feedbackType: 'All'\n },\n};\n\nconst manageFeedbackSlice = createSlice({\n name: \"manage-feedback\",\n initialState,\n reducers: {\n handleSearchChange: (state, action) => {\n state.search[action.payload.field] = action.payload.value;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state.couponValues[field].error = errors[0];\n });\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n feedbackApi.endpoints.getFeedbackPagedList.matchFulfilled, (state, action) => {\n state.loadingList = false;\n state.pagedList.pageNumber = action.payload.pageNumber;\n state.pagedList.pageSize = action.payload.pageSize;\n state.pagedList.pageCount = action.payload.pageCount;\n state.pagedList.totalCount = action.payload.totalCount;\n state.pagedList.orderField = action.payload.orderField;\n state.pagedList.orderDirection = action.payload.orderDirection;\n state.pagedList.items = action.payload.items;\n }\n ).addMatcher(\n feedbackApi.endpoints.getFeedbackPagedList.matchPending, (state, action) => {\n state.loadingList = true;\n }\n )\n .addMatcher(\n feedbackApi.endpoints.getFeedbackPagedList.matchRejected, (state, action) => {\n state.loadingList = false;\n }\n )\n }\n});\n\nexport const {\n handleModelErrors,\n handleSearchChange,\n} = manageFeedbackSlice.actions;\n\nexport default manageFeedbackSlice.reducer;","import { createSlice } from \"@reduxjs/toolkit\";\nimport { thankYouLetterApi } from \"Services/ThankYouLetterService\";\n\nexport const initialState = {\n id: null,\n userProject: {\n id: '',\n value: '',\n label: ''\n },\n activeStep: 0,\n thankYouDocument: {\n introduction: '',\n customizedContent: '',\n reinforceImpact: '',\n nextSteps: '',\n conclusion: '',\n },\n stepList: [],\n forceDisabled: false,\n autosaveEnabled: false,\n timeoutId: null,\n};\n\nconst thankYouSlice = createSlice({\n name: \"document-generator-thank-you\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n state.userProject = action.payload;\n },\n handleConfirmChange: (state, action) => {\n state.userProject = state.userProjectToChange;\n },\n handleStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleChangeDocument: (state, action) => {\n if (action.payload.document.replace(/<(.|\\n)*?>/g, '').trim().length === 0) {\n state.thankYouDocument[action.payload.stepName] = null;\n }\n else {\n state.thankYouDocument[action.payload.stepName] = action.payload.document;\n }\n },\n handleSaveSuccess: (state, action) => {\n state.id = action.payload.data;\n },\n handleAutoSaveEnabled: (state, action) => {\n state.autosaveEnabled = action.payload;\n },\n handleClear: (state, action) => {\n state.id = null;\n state.activeStep = 0;\n state.userProject.id = '';\n state.userProject.value = '';\n state.userProject.label = '';\n state.autosaveEnabled = false;\n state.thankYouDocument.introduction = \"\";\n state.thankYouDocument.customizedContent = \"\";\n state.thankYouDocument.reinforceImpact = \"\";\n state.thankYouDocument.nextSteps = \"\";\n state.thankYouDocument.conclusion = \"\";\n \n },\n handleFillAllProjects: (state, action) => {\n const { selectedProject, projects } = action.payload;\n state.forceDisabled = action.payload.length === 0;\n state.autosaveEnabled = false;\n state.allProjectList = projects ?? [];\n state.userProject = selectedProject;\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n thankYouLetterApi.endpoints.getThankYouStepList.matchFulfilled, (state, action) => {\n state.stepList = action.payload;\n }\n )\n .addMatcher(\n thankYouLetterApi.endpoints.getThankYouLetter.matchFulfilled, (state, action) => {\n state.id = action.payload.id;\n state.thankYouDocument.introduction = action.payload.introduction;\n state.thankYouDocument.customizedContent = action.payload.customizedContent;\n state.thankYouDocument.reinforceImpact = action.payload.reinforceImpact;\n state.thankYouDocument.nextSteps = action.payload.nextSteps;\n state.thankYouDocument.conclusion = action.payload.conclusion;\n state.thankYouDocument.notesQuantity = action.payload.notesQuantity;\n }\n )\n }\n\n});\n\nexport const { \n handleChangeUserProject,\n handleStep,\n handleChangeDocument,\n handleSaveSuccess,\n handleAutoSaveEnabled,\n handleClear,\n} = thankYouSlice.actions;\n\nexport default thankYouSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { impactReportLetterApi } from \"Services/ImpactReportLetterService\";\n\nexport const initialState = {\n id: null,\n userProject: {\n id: '',\n value: '',\n label: ''\n },\n activeStep: 0,\n impactReportDocument: {\n introduction: '',\n projectActivities: '',\n impact: '',\n financialReport: '',\n summary: '',\n appendice: '',\n },\n stepList: [],\n forceDisabled: false,\n autosaveEnabled: false,\n timeoutId: null,\n};\n\nconst impactReportSlice = createSlice({\n name: \"document-generator-impact-report\",\n initialState,\n reducers: {\n handleChangeUserProject: (state, action) => {\n state.userProject = action.payload;\n },\n handleStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleChangeDocument: (state, action) => {\n if (action.payload.document.replace(/<(.|\\n)*?>/g, '').trim().length === 0) {\n state.impactReportDocument[action.payload.stepName] = null;\n }\n else {\n state.impactReportDocument[action.payload.stepName] = action.payload.document;\n }\n },\n handleSaveSuccess: (state, action) => {\n state.id = action.payload.data;\n },\n handleAutoSaveEnabled: (state, action) => {\n state.autosaveEnabled = action.payload;\n },\n handleClear: (state, action) => {\n state.id = null;\n state.activeStep = 0;\n state.userProject.id = '';\n state.userProject.value = '';\n state.userProject.label = '';\n state.autosaveEnabled = false;\n state.impactReportDocument.introduction = \"\";\n state.impactReportDocument.projectActivities = \"\";\n state.impactReportDocument.impact = \"\";\n state.impactReportDocument.financialReport = \"\";\n state.impactReportDocument.summary = \"\";\n state.impactReportDocument.appendice = \"\";\n },\n handleFillAllProjects: (state, action) => {\n const { selectedProject, projects } = action.payload;\n state.forceDisabled = action.payload.length === 0;\n state.autosaveEnabled = false;\n state.allProjectList = projects ?? [];\n state.userProject = selectedProject;\n },\n },\n extraReducers: (builder) => {\n builder\n .addMatcher(\n impactReportLetterApi.endpoints.getImpactReportStepList.matchFulfilled, (state, action) => {\n state.stepList = action.payload;\n }\n )\n .addMatcher(\n impactReportLetterApi.endpoints.getImpactReportLetter.matchFulfilled, (state, action) => {\n state.id = action.payload.id;\n state.impactReportDocument.introduction = action.payload.introduction;\n state.impactReportDocument.projectActivities = action.payload.projectActivities;\n state.impactReportDocument.impact = action.payload.impact;\n state.impactReportDocument.financialReport = action.payload.financialReport;\n state.impactReportDocument.summary = action.payload.summary;\n state.impactReportDocument.appendice = action.payload.appendice;\n state.impactReportDocument.notesQuantity = action.payload.notesQuantity;\n }\n )\n }\n\n});\n\nexport const { \n handleChangeUserProject,\n handleStep,\n handleChangeDocument,\n handleSaveSuccess,\n handleAutoSaveEnabled,\n handleClear,\n} = impactReportSlice.actions;\n\nexport default impactReportSlice.reducer;\n","export const formatDate = (date) => {\n if (!date) return null;\n const d = new Date(date);\n return `${d.getFullYear()}/${d.getMonth() + 1}/${d.getDate()}`;\n}\n\nexport const getYearList = (startYear = 2014, endYear = new Date().getFullYear()) => {\n return [\n ...Array(endYear - 1 - startYear + 1)\n .fill()\n .map((_, idx) => ({\n index: idx,\n id: (startYear + idx).toString(),\n value: (startYear + idx).toString(),\n label: (startYear + idx).toString(),\n checked: false\n }))\n ].reverse();\n}","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"paper2\":\"#fafafa\",\"primaryLight\":\"#e4e4e47c\",\"primary200\":\"#5e9203\",\"primaryMain\":\"#7bb11d\",\"primaryDark\":\"#5c8516\",\"primary800\":\"#364e0d\",\"secondaryLight\":\"#e0f2f1\",\"secondary200\":\"#80cbc4\",\"secondaryMain\":\"#009688\",\"secondaryDark\":\"#033833\",\"secondary800\":\"#00695c\",\"successLight\":\"#edf7ed\",\"success200\":\"#b6e0b3\",\"successMain\":\"#6cc067\",\"successDark\":\"#64ba5f\",\"errorLight\":\"#e48784\",\"errorMain\":\"#d9534f\",\"errorDark\":\"#d54c48\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fdf5ea\",\"warningMain\":\"#f0ad4e\",\"warningDark\":\"#ec9c3d\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey700_orig\":\"#616161\",\"grey800\":\"#424242\",\"grey900\":\"#212121\",\"darkPaper\":\"#060d12\",\"darkBackground\":\"#0e1b23\",\"darkLevel1\":\"#0b161d\",\"darkLevel2\":\"#14252f\",\"darkTextTitle\":\"#e4e8f7\",\"darkTextPrimary\":\"#d5d9e9\",\"darkTextSecondary\":\"#d8ddf0\",\"darkPrimaryLight\":\"#ecf1f1\",\"darkPrimaryMain\":\"#7bb11d\",\"darkPrimaryDark\":\"#00897b\",\"darkPrimary200\":\"#c0ff53\",\"darkPrimary800\":\"#364e0d\",\"darkSecondaryLight\":\"#e0f2f1\",\"darkSecondaryMain\":\"#009688\",\"darkSecondaryDark\":\"#00897b\",\"darkSecondary200\":\"#80cbc4\",\"darkSecondary800\":\"#00695c\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e4e4e47c\",\"primary200\":\"#5e9203\",\"primaryMain\":\"#7bb11d\",\"primaryDark\":\"#5c8516\",\"primary800\":\"#364e0d\",\"secondaryLight\":\"#e0f2f1\",\"secondary200\":\"#80cbc4\",\"secondaryMain\":\"#009688\",\"secondaryDark\":\"#033833\",\"secondary800\":\"#00695c\",\"successLight\":\"#edf7ed\",\"success200\":\"#b6e0b3\",\"successMain\":\"#6cc067\",\"successDark\":\"#64ba5f\",\"errorLight\":\"#e48784\",\"errorMain\":\"#d9534f\",\"errorDark\":\"#d54c48\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fdf5ea\",\"warningMain\":\"#f0ad4e\",\"warningDark\":\"#ec9c3d\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#9e9e9e\",\"grey600\":\"#757575\",\"grey700\":\"#616161\",\"grey900\":\"#212121\",\"darkPaper\":\"#060d12\",\"darkBackground\":\"#0e1b23\",\"darkLevel1\":\"#0b161d\",\"darkLevel2\":\"#14252f\",\"darkTextTitle\":\"#e4e8f7\",\"darkTextPrimary\":\"#d5d9e9\",\"darkTextSecondary\":\"#d8ddf0\",\"darkPrimaryLight\":\"#ecf1f1\",\"darkPrimaryMain\":\"#7bb11d\",\"darkPrimaryDark\":\"#00897b\",\"darkPrimary200\":\"#c0ff53\",\"darkPrimary800\":\"#364e0d\",\"darkSecondaryLight\":\"#e0f2f1\",\"darkSecondaryMain\":\"#009688\",\"darkSecondaryDark\":\"#00897b\",\"darkSecondary200\":\"#80cbc4\",\"darkSecondary800\":\"#00695c\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e4e7ec\",\"primary200\":\"#909ab0\",\"primaryMain\":\"#389ff9\",\"primaryDark\":\"#1c2f59\",\"primary800\":\"#132145\",\"secondaryLight\":\"#e8fdf7\",\"secondary200\":\"#bacc96\",\"secondaryMain\":\"#99c83c\",\"secondaryDark\":\"#6d9026\",\"secondary800\":\"#304605\",\"successLight\":\"#e3f8e8\",\"success200\":\"#8be09f\",\"successMain\":\"#17c13e\",\"successDark\":\"#14bb38\",\"errorLight\":\"#e48784\",\"errorMain\":\"#d9534f\",\"errorDark\":\"#d54c48\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fdf5ea\",\"warningMain\":\"#f0ad4e\",\"warningDark\":\"#ec9c3d\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#030614\",\"darkBackground\":\"#0a0f23\",\"darkLevel1\":\"#070e13\",\"darkLevel2\":\"#12172f\",\"darkTextTitle\":\"#e4e8f7\",\"darkTextPrimary\":\"#d5d9e9\",\"darkTextSecondary\":\"#d8ddf0\",\"darkPrimaryLight\":\"#ecedf1\",\"darkPrimaryMain\":\"#606d88\",\"darkPrimaryDark\":\"#586580\",\"darkPrimary200\":\"#b0b6c4\",\"darkPrimary800\":\"#44506b\",\"darkSecondaryLight\":\"#fde8ef\",\"darkSecondaryMain\":\"#ec407a\",\"darkSecondaryDark\":\"#ea3a72\",\"darkSecondary200\":\"#f6a0bd\",\"darkSecondary800\":\"#e42a5d\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e3ebeb\",\"primary200\":\"#8bacad\",\"primaryMain\":\"#16595a\",\"primaryDark\":\"#135152\",\"primary800\":\"#0c3e3f\",\"secondaryLight\":\"#f8f0e5\",\"secondary200\":\"#e3bf91\",\"secondaryMain\":\"#c77e23\",\"secondaryDark\":\"#c1761f\",\"secondary800\":\"#b36115\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#010f17\",\"darkBackground\":\"#010606\",\"darkLevel1\":\"#02131d\",\"darkLevel2\":\"#010f17\",\"darkTextTitle\":\"#fff\",\"darkTextPrimary\":\"#fff\",\"darkTextSecondary\":\"#8492c4\",\"darkPrimaryLight\":\"#eceff1\",\"darkPrimaryMain\":\"#1f7778\",\"darkPrimaryDark\":\"#1b6f70\",\"darkPrimary200\":\"#8fbbbc\",\"darkPrimary800\":\"#125a5b\",\"darkSecondaryLight\":\"#f8f0e5\",\"darkSecondaryMain\":\"#c77e23\",\"darkSecondaryDark\":\"#c1761f\",\"darkSecondary200\":\"#e3bf91\",\"darkSecondary800\":\"#b36115\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e3e8e8\",\"primary200\":\"#8b9fa1\",\"primaryMain\":\"#173e43\",\"primaryDark\":\"#14383d\",\"primary800\":\"#0d282c\",\"secondaryLight\":\"#e8f6f5\",\"secondary200\":\"#9fd8d6\",\"secondaryMain\":\"#3fb0ac\",\"secondaryDark\":\"#39a9a5\",\"secondary800\":\"#299792\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#051114\",\"darkBackground\":\"#030708\",\"darkLevel1\":\"#02131d\",\"darkLevel2\":\"#051114\",\"darkTextTitle\":\"#fff\",\"darkTextPrimary\":\"#fff\",\"darkTextSecondary\":\"#ccd2eb\",\"darkPrimaryLight\":\"#e3e8e8\",\"darkPrimaryMain\":\"#3a5b5f\",\"darkPrimaryDark\":\"#14383d\",\"darkPrimary200\":\"#8b9fa1\",\"darkPrimary800\":\"#0d282c\",\"darkSecondaryLight\":\"#e8f6f5\",\"darkSecondaryMain\":\"#3fb0ac\",\"darkSecondaryDark\":\"#39a9a5\",\"darkSecondary200\":\"#9fd8d6\",\"darkSecondary800\":\"#299792\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e2e5e8\",\"primary200\":\"#8591a1\",\"primaryMain\":\"#0a2342\",\"primaryDark\":\"#091f3c\",\"primary800\":\"#05152b\",\"secondaryLight\":\"#e6f4f1\",\"secondary200\":\"#96d2c6\",\"secondaryMain\":\"#2ca58d\",\"secondaryDark\":\"#279d85\",\"secondary800\":\"#1b8a70\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#030c1d\",\"darkBackground\":\"#051327\",\"darkLevel1\":\"#071a33\",\"darkLevel2\":\"#091f3c\",\"darkTextTitle\":\"#d7dcec\",\"darkTextPrimary\":\"#bdc8f0\",\"darkTextSecondary\":\"#8492c4\",\"darkPrimaryLight\":\"#e2e5e8\",\"darkPrimaryMain\":\"#54657b\",\"darkPrimaryDark\":\"#2f445e\",\"darkPrimary200\":\"#8591a1\",\"darkPrimary800\":\"#05152b\",\"darkSecondaryLight\":\"#e6f4f1\",\"darkSecondaryMain\":\"#2ca58d\",\"darkSecondaryDark\":\"#279d85\",\"darkSecondary200\":\"#96d2c6\",\"darkSecondary800\":\"#1b8a70\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e8eaf6\",\"primary200\":\"#9fa8da\",\"primaryMain\":\"#3f51b5\",\"primaryDark\":\"#3949ab\",\"primary800\":\"#283593\",\"secondaryLight\":\"#e8eaf6\",\"secondary200\":\"#9fa8da\",\"secondaryMain\":\"#3f51b5\",\"secondaryDark\":\"#3949ab\",\"secondary800\":\"#283593\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#111936\",\"darkBackground\":\"#1a223f\",\"darkLevel1\":\"#29314f\",\"darkLevel2\":\"#212946\",\"darkTextTitle\":\"#d7dcec\",\"darkTextPrimary\":\"#bdc8f0\",\"darkTextSecondary\":\"#8492c4\",\"darkPrimaryLight\":\"#eeedfd\",\"darkPrimaryMain\":\"#7267ef\",\"darkPrimaryDark\":\"#6a5fed\",\"darkPrimary200\":\"#b9b3f7\",\"darkPrimary800\":\"#554ae8\",\"darkSecondaryLight\":\"#eeedfd\",\"darkSecondaryMain\":\"#7267ef\",\"darkSecondaryDark\":\"#6a5fed\",\"darkSecondary200\":\"#b9b3f7\",\"darkSecondary800\":\"#554ae8\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#e8f4f6\",\"primary200\":\"#99c83c\",\"primaryMain\":\"#7bb11d\",\"primaryDark\":\"#1f65a1\",\"primary800\":\"#15436b\",\"secondaryLight\":\"#e8eaf6\",\"secondary200\":\"#5487b4\",\"secondaryMain\":\"#3a8dd6\",\"secondaryDark\":\"#003e74\",\"secondary800\":\"#02335d\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"warning100\":\"#ebca2f\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#111936\",\"darkBackground\":\"#1a223f\",\"darkLevel1\":\"#29314f\",\"darkLevel2\":\"#212946\",\"darkTextTitle\":\"#d7dcec\",\"darkTextPrimary\":\"#bdc8f0\",\"darkTextSecondary\":\"#8492c4\",\"darkPrimaryLight\":\"#eeedfd\",\"darkPrimaryMain\":\"#7267ef\",\"darkPrimaryDark\":\"#6a5fed\",\"darkPrimary200\":\"#b9b3f7\",\"darkPrimary800\":\"#554ae8\",\"darkSecondaryLight\":\"#eeedfd\",\"darkSecondaryMain\":\"#7267ef\",\"darkSecondaryDark\":\"#6a5fed\",\"darkSecondary200\":\"#b9b3f7\",\"darkSecondary800\":\"#554ae8\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"paper\":\"#fff\",\"primaryLight\":\"#f7f7f7\",\"primary200\":\"#54b474\",\"primaryMain\":\"#0574d4\",\"primaryDark\":\"#005299\",\"primary800\":\"#025d16\",\"secondaryLight\":\"#e8eaf6\",\"secondary200\":\"#adcc70\",\"secondaryMain\":\"#99c83c\",\"secondaryDark\":\"#669416\",\"secondary800\":\"#172204\",\"successLight\":\"#b9f6ca\",\"success200\":\"#69f0ae\",\"successMain\":\"#00e676\",\"successDark\":\"#00c853\",\"errorLight\":\"#ef9a9a\",\"errorMain\":\"#f44336\",\"errorDark\":\"#c62828\",\"orangeLight\":\"#fbe9e7\",\"orangeMain\":\"#ffab91\",\"orangeDark\":\"#d84315\",\"warningLight\":\"#fff8e1\",\"warningMain\":\"#ffe57f\",\"warningDark\":\"#ffc107\",\"grey50\":\"#fafafa\",\"grey100\":\"#f5f5f5\",\"grey200\":\"#eee\",\"grey300\":\"#e0e0e0\",\"grey500\":\"#1b1a1a\",\"grey600\":\"#757575\",\"grey700\":\"#000\",\"grey900\":\"#212121\",\"darkPaper\":\"#111936\",\"darkBackground\":\"#1a223f\",\"darkLevel1\":\"#29314f\",\"darkLevel2\":\"#212946\",\"darkTextTitle\":\"#d7dcec\",\"darkTextPrimary\":\"#bdc8f0\",\"darkTextSecondary\":\"#8492c4\",\"darkPrimaryLight\":\"#eeedfd\",\"darkPrimaryMain\":\"#7267ef\",\"darkPrimaryDark\":\"#6a5fed\",\"darkPrimary200\":\"#b9b3f7\",\"darkPrimary800\":\"#554ae8\",\"darkSecondaryLight\":\"#eeedfd\",\"darkSecondaryMain\":\"#7267ef\",\"darkSecondaryDark\":\"#6a5fed\",\"darkSecondary200\":\"#b9b3f7\",\"darkSecondary800\":\"#554ae8\"};","import { emptySplitApi } from './index'\n\nexport const foundationProfileApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getProfileHeader: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/foundation-profile/profile-header/${model.profileId}`,\n method: \"GET\",\n }),\n }),\n getTaxReturn: builder.query({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/tax-return/${profileId}`,\n method: \"GET\",\n }),\n }),\n getFinancialList: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/financial-list/${profileId}`,\n method: \"GET\",\n }),\n }),\n getGiftsPagedList: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/foundation-profile/gifts/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n getGiftsPagedListV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/foundation-profile/gifts/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n getProgramList: builder.query({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/programs/${profileId}`,\n method: \"GET\",\n }),\n }),\n getApplication: builder.query({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/applications/${profileId}`,\n method: \"GET\",\n }),\n }),\n getApplicationWithTrigger: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/applications/${profileId}`,\n method: \"GET\",\n }),\n }),\n getGrantOverview: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/foundation-profile/grant-overview/${model.profileId}?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'description'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\",\n }),\n }),\n getDirectorList: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/foundation-profile/directors/${model.profileId}?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'description'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\",\n }),\n }),\n \n getChartProvinceList: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/charts/province-list/${profileId}`,\n method: \"GET\",\n }),\n }),\n getChartRangeAmountList: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/charts/range-amount/${profileId}`,\n method: \"GET\",\n }),\n }),\n getChartRangeSector: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/charts/range-sector/${profileId}`,\n method: \"GET\",\n }),\n }),\n getFoundationProfileSummaryOverview: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-service/foundation-profile/summary-overview/${profileId}`,\n method: \"GET\",\n }),\n })\n }),\n overrideExisting: false,\n});\n\nexport const {\n useGetProfileHeaderMutation,\n useGetGiftsPagedListMutation,\n useGetGiftsPagedListV2Mutation,\n useGetProgramListQuery,\n useGetApplicationQuery,\n useGetApplicationWithTriggerMutation,\n useGetGrantOverviewMutation,\n useGetDirectorListMutation,\n useGetChartProvinceListMutation,\n useGetChartRangeAmountListMutation,\n useGetChartRangeSectorMutation,\n useGetFoundationProfileSummaryOverviewMutation,\n useGetTaxReturnQuery,\n useGetFinancialListMutation,\n} = foundationProfileApi;\n","import { emptySplitApi } from './index'\n\nexport const foundationProfileCanadianApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getMainProfileCA: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/main/${model.profileId}`,\n method: \"GET\",\n }),\n }),\n getGiftsPagedListCAV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-ca-service/foundation-profile/gifts/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n getGiftsPagedListCA: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/gifts/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n getProgramListCA: builder.query({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/programs/${profileId}`,\n method: \"GET\",\n }),\n }),\n getApplicationCA: builder.query({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/applications/${profileId}`,\n method: \"GET\",\n }),\n }),\n getApplicationWithTriggerCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/applications/${profileId}`,\n method: \"GET\",\n }),\n }),\n getGrantOverviewCA: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/grant-overview/${model.profileId}?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'description'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\",\n }),\n }),\n getDirectorListCA: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/directors/${model.profileId}?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'description'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\",\n }),\n }),\n \n getChartProvinceListCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/charts/province-list/${profileId}`,\n method: \"GET\",\n }),\n }),\n getChartRangeAmountListCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/charts/range-amount/${profileId}`,\n method: \"GET\",\n }),\n }),\n getChartRangeSectorCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/charts/range-sector/${profileId}`,\n method: \"GET\",\n }),\n }),\n getFoundationProfileSummaryOverviewCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/summary-overview/${profileId}`,\n method: \"GET\",\n }),\n }),\n getCustomAnalysisListCA: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/custom-analysis/${profileId}`,\n method: \"GET\",\n }),\n }),\n getFoundationFinancialList: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/financial-list/${profileId}`,\n method: \"GET\",\n }),\n }),\n getYearAnalysisList: builder.mutation({\n query: (profileId) => ({\n url: `api/v1/search-engine-ca-service/foundation-profile/year-analysis/${profileId}`,\n method: \"GET\",\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const {\n useGetMainProfileCAMutation, \n useGetGiftsPagedListCAMutation,\n useGetGiftsPagedListCAV2Mutation,\n useGetProgramListCAQuery,\n useGetApplicationCAQuery,\n useGetApplicationWithTriggerCAMutation,\n useGetGrantOverviewCAMutation,\n useGetDirectorListCAMutation,\n useGetChartProvinceListCAMutation,\n useGetChartRangeAmountListCAMutation,\n useGetChartRangeSectorCAMutation,\n useGetFoundationProfileSummaryOverviewCAMutation,\n useGetCustomAnalysisListCAMutation,\n useGetFoundationFinancialListMutation,\n useGetYearAnalysisListMutation\n} = foundationProfileCanadianApi;\n","import { emptySplitApi } from \"./index\";\n\nexport const adminApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getAllUsersPagedList: builder.mutation({\n query: (model) => ({\n url:\n `api/v1/auth-service/admin/all-users?` +\n `searchTerm=${model?.searchTerm || \"\"}` +\n `&status=${model?.status}` +\n `&pageNumber=${model?.pageNumber || 0}` +\n `&pageSize=${model?.pageSize || \"\"}` +\n `&orderField=${model?.orderField || \"userName\"}` +\n `&orderDirection=${model?.orderDirection || \"asc\"}`,\n method: \"GET\",\n }),\n }),\n createUser: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/admin/create-user`,\n method: \"POST\",\n body: model,\n }),\n }),\n getUserAccount: builder.query({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/user-account/${userId}`,\n method: \"GET\",\n }),\n }),\n updateUser: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/admin/edit-user/`,\n method: \"PATCH\",\n body: model,\n }),\n }),\n getExpirationDateDetails: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/expiration-date-details/${userId}`,\n method: \"GET\",\n }),\n }),\n updateExpirationDate: builder.mutation({\n query: ({ userId, ...model }) => ({\n url: `api/v1/auth-service/admin/update-expiration-date/${userId}`,\n method: \"PATCH\",\n body: model\n }),\n }),\n enableDisableAccount: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/enable-disable-user/${userId}`,\n method: \"PATCH\",\n }),\n }),\n sendResetPasswordLink: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/reset-password-link/${userId}`,\n method: \"PATCH\",\n }),\n }),\n sendSetupPasswordLink: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/setup-password-link/${userId}`,\n method: \"PATCH\",\n }),\n }),\n sendActivateAccountLink: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/activate-account-link/${userId}`,\n method: \"PATCH\",\n }),\n }),\n importPipedriveOrganization: builder.mutation({\n query: (pipedriveOrganizationCode) => ({\n url: `api/v1/auth-service/admin/import-pipedrive-organization/${pipedriveOrganizationCode}`,\n method: \"GET\",\n }),\n }),\n validateUserAccountCreate: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/admin/validate-account-create`,\n method: \"POST\",\n body: model,\n }),\n }),\n addLicensesToUser: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/admin/add-licenses-user`,\n method: \"POST\",\n body: model,\n }),\n }),\n updateSeAccess: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/admin/update-se-access`,\n method: \"POST\",\n }),\n }),\n addRemoveProAccess: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/add-remove-pro-access/${userId}`,\n method: \"POST\",\n }),\n }),\n restoreAdditionalUser: builder.mutation({\n query: ({ userId, ...model }) => ({\n url: `api/v1/auth-service/admin/restore-additional-user/${userId}`,\n method: \"POST\",\n body: model,\n }),\n }),\n getOrganizationLicenses: builder.query({\n query: (organizationId) => ({\n url: `api/v1/auth-service/admin/organization-licenses/${organizationId}`,\n method: \"GET\",\n }),\n }),\n deleteOrganizationLicense: builder.mutation({\n query: (licenseId) => ({\n url: `api/v1/auth-service/admin/organization-licenses/${licenseId}`,\n method: \"DELETE\",\n }),\n }),\n createAccessToken: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/access-token/create/${userId}`,\n method: \"POST\",\n }),\n }),\n getAccessTokenDetails: builder.mutation({\n query: (userId) => ({\n url: `api/v1/auth-service/admin/access-token/details/${userId}`,\n method: \"GET\",\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const {\n useGetAllUsersPagedListMutation,\n useCreateUserMutation,\n useGetUserAccountQuery,\n useUpdateUserMutation,\n useGetExpirationDateDetailsMutation,\n useUpdateExpirationDateMutation,\n useEnableDisableAccountMutation,\n useSendResetPasswordLinkMutation,\n useSendSetupPasswordLinkMutation,\n useSendActivateAccountLinkMutation,\n useImportPipedriveOrganizationMutation,\n useValidateUserAccountCreateMutation,\n useAddLicensesToUserMutation,\n useUpdateSeAccessMutation,\n useAddRemoveProAccessMutation,\n useRestoreAdditionalUserMutation,\n useGetOrganizationLicensesQuery,\n useDeleteOrganizationLicenseMutation,\n useCreateAccessTokenMutation,\n useGetAccessTokenDetailsMutation\n} = adminApi;\n","// This optional code is used to register a service worker.\n// register() is not called by default.\n\n// This lets the app load faster on subsequent visits in production, and gives\n// it offline capabilities. However, it also means that developers (and users)\n// will only see deployed updates on subsequent visits to a page, after all the\n// existing tabs open on the page have been closed, since previously cached\n// resources are updated in the background.\n\n// To learn more about the benefits of this model and instructions on how to\n// opt-in, read https://bit.ly/CRA-PWA\n\nconst isLocalhost = Boolean(\n window.location.hostname === 'localhost' ||\n // [::1] is the IPv6 localhost address.\n window.location.hostname === '[::1]' ||\n // 127.0.0.0/8 are considered localhost for IPv4.\n window.location.hostname.match(/^127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/)\n);\n\nfunction registerValidSW(swUrl, config) {\n navigator.serviceWorker\n .register(swUrl)\n .then((registration) => {\n registration.onupdatefound = () => {\n const installingWorker = registration.installing;\n if (installingWorker == null) {\n return;\n }\n installingWorker.onstatechange = () => {\n if (installingWorker.state === 'installed') {\n if (navigator.serviceWorker.controller) {\n // At this point, the updated precached content has been fetched,\n // but the previous service worker will still serve the older\n // content until all client tabs are closed.\n console.log(\n 'New content is available and will be used when all tabs for this page are closed. See https://bit.ly/CRA-PWA.'\n );\n\n // Execute callback\n if (config && config.onUpdate) {\n config.onUpdate(registration);\n }\n } else {\n // At this point, everything has been precached.\n // It's the perfect time to display a\n // \"Content is cached for offline use.\" message.\n console.log('Content is cached for offline use.');\n\n // Execute callback\n if (config && config.onSuccess) {\n config.onSuccess(registration);\n }\n }\n }\n };\n };\n })\n .catch((error) => {\n console.error('Error during service worker registration:', error);\n });\n}\n\nfunction checkValidServiceWorker(swUrl, config) {\n // Check if the service worker can be found. If it can't reload the page.\n fetch(swUrl, {\n headers: { 'Service-Worker': 'script' }\n })\n .then((response) => {\n // Ensure service worker exists, and that we really are getting a JS file.\n const contentType = response.headers.get('content-type');\n if (response.status === 404 || (contentType != null && contentType.indexOf('javascript') === -1)) {\n // No service worker found. Probably a different app. Reload the page.\n navigator.serviceWorker.ready.then((registration) => {\n registration.unregister().then(() => {\n window.location.reload();\n });\n });\n } else {\n // Service worker found. Proceed as normal.\n registerValidSW(swUrl, config);\n }\n })\n .catch(() => {\n console.log('No internet connection found. App is running in offline mode.');\n });\n}\n\nexport function register(config) {\n if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {\n // The URL constructor is available in all browsers that support SW.\n const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);\n if (publicUrl.origin !== window.location.origin) {\n // Our service worker won't work if PUBLIC_URL is on a different origin\n // from what our page is served on. This might happen if a CDN is used to\n // serve assets; see https://github.com/facebook/create-react-app/issues/2374\n return;\n }\n\n window.addEventListener('load', () => {\n const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;\n\n if (isLocalhost) {\n // This is running on localhost. Let's check if a service worker still exists or not.\n checkValidServiceWorker(swUrl, config);\n\n // Add some additional logging to localhost, pointing developers to the\n // service worker/PWA documentation.\n navigator.serviceWorker.ready.then(() => {\n console.log(\n 'This web app is being served cache-first by a service worker. To learn more, visit https://bit.ly/CRA-PWA'\n );\n });\n } else {\n // Is not localhost. Just register service worker\n registerValidSW(swUrl, config);\n }\n });\n }\n}\n\nexport function unregister() {\n if ('serviceWorker' in navigator) {\n navigator.serviceWorker.ready\n .then((registration) => {\n registration.unregister();\n })\n .catch((error) => {\n console.error(error.message);\n });\n }\n}\n","// action - account reducer\nexport const LOGIN = 'LOGIN';\nexport const LOGOUT = 'LOGOUT';\nexport const REGISTER = 'REGISTER';\nexport const FIREBASE_STATE_CHANGED = 'FIREBASE_STATE_CHANGED';\n\n// action - customization reducer\nexport const SET_MENU = '@customization/SET_MENU';\nexport const MENU_TOGGLE = '@customization/MENU_TOGGLE';\nexport const MENU_OPEN = '@customization/MENU_OPEN';\nexport const MENU_TYPE = '@customization/MENU_TYPE';\nexport const PRESET_COLORS = '@customization/PRESET_COLORS';\nexport const THEME_LOCALE = '@customization/THEME_LOCALE';\nexport const THEME_RTL = '@customization/THEME_RTL';\nexport const SET_FONT_FAMILY = '@customization/SET_FONT_FAMILY';\nexport const SET_BORDER_RADIUS = '@customization/SET_BORDER_RADIUS';\nexport const SET_OUTLINED_FILLED = '@customization/SET_OUTLINED_FILLED';\n\n// action - snackbar\nexport const SNACKBAR_OPEN = '@snackbar/SNACKBAR_OPEN';\n\n// action - cart\nexport const ADD_PRODUCTS = '@cart/ADD_PRODUCTS';\nexport const REMOVE_PRODUCT = '@cart/REMOVE_PRODUCT';\nexport const UPDATE_QUANTITY = '@cart/UPDATE_QUANTITY';\nexport const NEXT_STEP = '@cart/NEXT_STEP';\nexport const BACK_STEP = '@cart/BACK_STEP';\nexport const SET_STEP = '@cart/SET_STEP';\nexport const SET_BILLING_ADDRESS = '@cart/SET_BILLING_ADDRESS';\nexport const SET_DISCOUNT = '@cart/SET_DISCOUNT';\nexport const SET_SHIPPING_CHARGE = '@cart/SET_SHIPPING_CHARGE';\nexport const SET_PAYMENT_METHOD = '@cart/SET_PAYMENT_METHOD';\nexport const SET_PAYMENT_CARD = '@cart/SET_PAYMENT_CARD';\nexport const RESET_CART = '@cart/RESET_CART';\n\n// action - kanban\nexport const ADD_COLUMN = '@kanban/ADD_COLUMN';\nexport const EDIT_COLUMN = '@kanban/EDIT_COLUMN';\nexport const DELETE_COLUMN = '@kanban/DELETE_COLUMN';\nexport const UPDATE_COLUMN_ORDER = '@kanban/UPDATE_COLUMN_ORDER';\n\nexport const ADD_ITEM = '@kanban/ADD_ITEM';\nexport const EDIT_ITEM = '@kanban/EDIT_ITEM';\nexport const DELETE_ITEM = '@kanban/DELETE_ITEM';\nexport const UPDATE_COLUMN_ITEM_ORDER = '@kanban/UPDATE_COLUMN_ITEM_ORDER';\nexport const SELECT_ITEM = '@kanban/SELECT_ITEM';\nexport const ADD_ITEM_COMMENT = '@kanban/ADD_ITEM_COMMENT';\n\nexport const UPDATE_STORY_ORDER = '@kanban/UPDATE_STORY_ORDER';\nexport const UPDATE_STORY_ITEM_ORDER = '@kanban/UPDATE_STORY_ITEM_ORDER';\nexport const DELETE_STORY = '@kanban/DELETE_STORY';\nexport const ADD_STORY = '@kanban/ADD_STORY';\nexport const EDIT_STORY = '@kanban/EDIT_STORY';\nexport const ADD_STORY_COMMENT = '@kanban/ADD_STORY_COMMENT';\n","// project imports\nimport config from 'config';\n\n// action - state management\nimport * as actionTypes from './actions';\n\nexport const initialState = {\n isOpen: [], // for active default menu\n fontFamily: config.fontFamily,\n borderRadius: config.borderRadius,\n outlinedFilled: config.outlinedFilled,\n navType: config.theme,\n presetColor: config.presetColor,\n locale: config.i18n,\n rtlLayout: config.rtlLayout,\n opened: true\n};\n\n// ==============================|| CUSTOMIZATION REDUCER ||============================== //\n\nconst customizationReducer = (state = initialState, action) => {\n let id;\n switch (action.type) {\n case actionTypes.MENU_OPEN:\n id = action.id;\n return {\n ...state,\n isOpen: [id]\n };\n\n case actionTypes.MENU_TYPE:\n return {\n ...state,\n navType: action.navType\n };\n case actionTypes.PRESET_COLORS:\n return {\n ...state,\n presetColor: action.presetColor\n };\n case actionTypes.THEME_LOCALE:\n return {\n ...state,\n locale: action.locale\n };\n case actionTypes.THEME_RTL:\n return {\n ...state,\n rtlLayout: action.rtlLayout\n };\n case actionTypes.SET_MENU:\n return {\n ...state,\n opened: action.opened\n };\n case actionTypes.SET_FONT_FAMILY:\n return {\n ...state,\n fontFamily: action.fontFamily\n };\n case actionTypes.SET_BORDER_RADIUS:\n return {\n ...state,\n borderRadius: action.borderRadius\n };\n case actionTypes.SET_OUTLINED_FILLED:\n return {\n ...state,\n outlinedFilled: action.outlinedFilled\n };\n default:\n return state;\n }\n};\n\nexport default customizationReducer;\n","// action - state management\nimport * as actionTypes from './actions';\n\nconst initialState = {\n action: false,\n open: false,\n message: 'Note archived',\n anchorOrigin: {\n vertical: 'bottom',\n horizontal: 'right'\n },\n variant: 'default',\n alertSeverity: 'success',\n transition: 'Fade',\n close: true,\n actionButton: false\n};\n\n// ==============================|| SNACKBAR REDUCER ||============================== //\n\nconst snackbarReducer = (state = initialState, action) => {\n switch (action.type) {\n case actionTypes.SNACKBAR_OPEN:\n return {\n ...state,\n action: !state.action,\n open: action.open ? action.open : initialState.open,\n message: action.message ? action.message : initialState.message,\n anchorOrigin: action.anchorOrigin ? action.anchorOrigin : initialState.anchorOrigin,\n variant: action.variant ? action.variant : initialState.variant,\n alertSeverity: action.alertSeverity ? action.alertSeverity : initialState.alertSeverity,\n transition: action.transition ? action.transition : initialState.transition,\n close: action.close === false ? action.close : initialState.close,\n actionButton: action.actionButton ? action.actionButton : initialState.actionButton\n };\n default:\n return state;\n }\n};\n\nexport default snackbarReducer;\n","import { emptySplitApi } from './index'\n\nexport const userProfileApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getUserProfile: builder.query({\n query: () => ({\n url: `api/v1/auth-service/user-profile`,\n method: \"GET\"\n }),\n }),\n updateUserProfile: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/user-profile`,\n method: \"PATCH\",\n body: model\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { useGetUserProfileQuery, useUpdateUserProfileMutation } = userProfileApi;\n","import { createSlice } from \"@reduxjs/toolkit\";\n//import { emptySplitApi } from \"Services\";\nimport { userProfileApi } from \"Services/UserProfileService\";\n\nexport const initialState = {\n email: {\n value: \"\",\n error: \"\",\n },\n userName: {\n value: \"\",\n error: \"\",\n },\n firstName: {\n value: \"\",\n error: \"\",\n },\n lastName: {\n value: \"\",\n error: \"\",\n },\n position: {\n value: \"\",\n error: \"\",\n },\n phoneNumber: {\n value: \"\",\n error: \"\",\n },\n userNameEmail: {\n value: \"\",\n error: \"\"\n },\n currentProfileInfo: {\n email: '',\n userName: '',\n firstName: '',\n lastName: '',\n position: '',\n phoneNumber: ''\n }\n};\n\nconst userProfileSlice = createSlice({\n name: \"user-profile\",\n initialState,\n reducers: {\n init: (state, action) => {\n state.init = {};\n },\n handleChange: (state, action) => {\n state[action.payload.field].error = \"\";\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n userProfileApi.endpoints.getUserProfile.matchFulfilled, (state, action) => {\n Object.entries(action.payload).forEach(([field, value]) => { \n state[field].value = value ?? '';\n state[field].error = '';\n });\n\n state.currentProfileInfo = action.payload;\n }\n )\n .addMatcher(\n userProfileApi.endpoints.updateUserProfile.matchFulfilled, (state, action) => {\n state.currentProfileInfo.email = state.email.value;\n state.currentProfileInfo.userName = state.userName.value;\n state.currentProfileInfo.firstName = state.firstName.value;\n state.currentProfileInfo.lastName = state.lastName.value;\n state.currentProfileInfo.position = state.position.value;\n state.currentProfileInfo.phoneNumber = state.phoneNumber.value; \n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors\n} = userProfileSlice.actions;\n\nexport default userProfileSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\n\nexport const initialState = {\n notificationList: [],\n};\n\nconst alertNotificationSlice = createSlice({\n name: \"alert-notification\",\n initialState,\n reducers: {\n handleCheck: (state, action) => {\n state.notificationList.forEach(element => {\n if (element.id === action.payload.id) {\n element.enabled = action.payload.enabled;\n }\n });\n },\n handleGet: (state, action) => {\n state.notificationList = action.payload;\n }\n },\n});\n\nexport const { \n handleCheck,\n handleGet\n} = alertNotificationSlice.actions;\n\nexport default alertNotificationSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\n\nexport const initialState = {\n document: '',\n currentSignature: '',\n firstTime: true\n};\n\nconst signatureSlice = createSlice({\n name: \"signature\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state.document = action.payload;\n\n if (state.firstTime) {\n state.currentSignature = action.payload;\n state.firstTime = false;\n }\n },\n handleGet: (state, action) => {\n state.document = action.payload;\n state.currentSignature = action.payload;\n state.firstTime = true;\n },\n handleSaveSuccess: (state, action) => {\n state.document = action.payload.data;\n state.currentSignature = action.payload.data;\n state.firstTime = true;\n }\n },\n});\n\nexport const { \n handleChange,\n handleSaveSuccess,\n handleGet\n} = signatureSlice.actions;\n\nexport default signatureSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { countryApi } from 'Services/CountryService';\nimport { organizationProfileApi } from 'Services/OrganizationProfileService';\n\nexport const initialState = {\n countryList: [],\n selectedCountry: {\n id: null,\n code: null,\n description: null,\n provinceOrStateList: []\n },\n selectedProvinceOrState: {\n id: null,\n code: null,\n description: null,\n },\n companyName: {\n value: \"\",\n error: \"\",\n },\n phoneNumber: {\n value: \"\",\n error: \"\",\n },\n businessEin: {\n value: \"\",\n error: \"\",\n },\n addressLine: {\n value: \"\",\n error: \"\",\n },\n addressLine2: {\n value: \"\",\n error: \"\",\n },\n city: {\n value: \"\",\n error: \"\",\n },\n provinceOrState: {\n value: \"\",\n error: \"\",\n },\n country: {\n value: \"\",\n error: \"\",\n },\n county: {\n value: \"\",\n error: \"\",\n },\n postalCode: {\n value: \"\",\n error: \"\",\n },\n showPageLeave: false,\n currentProfileInfo: {\n companyName: '',\n phoneNumber: '',\n businessEin: '',\n addressLine: '',\n addressLine2: '',\n country: '',\n provinceOrState: '',\n city: '',\n postalCode: '',\n }\n};\n\nconst organizationProfileSlice = createSlice({\n name: \"organization-profile\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = \"\";\n state[action.payload.field].value = action.payload.value;\n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleGet : (state, action) => {\n Object.entries(action.payload).forEach(([field, value]) => { \n if (state[field]) {\n state[field].value = value || '';\n state[field].error = '';\n }\n });\n\n state.currentProfileInfo = action.payload;\n },\n handleChangeCountry: (state, action) => {\n state.selectedCountry = state.countryList.find(o => o.description === action.payload);\n state.country.value = state.countryList.find(o => o.description === action.payload).description;\n state.selectedProvinceOrState = initialState.selectedProvinceOrState;\n state.provinceOrState = initialState.provinceOrState;\n },\n handleChangeProvinceOrState: (state, action) => {\n if (action.payload?.value) {\n state.selectedProvinceOrState = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '');\n state.provinceOrState.value = state.selectedCountry.provinceOrStateList.find(o => o.description === action.payload.value || '').description;\n }\n },\n handleFillCountryAndState: (state, action) => {\n const selectedCountry = state.countryList.find(o => o.description === action.payload.country);\n\n if (selectedCountry) {\n state.selectedCountry = selectedCountry;\n const selectedProvinceOrState = selectedCountry.provinceOrStateList.find(o => o.description === action.payload.provinceOrState);\n if (selectedProvinceOrState) {\n state.selectedProvinceOrState = selectedProvinceOrState;\n }\n }\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n countryApi.endpoints.getCountryList.matchFulfilled, (state, action) => {\n state.countryList = action.payload;\n }\n )\n .addMatcher(\n organizationProfileApi.endpoints.updateOrganizationProfile.matchFulfilled, (state, action) => {\n state.currentProfileInfo.companyName = state.companyName.value;\n state.currentProfileInfo.phoneNumber = state.phoneNumber.value;\n state.currentProfileInfo.businessEin = state.businessEin.value;\n state.currentProfileInfo.addressLine = state.addressLine.value;\n state.currentProfileInfo.addressLine2 = state.addressLine2.value;\n state.currentProfileInfo.country = state.country.value;\n state.currentProfileInfo.provinceOrState = state.provinceOrState.value;\n state.currentProfileInfo.city = state.city.value;\n state.currentProfileInfo.postalCode = state.postalCode.value;\n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n handleGet,\n handleChangeCountry,\n handleChangeProvinceOrState,\n handleFillCountryAndState,\n handleShowPageLeave\n} = organizationProfileSlice.actions;\n\nexport default organizationProfileSlice.reducer;\n","import { emptySplitApi } from './index'\n\nexport const organizationAdditionalEmailApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getAdditionalEmailPagedList: builder.mutation({\n query: ({pageNumber, pageSize}) => ({\n url: `api/v1/auth-service/organization/additional-email?pageNumber=${pageNumber}&pageSize=${pageSize}`,\n method: \"GET\"\n }),\n }),\n updateMainEmailAddress: builder.mutation({\n query: (emailAddress) => ({\n url: `api/v1/auth-service/organization/main-email?emailAddress=${emailAddress}`,\n method: \"PATCH\",\n }),\n }),\n insertAdditionalEmail: builder.mutation({\n query: (newEmailAddress) => ({\n url: `api/v1/auth-service/organization/additional-email/${newEmailAddress}`,\n method: \"POST\"\n }),\n }),\n deleteAdditionalEmail: builder.mutation({\n query: (id) => ({\n url: `api/v1/auth-service/organization/additional-email/${id}`,\n method: \"DELETE\"\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetAdditionalEmailPagedListMutation,\n useUpdateMainEmailAddressMutation,\n useInsertAdditionalEmailMutation,\n useDeleteAdditionalEmailMutation\n} = organizationAdditionalEmailApi;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { organizationAdditionalEmailApi } from \"Services/OrganizationAdditionalEmailService\";\n\nexport const initialState = {\n isDialogOpen: false,\n loadingList: false,\n additionalEmailListPagedData: {\n pageNumber: 1,\n pageSize: 5,\n pageCount: 0,\n totalCount: 0,\n items: []\n },\n newEmailAddress: {\n value: '',\n error: ''\n },\n emailAddress: {\n value: '',\n error: ''\n },\n previousEmail: ''\n};\n\nconst organizationAdditionalEmailSlice = createSlice({\n name: \"organization-additional-email\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = \"\";\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n closeDialog: (state, action) => {\n state.isDialogOpen = false;\n },\n openDialog: (state, action) => {\n state.isDialogOpen = true;\n state.newEmailAddress.value = '';\n state.newEmailAddress.error = '';\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n organizationAdditionalEmailApi.endpoints.getAdditionalEmailPagedList.matchFulfilled, (state, action) => {\n\n state.emailAddress.value = action.payload.mainEmailAddress || '';\n state.previousEmail = action.payload.mainEmailAddress || '';\n state.loadingList = false;\n \n state.additionalEmailListPagedData.pageNumber = action.payload.pagedData.pageNumber;\n state.additionalEmailListPagedData.pageSize = action.payload.pagedData.pageSize;\n state.additionalEmailListPagedData.pageCount = action.payload.pagedData.pageCount;\n state.additionalEmailListPagedData.totalCount = action.payload.pagedData.totalCount;\n state.additionalEmailListPagedData.items = action.payload.pagedData.items;\n }\n )\n .addMatcher(\n organizationAdditionalEmailApi.endpoints.getAdditionalEmailPagedList.matchPending, (state, action) => {\n state.loadingList = true;\n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n closeDialog,\n openDialog,\n} = organizationAdditionalEmailSlice.actions;\n\nexport default organizationAdditionalEmailSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { blockedFundersApi } from \"Services/BlockedFundersService\";\nimport { userProjectApi } from \"Services/UserProjectService\";\nimport startcase from \"utils/startcase\";\n\nexport const initialState = {\n selectedProject: {\n id: null,\n projectName: ''\n },\n userProjectPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'name',\n orderDirection: 'asc',\n items: []\n },\n blockedFundersPagedList: {\n pageNumber: 0,\n pageSize: 10,\n pageCount: 0,\n totalCount: 0,\n orderField: 'foundationName',\n orderDirection: 'asc',\n items: []\n } \n};\n\nconst blockedFundersSlice = createSlice({\n name: \"favorites-page\",\n initialState,\n reducers: {\n handleSelectUserProject: (state, action) => {\n state.selectedProject.id = action.payload.id;\n state.selectedProject.name = action.payload.name;\n },\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n blockedFundersApi.endpoints.getBlockedFundersList.matchFulfilled, (state, action) => {\n state.blockedFundersPagedList.pageNumber = action.payload.pageNumber;\n state.blockedFundersPagedList.pageSize = action.payload.pageSize;\n state.blockedFundersPagedList.pageCount = action.payload.pageCount;\n state.blockedFundersPagedList.totalCount = action.payload.totalCount;\n state.blockedFundersPagedList.orderField = action.payload.orderField;\n state.blockedFundersPagedList.orderDirection = action.payload.orderDirection;\n state.blockedFundersPagedList.items = action.payload.items?.map(o => ({...o, foundationName: startcase(o.foundationName)}));\n }\n )\n .addMatcher(\n userProjectApi.endpoints.getAll.matchFulfilled, (state, action) => {\n\n const items = [...action.payload.items];\n\n items.push({\n id: 'blocked-account',\n name: 'Blocked Account'\n });\n\n state.userProjectPagedList.pageNumber = action.payload.pageNumber;\n state.userProjectPagedList.pageSize = action.payload.pageSize;\n state.userProjectPagedList.pageCount = action.payload.pageCount;\n state.userProjectPagedList.totalCount = action.payload.totalCount + 1;\n state.userProjectPagedList.orderField = action.payload.orderField;\n state.userProjectPagedList.orderDirection = action.payload.orderDirection;\n state.userProjectPagedList.items = items;\n }\n )\n }\n\n});\n\nexport const { \n handleSelectUserProject,\n} = blockedFundersSlice.actions;\n\nexport default blockedFundersSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { customDatabaseApi } from \"Services/CustomDatabaseService\";\n\nexport const initialState = {\n activeStep: 0,\n userFields: [],\n requiredOptionalFields: [],\n deletedUserFields: []\n};\n\nconst customDatabaseSlice = createSlice({\n name: \"custom-database\",\n initialState,\n reducers: {\n handleChangeActiveStep: (state, action) => {\n state.activeStep = action.payload;\n },\n handleImportUserFields: (state, action) => {\n state.userFields = action.payload;\n state.activeStep = 1;\n state.deletedUserFields = [];\n \n state.requiredOptionalFields.forEach(item => {\n item.userFieldId = null;\n });\n },\n handleClearAll: (state, action) => {\n state.userFields = [];\n state.activeStep = 0;\n state.deletedUserFields = [];\n \n state.requiredOptionalFields.forEach(item => {\n item.userFieldId = null;\n });\n },\n handleDropRequiredOptionalFields: (state, action) => {\n const requiredOptionalFieldIndex = state.requiredOptionalFields.findIndex(o => o.fieldId === action.payload.destinationId);\n \n const userFieldIndex = state.userFields.findIndex(o => o.fieldId === action.payload.sourceId);\n const userField = state.userFields.find(o => o.fieldId === action.payload.sourceId);\n\n if (userFieldIndex !== -1) {\n state.deletedUserFields.push(userField);\n state.userFields.splice(userFieldIndex, 1);\n \n state.requiredOptionalFields[requiredOptionalFieldIndex] = {\n ...state.requiredOptionalFields[requiredOptionalFieldIndex], \n userFieldId: action.payload.sourceId\n };\n }\n\n \n },\n handleDropUserFields: (state, action) => {\n const requiredOptionalFieldIndex = state.requiredOptionalFields.findIndex(o => o.userFieldId === action.payload.sourceId);\n\n const deletedField = state.deletedUserFields.find(o => o.fieldId === action.payload.sourceId);\n const deletedFieldIndex = state.deletedUserFields.findIndex(o => o.fieldId === action.payload.sourceId);\n\n if (deletedFieldIndex !== -1) {\n state.deletedUserFields.splice(deletedFieldIndex, 1);\n state.userFields.push(deletedField);\n \n state.requiredOptionalFields[requiredOptionalFieldIndex] = {\n ...state.requiredOptionalFields[requiredOptionalFieldIndex],\n userFieldId: null\n };\n }\n }\n },\n extraReducers: (builder) => {\n builder.addMatcher(\n customDatabaseApi.endpoints.getRequiredOptionalFields.matchFulfilled, (state, action) => {\n state.requiredOptionalFields = action.payload.map(item => ({\n ...item,\n userFieldId: null\n }));\n }\n )\n }\n});\n\nexport const { \n handleChangeActiveStep,\n handleImportUserFields,\n handleDropRequiredOptionalFields,\n handleDropUserFields,\n handleClearAll\n} = customDatabaseSlice.actions;\n\nexport default customDatabaseSlice.reducer;\n","import { createSlice } from \"@reduxjs/toolkit\";\nimport { subscriptionPlanApi } from 'Services/SubscriptionPlanService';\n\n\nexport const initialState = {\n roleList: ['Admin', 'User', 'SubUser', 'supervisor', 'member', 'Demo', 'Sales', 'SuperAdmin', 'IT'],\n subscriptionPlanName: {\n value: '',\n error: ''\n },\n planDescription: {\n value: '',\n error: ''\n },\n displayplan: {\n value: '',\n error: ''\n },\n amountYears: {\n value: '',\n error: ''\n },\n amountMonths: {\n value: '',\n error: ''\n },\n amountDays: {\n value: '',\n error: ''\n },\n amountLicenses: {\n value: '',\n error: ''\n }\n};\n\nconst updateSubscriptionPlanSlice = createSlice({\n name: \"update-subscription-plan\",\n initialState,\n reducers: {\n handleChange: (state, action) => {\n state[action.payload.field].error = '';\n state[action.payload.field].value = action.payload.value; \n },\n handleModelErrors: (state, action) => {\n Object.entries(action.payload).forEach(([field, errors]) => { \n state[field].error = errors[0];\n });\n },\n handleChangeSubscriptionPlan: (state, action) => {\n state.subscriptionPlanName.value = action.payload;\n state.subscriptionPlanName.error = '';\n \n }, \n handleChangeDisplayPlan: (state, action) => {\n state.displayplan = action.payload;\n }, \n handleChangeProcessPayment: (state, action) => {\n state.processPayment = action.payload;\n }, \n },\n extraReducers: (builder) => {\n builder.addMatcher(\n subscriptionPlanApi.endpoints.getSubscriptionPlan.matchFulfilled, (state, action) => {\n Object.entries(action.payload).forEach(([field, value]) => {\n if (state[field] != null) {\n\n }\n }); \n }\n )\n }\n});\n\nexport const { \n handleChange,\n handleModelErrors,\n handleChangeSubscriptionPlan,\n handleChangeProcessPayment,\n handleChangeDisplayPlan\n} = updateSubscriptionPlanSlice.actions;\n\nexport default updateSubscriptionPlanSlice.reducer;","import { configureStore, isRejectedWithValue } from \"@reduxjs/toolkit\";\n\nimport { emptySplitApi, previewSplitApi, nonUserApi } from \"../Services\";\n\n// reducer import\nimport customizationReducer from \"./customizationReducer\";\nimport snackbarReducer from \"./snackbarReducer\";\n\nimport AuthSlice from \"views/pages/authentication/Auth.Slice\";\nimport SharedSlice from \"./Shared.Slice\";\nimport UserProfileSlice from \"views/account/user-profile/ProfileInfo.Slice\";\nimport AlertNotificationSlice from \"views/account/user-profile/AlertNotification.Slice\";\nimport AdditionalUsersSlice from \"views/account/additional-users/AdditionalUsers.Slice\";\nimport SignatureSlice from \"views/account/user-profile/Signature.Slice\";\nimport OrganizationProfileInfoSlice from \"views/account/organization-profile/OrganizationProfileInfo.Slice\";\nimport OrganizationAdditionalEmailSlice from \"views/account/organization-profile/OrganizationAdditionalEmail.Slice\";\nimport ManageAccountSlice from \"views/admin/manage-accounts/ManageAccount.Slice\";\nimport CreateAccountSlice from \"views/admin/create-account/CreateAccount.Slice\";\nimport CreateSubscriptionPlanSlice from \"views/admin/create-subscription-plan/CreateSubscriptionPlan.Slice\"\nimport UpdateAccountSlice from \"views/admin/update-account/UpdateAccount.Slice\";\nimport UpdateFoundationCaSlice from \"views/admin/update-foundation-ca/UpdateFoundationCa.Slice\";\nimport UpdateFoundationUsSlice from \"views/admin/update-foundation-us/UpdateFoundationUs.Slice\";\nimport UserProjectSlice from \"views/user-project/UserProject.Slice\";\nimport SearchEngineSlice from \"views/search-engine/common/SearchEngine.Slice\";\nimport IncomeSlice from \"views/project-budget/Income.Slice\";\nimport ExpenseSlice from \"views/project-budget/Expense.Slice\";\nimport FoundationProfileSlice from \"views/foundation-profile/FoundationProfile.Slice\";\nimport FoundationProfileSliceV2 from \"views/foundation-profile-v2/FoundationProfile.Slice\";\nimport InquirySlice from \"views/document-generator/inquiry/Inquiry.Slice\";\nimport ProposalSlice from \"views/document-generator/proposal/Proposal.Slice\";\nimport CustomSlice from \"views/document-generator/custom/Custom.Slice\";\nimport GrantSecretarySlice from \"views/grant-secretary/GrantSecretary.Slice\";\nimport GrantSecretarySliceV2 from \"views/grant-secretary-v2/GrantSecretary.Slice\";\nimport FavoritesSlice from \"views/manage-funders/favorites/Favorites.Slice\";\nimport BlockedFundersSlice from \"views/manage-funders/blocked-funders/BlockedFunders.Slice\";\nimport CustomDatabaseSlice from \"views/manage-funders/custom-databases/CustomDatabase.Slice\";\nimport FoundationProfileCASlice from \"views/foundation-profile-ca/FoundationProfile.CA.Slice\";\nimport FoundationProfileCASliceV2 from \"views/foundation-profile-ca-v2/FoundationProfile.CA.Slice\";\nimport ManageSubscriptionPlanSlice from \"views/admin/manage-subscription-plans/ManageSubscriptionPlan.Slice\";\nimport UpdateSubscriptionPlanSlice from \"views/admin/update-subscription-plan/UpdateSubscriptionPlan.Slice\";\nimport ManageCouponSlice from \"views/admin/manage-coupons/ManageCoupon.Slice\";\nimport ManageDeadlineSlice from \"views/admin/manage-deadlines/ManageDeadline.Slice\";\nimport ManageFeedbackSlice from \"views/admin/manage-feedbacks/ManageFeedback.Slice\";\nimport ThankYouLetterSlice from \"views/document-generator/thank-you/ThankYou.Slice\";\nimport ImpactReportLetterSlice from \"views/document-generator/impact-report/ImpactReport.Slice\";\nimport PublicFoundationProfileSlice from \"views/pages/public-profile-page/PublicFoundationProfile.Slice\";\n\nconst rtkQueryErrorLogger = (api) => (next) => (action) => {\n\n if (isRejectedWithValue(action)) {\n console.warn(\"Api Error\", action);\n\n let doRedirect = false;\n\n const errorMessage = action.payload?.data?.message ?? 'Unauthorized action';\n const generalError = action.payload?.error;\n const mediaTypeError = action.payload?.data?.title ?? 'Media type error';\n\n // 401 - Unauthorized\n if (action.payload.status === 401) {\n console.error('401 - Unauthorized', action);\n doRedirect = true;\n }\n\n // 403 - Forbidden\n if (action.payload.status === 403) {\n console.error('403 - Forbidden', action);\n doRedirect = true;\n }\n\n // 415 - Unsupported Media Type\n if (action.payload.status === 415) {\n console.error('415 - Unsupported Media Type', action);\n }\n\n // General Errors\n if (generalError != null) {\n console.error('General Errors', action);\n }\n\n if (doRedirect) {\n window.setTimeout(() => {\n localStorage.clear();\n window.location.href = '/';\n }, 3000);\n }\n }\n\n return next(action);\n};\n\nexport default configureStore({\n reducer: {\n customization: customizationReducer,\n snackbar: snackbarReducer,\n authState: AuthSlice,\n sharedState: SharedSlice,\n userProfileState: UserProfileSlice,\n alertNotificationState: AlertNotificationSlice,\n additionalUsersState: AdditionalUsersSlice,\n signatureState: SignatureSlice,\n organizationProfileState: OrganizationProfileInfoSlice,\n organizationAdditionalEmailState: OrganizationAdditionalEmailSlice,\n manageAccountState: ManageAccountSlice,\n manageSubscriptionPlanState: ManageSubscriptionPlanSlice,\n manageCouponState: ManageCouponSlice,\n manageDeadlineState: ManageDeadlineSlice,\n manageFeedbackState: ManageFeedbackSlice,\n createAccountState: CreateAccountSlice,\n createSubscriptionPlanState: CreateSubscriptionPlanSlice,\n updateSubscriptionPlanState: UpdateSubscriptionPlanSlice,\n updateAccountState: UpdateAccountSlice,\n updateFoundationCaState: UpdateFoundationCaSlice,\n updateFoundationUsState: UpdateFoundationUsSlice,\n userProjectState: UserProjectSlice,\n searchEngineState: SearchEngineSlice,\n incomeState: IncomeSlice,\n expenseState: ExpenseSlice,\n foundationProfileState: FoundationProfileSlice,\n foundationProfileStateV2: FoundationProfileSliceV2,\n inquiryState: InquirySlice,\n proposalState: ProposalSlice,\n customState: CustomSlice,\n grantSecretaryState: GrantSecretarySlice,\n grantSecretaryStateV2: GrantSecretarySliceV2,\n favoritesState: FavoritesSlice,\n blockedFundersState: BlockedFundersSlice,\n customDatabaseState: CustomDatabaseSlice,\n foundationProfileCAState: FoundationProfileCASlice,\n foundationProfileCAStateV2: FoundationProfileCASliceV2,\n thankYouLetterState: ThankYouLetterSlice,\n impactReportLetterState: ImpactReportLetterSlice,\n publicFoundationProfileState: PublicFoundationProfileSlice,\n [emptySplitApi.reducerPath]: emptySplitApi.reducer,\n [previewSplitApi.reducerPath]: previewSplitApi.reducer,\n [nonUserApi.reducerPath]: nonUserApi.reducer,\n },\n middleware: (getDefaultMiddleware) => {\n const middlewareList = [rtkQueryErrorLogger, emptySplitApi.middleware, previewSplitApi.middleware, nonUserApi.middleware, ...getDefaultMiddleware()];\n return middlewareList;\n },\n});\n","import { lazy } from 'react';\nimport store from 'store';\nimport { setLoginDialogOpen } from 'store/Shared.Slice';\n\n/**\n * A React.lazy wrapper that dynamically loads a React component.\n * \n * @param {Function} importFunction - A function that dynamically imports a component.\n * @returns A lazily loaded React component.\n * \n * If the import fails, the login dialog is opened.\n */\nexport default function lazyPage(importFunction) {\n return lazy(async () => {\n try {\n const module = await importFunction();\n return module;\n } \n catch (error) {\n console.error(`Failed to load component: ${error}`);\n store.dispatch(setLoginDialogOpen(true));\n }\n });\n}\n","import PropTypes from 'prop-types';\nimport { useEffect, useState } from 'react';\nimport { Link } from 'react-router-dom';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Box, Card, Divider, Grid, Typography } from '@mui/material';\nimport MuiBreadcrumbs from '@mui/material/Breadcrumbs';\n\n// project imports\nimport config from 'config';\nimport { gridSpacing } from 'store/constant';\n\n// assets\nimport { IconTallymark1 } from '@tabler/icons';\nimport AccountTreeTwoToneIcon from '@mui/icons-material/AccountTreeTwoTone';\nimport HomeIcon from '@mui/icons-material/Home';\nimport HomeTwoToneIcon from '@mui/icons-material/HomeTwoTone';\nimport { useTranslation } from \"react-i18next\";\n\nconst linkSX = {\n display: 'flex',\n color: 'grey.900',\n textDecoration: 'none',\n alignContent: 'center',\n alignItems: 'center'\n};\n\n// ==============================|| BREADCRUMBS ||============================== //\n\nconst Breadcrumbs = ({ card, divider, icon, icons, maxItems, navigation, rightAlign, separator, title, titleBottom, ...others }) => {\n const theme = useTheme();\n const { t } = useTranslation();\n\n const iconStyle = {\n marginRight: theme.spacing(0.75),\n marginTop: `-${theme.spacing(0.25)}`,\n width: '1rem',\n height: '1rem',\n color: theme.palette.secondary.main\n };\n\n const [main, setMain] = useState();\n const [item, setItem] = useState();\n\n // set active item state\n const getCollapse = (menu) => {\n if (menu.children) {\n menu.children.filter((collapse) => {\n if (collapse.type && collapse.type === 'collapse') {\n getCollapse(collapse);\n } else if (collapse.type && collapse.type === 'item') {\n if (document.location.pathname === config.basename + collapse.url) {\n setMain(menu);\n setItem(collapse);\n }\n }\n return false;\n });\n }\n };\n\n useEffect(() => {\n navigation?.items?.map((menu) => {\n if (menu.type && menu.type === 'group') {\n getCollapse(menu);\n }\n return false;\n });\n });\n\n // item separator\n const SeparatorIcon = separator;\n const separatorIcon = separator ? : ;\n\n let mainContent;\n let itemContent;\n let breadcrumbContent = ;\n let itemTitle = '';\n let CollapseIcon;\n let ItemIcon;\n\n // collapse item\n if (main && main.type === 'collapse') {\n CollapseIcon = main.icon ? main.icon : AccountTreeTwoToneIcon;\n mainContent = (\n \n {icons && }\n {t(main.title)}\n \n );\n }\n\n // items\n if (item && item.type === 'item') {\n itemTitle = t(item.title);\n\n ItemIcon = item.icon ? item.icon : AccountTreeTwoToneIcon;\n itemContent = (\n \n {icons && }\n {itemTitle}\n \n );\n\n // main\n if (item.breadcrumbs !== false) {\n breadcrumbContent = (\n \n \n \n {title && !titleBottom && (\n \n \n {t(item.title)}\n \n \n )}\n \n \n \n {icons && }\n {icon && }\n {!icon && 'Dashboard'}\n \n {mainContent}\n {itemContent}\n \n \n {title && titleBottom && (\n \n \n {t(item.title)}\n \n \n )}\n \n \n {card === false && divider !== false && }\n \n );\n }\n }\n\n return breadcrumbContent;\n};\n\nBreadcrumbs.propTypes = {\n card: PropTypes.bool,\n divider: PropTypes.bool,\n icon: PropTypes.bool,\n icons: PropTypes.bool,\n maxItems: PropTypes.number,\n navigation: PropTypes.object,\n rightAlign: PropTypes.bool,\n separator: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),\n title: PropTypes.bool,\n titleBottom: PropTypes.bool\n};\n\nexport default Breadcrumbs;\n","import { Link } from 'react-router-dom';\n\n// material-ui\nimport { ButtonBase } from '@mui/material';\n\n// project imports\nimport config from 'config';\n//import Logo from 'ui-component/Logo';\nimport Logo from '../../../assets/images/ga-logo-sm.png';\n\n// ==============================|| MAIN LOGO ||============================== //\n\nconst LogoSection = () => (\n \n \n \n);\n\nexport default LogoSection;\n","import PropTypes from 'prop-types';\nimport { forwardRef } from 'react';\n\n// material-ui\nimport { Collapse, Fade, Box, Grow, Slide, Zoom } from '@mui/material';\n\n// ==============================|| TRANSITIONS ||============================== //\n\nconst Transitions = forwardRef(({ children, position, type, direction, ...others }, ref) => {\n let positionSX = {\n transformOrigin: '0 0 0'\n };\n\n switch (position) {\n case 'top-right':\n positionSX = {\n transformOrigin: 'top right'\n };\n break;\n case 'top':\n positionSX = {\n transformOrigin: 'top'\n };\n break;\n case 'bottom-left':\n positionSX = {\n transformOrigin: 'bottom left'\n };\n break;\n case 'bottom-right':\n positionSX = {\n transformOrigin: 'bottom right'\n };\n break;\n case 'bottom':\n positionSX = {\n transformOrigin: 'bottom'\n };\n break;\n case 'top-left':\n default:\n positionSX = {\n transformOrigin: '0 0 0'\n };\n break;\n }\n\n return (\n \n {type === 'grow' && (\n \n {children} \n \n )}\n {type === 'collapse' && (\n \n {children}\n \n )}\n {type === 'fade' && (\n \n {children} \n \n )}\n {type === 'slide' && (\n \n {children} \n \n )}\n {type === 'zoom' && (\n \n {children} \n \n )}\n \n );\n});\n\nTransitions.propTypes = {\n children: PropTypes.node,\n type: PropTypes.oneOf(['grow', 'fade', 'collapse', 'slide', 'zoom']),\n position: PropTypes.oneOf(['top-left', 'top-right', 'top', 'bottom-left', 'bottom-right', 'bottom']),\n direction: PropTypes.oneOf(['up', 'down', 'left', 'right'])\n};\n\nTransitions.defaultProps = {\n type: 'grow',\n position: 'top-left',\n direction: 'up'\n};\n\nexport default Transitions;\n","import { useRef } from \"react\";\nimport {\n Stack,\n Button,\n Typography,\n Tooltip,\n} from \"@mui/material\";\nimport { Cancel, HelpOutline } from \"@mui/icons-material\";\n\nconst FileUploadView = ({\n children,\n documents,\n onDocumentChange,\n accept=\"*\",\n tips,\n multiple = false,\n incremental = false\n}) => {\n\n const inputRef = useRef();\n\n const handleSetSelectedDocuments = (element) => {\n const files = element.target.files;\n\n if (files != null && files.length > 0) {\n const _documents = Array.from(files).map(file => ({\n previewUrl: URL.createObjectURL(file),\n blob: file,\n }));\n\n if(incremental)\n onDocumentChange([...documents, ..._documents]);\n else\n onDocumentChange([..._documents]);\n }\n }\n\n return (\n \n \n handleSetSelectedDocuments(e)} \n />\n inputRef.current?.click()}\n >\n {children}\n \n {tips}\n \n {\n documents.length > 0 &&\n \n {\n documents.map((document, i) => (\n { \n e.stopPropagation();\n onDocumentChange([...documents.filter(o => o !== document)])}\n }\n />} \n disableRipple\n onClick={() => window.open(document.previewUrl)}\n sx={{ maxWidth: 200 }}\n >\n \n {document.blob.name}\n \n \n ))\n }\n \n }\n
\n )\n}\n\nexport default FileUploadView;","import { useState, useEffect } from 'react';\nimport { useDispatch } from 'react-redux';\nimport { showSuccessToaster, showErrorToaster } from 'store/Shared.Slice';\nimport { useTheme } from '@mui/material/styles';\nimport {\n Box,\n Typography,\n Grid,\n FormControlLabel,\n Switch,\n Checkbox,\n Tooltip,\n} from '@mui/material';\nimport { HelpOutline } from '@mui/icons-material';\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport LoadingButton from \"@mui/lab/LoadingButton\";\nimport FileUploadView from './FileUploadView';\nimport AutocompleteWrapper from \"components/AutocompleteWrapper\";\nimport { useSubmitFeedbackMutation } from 'Services/FeedbackService';\n\nclass FeedbackFormCustomError extends Error {\n constructor(message) {\n super();\n this.data = {\n message: message\n };\n }\n}\n\nconst FeedbackForm = ({\n question,\n feedbackType,\n showUploadFiles = true,\n showUploadScreenshots,\n showGivePermission,\n showCategory = false,\n showGrantSize= false,\n onSubmit,\n onCancel,\n}) => {\n\n const theme = useTheme();\n const dispatch = useDispatch();\n \n const defaultFormValue = {\n description: { value: \"\", error: \"\" },\n uploadFiles: false,\n uploadScreenshots: false,\n givePermission: false,\n files: [],\n categoryDescription:{ value: \"\", error: \"\" },\n grantSize:{ value: 0, error: \"\" },\n screenshots: [], \n grantType:{ value: \"\", error: \"\" }\n }\n const [formValue, setFormValue] = useState(defaultFormValue);\n const [documents, setDocuments] = useState([]); //[ { previewUrl: string, blob: file } ]\n const [screenshots, setScreenshots] = useState([]); //[ { previewUrl: string, blob: file } ]\n\n const [submitFeedback, { isLoading: isFeedbackSubmitting }] = useSubmitFeedbackMutation();\n\n const handleFormChange = (field, value) => {\n setFormValue({...formValue, [field]: value});\n };\n\n const [grantType, setGrantType] = useState({\n id: '',\n value: '',\n label: ''\n });\n \n const grantTypes = [\n { key: 0, value: 0, text: 'Disability' },\n { key: 1, value: 1, text: 'Community/Needs' },\n { key: 2, value: 2, text: 'Psychology' },\n { key: 3, value: 3, text: 'Aging' },\n { key: 4, value: 4, text: 'Agriculture/Food' },\n { key: 5, value: 5, text: 'Animal/Welfare' },\n { key: 6, value: 6, text: 'Children/Youth' }\n \n ];\n\n const handleSubmitFeedback = async () => {\n \n try {\n validate(documents, 1, 50);\n\n const model = new FormData();\n model.append(\"description\", formValue.description.value);\n model.append(\"type\", feedbackType);\n model.append(\"allowShare\", formValue.givePermission);\n model.append(\"grantSize\", formValue.grantSize.value);\n model.append(\"grantType\", grantType.value)\n documents.forEach(file => {\n model.append(\"files\", file.blob);\n });\n \n screenshots.forEach(screenshot => {\n model.append(\"screenshots\", screenshot.blob);\n });\n\n const response = await submitFeedback(model).unwrap();\n\n dispatch(showSuccessToaster(response.message));\n onSubmit?.();\n setFormValue(defaultFormValue);\n }\n catch(error) {\n // Model Errors\n if (error.data?.errors != null) {\n const copyFormValue = { ...formValue };\n Object.keys(error.data?.errors).forEach(key => {\n if (copyFormValue[key]) {\n if(key === \"grantSize\") {\n copyFormValue[key].error = \"feedbackInvalidGrantSize\";\n } else {\n copyFormValue[key].error = error.data?.errors[key][0]\n }\n };\n });\n\n setFormValue(copyFormValue);\n dispatch(showErrorToaster('Check for errors and try again'));\n }\n // Bad Request\n else if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n const validate = (files, maximumUploadCount, maxFileSizeInMB) => {\n const maxFileSizeInBytes = maxFileSizeInMB * 1024 * 1024;\n\n if(files.length > maximumUploadCount) {\n throw new FeedbackFormCustomError(`Limit exceeded: Upload up to ${maximumUploadCount} document${files > 1 ? 's' : ''}`);\n }\n\n var fileExceed = files.map(o => o.blob).find(document => document.size >= maxFileSizeInBytes);\n\n if(fileExceed) {\n throw new FeedbackFormCustomError(`${fileExceed.name} exceeds the maximum allowed size of ${maxFileSizeInMB}MB`);\n }\n }\n\n useEffect(() => {\n if(!formValue.uploadFiles) {\n setDocuments([]);\n }\n\n if(!formValue.uploadScreenshots) {\n setScreenshots([]);\n }\n\n }, [formValue]);\n\n useEffect(() => {\n return () => setFormValue(defaultFormValue);\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n return (\n \n \n {question} \n\n handleFormChange(\"description\", { value: element.target.value, error: \"\" } )}\n multiline\n rows={5}\n sx={{\n height: '140px',\n '#feedBackDescription': { height: '80px !important' }\n }}\n />\n { showCategory && \n \n setGrantType(newValue)}\n theme={theme}\n error=\"\" \n options={grantTypes.map(state => ({\n id: state.key,\n value: state.value,\n label: state.text \n }))}\n /> \n \n } \n { showGrantSize && \n \n handleFormChange(\"grantSize\", { value: element.target.value, error: \"\" } )}\n error={formValue.grantSize.error}\n />\n \n }\n {\n showUploadFiles &&\n \n handleFormChange(\"uploadFiles\", event.target.checked)}\n />\n }\n label=\"Upload Files\"\n />\n \n } \n \n {\n formValue.uploadFiles &&\n \n setDocuments(documents)} \n tips={\n \n Upload only 1 document of any type no larger than 50 MB\n \n \n \n \n }\n >\n Attach Document\n \n \n }\n\n {\n showUploadScreenshots &&\n \n handleFormChange(\"uploadScreenshots\", event.target.checked)}\n />\n }\n label=\"Include a screenshot\"\n />\n \n }\n {\n formValue.uploadScreenshots &&\n \n setScreenshots(screenshots)}\n accept=\"image/*\"\n multiple\n incremental\n >\n Add Screenshots\n \n \n }\n {\n showGivePermission &&\n \n handleFormChange(\"givePermission\", event.target.checked)} />\n }\n label=\"Do you give us permission to use your answer?\"\n />\n \n }\n\n \n \n \n Cancel\n \n \n\n \n \n Submit\n \n \n \n \n )\n}\n\nexport default FeedbackForm;","import { useState, useRef, useEffect } from 'react';\n\nimport { useNavigate } from 'react-router-dom';\nimport { useSelector, useDispatch } from 'react-redux';\nimport { useUpdateSeAccessMutation } from \"Services/AdminService\";\nimport ReactCountryFlag from \"react-country-flag\"\nimport ReactQuill, { Quill } from 'react-quill';\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport {\n Avatar,\n Box,\n Chip,\n ClickAwayListener,\n Divider,\n List,\n ListItemButton,\n ListItemIcon,\n ListItemText,\n Paper,\n Popper,\n Link,\n Stack,\n Typography,\n Backdrop,\n CircularProgress,\n Collapse,\n \n} from '@mui/material';\n// third-party\n\n// project imports\nimport MainCard from 'ui-component/cards/MainCard';\nimport Transitions from 'ui-component/extended/Transitions';\nimport FeedbackIcon from '@mui/icons-material/Feedback';\nimport FavoriteIcon from '@mui/icons-material/Favorite';\nimport AssignmentLateIcon from '@mui/icons-material/AssignmentLate';\nimport RateReviewIcon from '@mui/icons-material/RateReview';\nimport FeedbackForm from './FeedbackForm';\nimport ThumbUpIcon from '@mui/icons-material/ThumbUp'\nimport IconPerson from '@mui/icons-material/Person'\nimport QuillResize from 'quill-resize-module';\n\n// assets\nimport { IconLogout, IconSettings } from '@tabler/icons';\n\nimport { useLogoutMutation } from 'Services/LoginServices';\nimport { showSuccessToaster } from 'store/Shared.Slice';\n\nimport { useTranslation } from \"react-i18next\";\n// ==============================|| PROFILE MENU ||============================== //\nQuill.register('modules/resize', QuillResize);\nconst SimpleProfileSection = () => {\n const theme = useTheme();\n const customization = useSelector((state) => state.customization);\n const navigate = useNavigate();\n const { userToken } = useSelector(state => state.sharedState);\n const dispatch = useDispatch();\n const [UpdateAccess, { isLoading: isUpdatingAccess }] = useUpdateSeAccessMutation();\n const [expandedIndex, setExpandedIndex] = useState(null);\n \n const validRoles = [\"Admin\", \"Sales\", \"SuperAdmin\"];\n const { t } = useTranslation();\n let userRoles = [];\n\n if (Array.isArray(userToken?.role)) {\n userRoles = userToken?.role ?? ['User'];\n }\n else {\n userRoles.push(userToken?.role ?? 'User');\n }\n const substring = \"AccessUs\";\n \n const accessUs = userRoles.filter((string) =>\n string.toUpperCase().includes(substring.toUpperCase())\n );\n \n const accessCanada = userRoles.filter((string) =>\n string.toUpperCase().includes(\"AccessCanada\".toUpperCase())\n );\n \n const [selectedIndex] = useState(-1);\n const [open, setOpen] = useState(false);\n const [openFeedback, setFeedbackOpen] = useState(false);\n \n const [logout, { isLoading }] = useLogoutMutation();\n\n /**\n * anchorRef is used on different componets and specifying one type leads to other components throwing an error\n * */\n const anchorRef = useRef(null);\n const anchorFeedbackRef = useRef(null);\n\n const handleLogout = async () => {\n handleToggle();\n const responseLogout = await logout().unwrap();\n localStorage.clear();\n navigate('/', { replace: true });\n dispatch(showSuccessToaster(responseLogout.message));\n };\n\n const handleUserProfile = async () => {\n handleToggle();\n navigate('/main/account/user-profile', { replace: true });\n };\n\n const handleChangeAccess = async () => {\n \n if (validRoles.some(role => userRoles.includes(role))) {\n const response = await UpdateAccess().unwrap();\n\n handleToggle();\n const responseLogout = await logout().unwrap();\n localStorage.clear();\n navigate('/', { replace: true });\n dispatch(showSuccessToaster(responseLogout.message));\n } \n };\n\n const handleClose = (event) => {\n if (anchorRef.current && anchorRef.current.contains(event.target)) {\n return;\n }\n setOpen(false);\n };\n\n const handleFeedbackClose = (event) => {\n if (anchorFeedbackRef.current && anchorFeedbackRef.current.contains(event.target)) {\n return;\n }\n setExpandedIndex(null);\n setFeedbackOpen(false);\n };\n\n const handleFeedbackSubmitted = () => {\n setFeedbackOpen(false);\n setExpandedIndex(null);\n }\n\n const handleToggle = () => {\n setOpen((prevOpen) => !prevOpen);\n };\n\n const handleFeedbackToggle = () => {\n setFeedbackOpen((prevFeedbackOpen) => !prevFeedbackOpen);\n };\n\n const handleExpandClick = (index) => {\n setExpandedIndex(expandedIndex === index ? null : index);\n };\n\n const prevOpen = useRef(open);\n const prevFeedbackOpen = useRef(openFeedback);\n\n useEffect(() => {\n if (prevOpen.current === true && open === false) {\n anchorRef.current.focus();\n }\n\n prevOpen.current = open;\n\n if (prevFeedbackOpen.current === true && openFeedback === false) {\n anchorFeedbackRef.current.focus();\n }\n\n prevFeedbackOpen.current = openFeedback;\n\n }, [open, openFeedback]);\n\n const openInNewTab = url => {\n const newWindow = window.open(url, '_blank', 'noopener,noreferrer')\n if (newWindow) newWindow.opener = null\n };\n\n return (\n <>\n handleChangeAccess()} sx={{ fontSize: 20, textAlign: \"left\", fontWeight: \"bold\", borderRadius: '27px', }} color=\"secondary\">\n \n {accessUs.length > 0 && (\n \n )}\n\n {accessCanada.length > 0 && (\n \n )}\n \n \n \n \n \n {({ TransitionProps }) => (\n \n \n \n \n \n \n \n Classify your feedback \n \n \n \n \n \n \n \n \n {/*-------- Compliment --------*/}\n handleExpandClick(0)}\n >\n \n \n \n Give a compliment} />\n \n \n setExpandedIndex(null)}\n />\n \n\n {/*-------- Issue --------*/}\n handleExpandClick(1)}\n >\n \n \n \n Report a problem} />\n \n \n setExpandedIndex(null)}\n />\n \n\n {/*-------- Suggeston --------*/}\n handleExpandClick(2)}\n >\n \n \n \n Make a suggestion} />\n \n \n setExpandedIndex(null)}\n />\n \n\n {/*-------- Success --------*/}\n handleExpandClick(3)}\n >\n \n \n \n Success!} />\n \n \n setExpandedIndex(null)}\n />\n \n\n
\n \n \n \n \n \n )}\n \n\n openInNewTab(\"https://grantadvance.supportbee.io/2439-the-simple-funding-solution\")} sx={{ fontSize: 20, textAlign: \"left\", fontWeight: \"bold\" }} color=\"secondary\">\n \n {t('labels.help_center')} \n \n \n \n \n \n \n\n \n {t('labels.profile_settings')} \n \n \n }\n icon={\n \n \n }\n variant=\"outlined\"\n ref={anchorRef}\n aria-controls={open ? 'menu-list-grow' : undefined}\n aria-haspopup=\"true\"\n onClick={handleToggle}\n color=\"primary\"\n />\n \n \n {({ TransitionProps }) => (\n \n \n \n \n \n \n \n {t('labels.hi')}, \n \n {userToken.UserName}\n \n \n \n \n \n \n \n \n \n \n \n {t('labels.user_profile')}} />\n \n\n\n \n \n \n \n {t('labels.logout')}} />\n \n\n
\n \n \n \n \n \n )}\n \n >\n );\n};\n\nexport default SimpleProfileSection;\n","export default __webpack_public_path__ + \"static/media/user-round.13b5a31b.svg\";","// material-ui\nimport { useTheme, styled } from '@mui/material/styles';\nimport {\n Avatar,\n Button,\n Card,\n CardContent,\n Chip,\n Divider,\n Grid,\n List,\n ListItem,\n ListItemAvatar,\n ListItemSecondaryAction,\n ListItemText,\n Stack,\n Typography\n} from '@mui/material';\n\n// assets\nimport { IconBrandTelegram, IconBuildingStore, IconMailbox, IconPhoto } from '@tabler/icons';\nimport User1 from 'assets/images/users/user-round.svg';\nimport { useEffect, useState } from 'react';\n\n// styles\nconst ListItemWrapper = styled('div')(({ theme }) => ({\n cursor: 'pointer',\n padding: 16,\n '&:hover': {\n background: theme.palette.primary.light\n },\n '& .MuiListItem-root': {\n padding: 0\n }\n}));\n\n// ==============================|| NOTIFICATION LIST ITEM ||============================== //\n\nconst NotificationList = ({ \n userNotifications = [],\n filterOption,\n onClickNotification\n}) => {\n\n const theme = useTheme();\n const [filteredNotifications, setFilteredNotifications] = useState([]);\n\n const chipSX = {\n height: 24,\n padding: '0 6px'\n };\n const chipErrorSX = {\n ...chipSX,\n color: theme.palette.orange.dark,\n backgroundColor: theme.palette.orange.light,\n marginRight: '5px'\n };\n\n const chipWarningSX = {\n ...chipSX,\n color: theme.palette.warning.dark,\n backgroundColor: theme.palette.warning.light\n };\n\n useEffect(() => {\n\n setFilteredNotifications([...userNotifications]);\n\n if (filterOption === \"new\") {\n setFilteredNotifications([...userNotifications.filter(o => o.tagNew === true)]);\n }\n\n if (filterOption === \"unread\") {\n setFilteredNotifications([...userNotifications.filter(o => o.tagUnread === true)]);\n }\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [filterOption, userNotifications]);\n\n return (\n \n {filteredNotifications.map(item => (\n onClickNotification(item)}>\n
\n\n \n \n \n \n \n \n {item.title}} />\n \n\n \n \n {item.shortDescription} \n \n \n \n\n {item.tagNew === true && (\n \n \n \n )}\n\n {item.tagUnread === true && (\n \n \n \n )}\n\n \n \n {item.creationTimeAgo}\n \n \n \n \n \n \n\n \n \n
\n\n
\n ))}\n\n
\n );\n};\n\nexport default NotificationList;\n","import { emptySplitApi } from './index'\n\nexport const userNotificationApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getUserNotificationsFullReadList: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/user-notifications/full`,\n method: \"GET\"\n }),\n }),\n getUserNotificationsList: builder.mutation({\n query: (pageNumber) => ({\n url: `api/v1/auth-service/user-notifications/${pageNumber}`,\n method: \"GET\"\n }),\n }),\n readUserNotification: builder.mutation({\n query: (notificationId) => ({\n url: `api/v1/auth-service/user-notifications/read/${notificationId}`,\n method: \"GET\"\n }),\n }),\n updateAllNotificationsToRead: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/user-notifications/read-all`,\n method: \"POST\"\n }),\n }),\n getAmountOfNotifications: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/user-notifications/amount`,\n method: \"GET\"\n }),\n }),\n getNotificationDocuments: builder.mutation({\n query: (id) => `api/v1/auth-service/user-notifications/announcement-documents/${id}`,\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetUserNotificationsFullReadListMutation,\n useGetUserNotificationsListMutation,\n useReadUserNotificationMutation,\n useUpdateAllNotificationsToReadMutation,\n useGetAmountOfNotificationsMutation,\n useGetNotificationDocumentsMutation,\n} = userNotificationApi;\n","import { useState, useRef, useEffect } from 'react';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport {\n Avatar,\n Badge,\n Box,\n Link,\n ButtonBase,\n CardActions,\n Chip,\n CircularProgress,\n ClickAwayListener,\n Divider,\n Grid,\n Paper,\n Popper,\n Stack,\n TextField,\n Typography,\n useMediaQuery\n} from '@mui/material';\n\n// project imports\nimport MainCard from 'ui-component/cards/MainCard';\nimport Transitions from 'ui-component/extended/Transitions';\nimport NotificationList from './NotificationList';\nimport AnimateButton from 'ui-component/extended/AnimateButton';\n// assets\nimport { IconBell } from '@tabler/icons';\nimport { \n useGetUserNotificationsListMutation, \n useUpdateAllNotificationsToReadMutation,\n useGetAmountOfNotificationsMutation,\n} from 'Services/UserNotificationService';\n\nimport { useDispatch } from 'react-redux';\nimport { showErrorToaster } from 'store/Shared.Slice';\nimport { LoadingButton } from '@mui/lab';\n\nimport NotificationPopup from './NotificationPopup';\n\n// notification status options\nconst status = [\n {\n value: 'all',\n label: 'All Notifications'\n },\n {\n value: 'new',\n label: 'New'\n },\n {\n value: 'unread',\n label: 'Unread'\n }\n];\n\n// ==============================|| NOTIFICATION ||============================== //\n\nconst NotificationSection = () => {\n const theme = useTheme();\n const dispatch = useDispatch();\n const matchesXs = useMediaQuery(theme.breakpoints.down('md'));\n\n const [ getUserNotificationsList ] = useGetUserNotificationsListMutation();\n const [ updateAllNotificationsToRead, { isLoading: isUpdating } ] = useUpdateAllNotificationsToReadMutation();\n const [ getAmountOfNotifications ] = useGetAmountOfNotificationsMutation();\n\n const [open, setOpen] = useState(false);\n const [value, setValue] = useState('');\n const [pageNumber, setPageNumber] = useState(1);\n const [isLoading, setIsLoading] = useState(false);\n const [isLoadingShowMore, setIsLoadingShowMore] = useState(false);\n const [userNotifications, setUserNotifications] = useState([]);\n \n const [openReadNotification, setOpenReadNotification] = useState({\n isOpen: false,\n notificationId: ''\n });\n\n const [notificationsAmount, setNotificationsAmount] = useState({\n allNotifications: 0,\n unreadNotifications: 0\n });\n\n const [ userNotification, setUserNotification ] = useState({\n title: '',\n description: ''\n });\n\n /**\n * anchorRef is used on different componets and specifying one type leads to other components throwing an error\n * */\n const anchorRef = useRef(null);\n\n const handleClose = (event) => {\n if (anchorRef.current && anchorRef.current.contains(event.target)) {\n return;\n }\n setOpen(false);\n };\n\n const prevOpen = useRef(open);\n useEffect(() => {\n if (prevOpen.current === true && open === false) {\n anchorRef.current.focus();\n }\n prevOpen.current = open;\n }, [open]);\n\n const handleChange = (event) => {\n if (event?.target.value) setValue(event?.target.value);\n };\n\n const handleGetUserNotifications = (currentPageNumber) => {\n\n setIsLoading(true);\n\n getUserNotificationsList(currentPageNumber).unwrap().then(response => {\n setIsLoading(false);\n\n setUserNotifications([...response]);\n\n setOpen((prevOpen) => !prevOpen);\n\n const currentUnreadNotifications = response.filter(o => o.tagUnread === true).length;\n\n if (currentUnreadNotifications > notificationsAmount.unreadNotifications) {\n setNotificationsAmount({\n ...notificationsAmount,\n unreadNotifications: response.filter(o => o.tagUnread === true).length,\n }); \n }\n\n }, error => {\n // Bad Request\n setIsLoading(false);\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n });\n }\n\n const handleShowMore = () => {\n\n const currentPageNumber = pageNumber + 1;\n\n setPageNumber(currentPageNumber);\n setIsLoadingShowMore(true);\n \n getUserNotificationsList(currentPageNumber).unwrap().then(response => {\n setUserNotifications([...response]);\n setIsLoadingShowMore(false);\n\n }, error => {\n // Bad Request\n setIsLoadingShowMore(false);\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n });\n }\n\n const handleGetAmountOfNotifications = () => {\n getAmountOfNotifications().unwrap().then(response => {\n setNotificationsAmount({\n ...notificationsAmount,\n allNotifications: response?.data?.allNotifications,\n unreadNotifications: response?.data?.unreadNotifications,\n });\n }, error => {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n });\n }\n\n const handleShowNotification = (userNotificationItem) => {\n\n const userNotificationsTemp = userNotifications.map(notification => ({\n ...notification,\n tagUnread: userNotificationItem.notificationId === notification.notificationId ? false : notification.tagUnread,\n tagNew: userNotificationItem.notificationId === notification.notificationId ? false : notification.tagNew,\n }));\n\n setUserNotifications(userNotificationsTemp);\n\n setOpenReadNotification({\n ...openReadNotification,\n isOpen: true,\n notificationId: userNotificationItem.notificationId\n });\n }\n\n const handleMarkAllAsRead = () => {\n\n updateAllNotificationsToRead().unwrap().then(() => {\n\n const userNotificationsTemp = userNotifications.map(notification => ({\n ...notification,\n tagUnread: false,\n tagNew: false,\n }));\n \n setUserNotifications(userNotificationsTemp);\n\n setNotificationsAmount({\n ...notificationsAmount,\n unreadNotifications: 0\n });\n\n }, error => {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n })\n\n }\n\n useEffect(() => {\n handleGetAmountOfNotifications();\n }, []);\n\n \n return (\n <>\n \n \n\n {isLoading && (\n \n )}\n\n {!isLoading && (\n {\n if (open) {\n setOpen((prevOpen) => !prevOpen);\n }\n else {\n setPageNumber(1);\n handleGetUserNotifications(1);\n }\n }}\n color=\"inherit\"\n >\n \n {(notificationsAmount.unreadNotifications === 0) && (\n \n )}\n\n {notificationsAmount.unreadNotifications > 0 && (\n \n \n \n \n \n \n )}\n \n \n \n )}\n \n \n \n {({ TransitionProps }) => (\n \n \n \n \n \n \n \n \n \n All Notifications \n \n \n \n \n {isUpdating && (\n \n )}\n\n {!isUpdating && (\n Mark as all read\n \n )}\n \n \n \n \n \n \n \n \n \n {status.map((option) => (\n \n {option.label}\n \n ))}\n \n \n \n \n \n \n \n\n \n\n \n \n \n \n \n Show more\n \n \n \n \n \n \n )}\n \n\n setOpenReadNotification({ ...openReadNotification, isOpen: false, notificationId: '' })}\n onReadNotification={(amount) => {\n\n setNotificationsAmount({\n ...notificationsAmount,\n allNotifications: amount.allNotifications,\n unreadNotifications: amount.unreadNotifications,\n });\n\n }}\n />\n >\n );\n};\n\nexport default NotificationSection;\n","export default __webpack_public_path__ + \"static/media/notification-cute.307a8b2a.svg\";","import {\n Drawer, \n Box, \n Stack,\n Typography, \n Toolbar,\n IconButton,\n Skeleton,\n} from \"@mui/material\";\nimport { Notifications, Close } from \"@mui/icons-material\";\n\nimport { grey } from \"@mui/material/colors\";\nimport ScrollBar from \"react-perfect-scrollbar\";\nimport NotificationCard from \"ui-component/cards/NotificationCard\";\nimport NoNotification from \"assets/images/icons/notification-cute.svg\";\n\nconst LoadingNotificationSkeleton = () => (\n \n {Array(10)\n .fill(0)\n .map((_, i) => (\n \n \n \n
\n ))}\n \n);\n\nconst NoNotificationComponent = () => (\n \n \n (theme.palette.mode === \"light\" ? grey[800] : \"#fff\"),\n mb: 3,\n }}\n >\n No notifications\n \n \n);\n\nconst NotificationDrawer = ({\n open,\n onClose,\n isLoading,\n notifications = [],\n}) => {\n\n return (\n \n \n \n \n Notifications \n \n \n \n \n \n\n {isLoading \n ? \n : (\n \n {notifications.length > 0 ?\n notifications.map(notification => (\n \n ))\n : \n }\n \n )\n }\n \n )\n}\n\nexport default NotificationDrawer;","import { useState, useEffect } from 'react';\n\nimport { useTheme } from '@mui/material/styles';\nimport {\n Avatar,\n Badge,\n Box,\n ButtonBase,\n} from '@mui/material';\n\nimport AnimateButton from 'ui-component/extended/AnimateButton';\n\nimport { IconBell } from '@tabler/icons';\nimport { \n useGetUserNotificationsFullReadListMutation,\n useGetAmountOfNotificationsMutation,\n useGetNotificationDocumentsMutation,\n} from 'Services/UserNotificationService';\n\nimport { useDispatch } from 'react-redux';\nimport { showErrorToaster } from 'store/Shared.Slice';\n\nimport NotificationDrawer from './NotificationDrawer';\n\nconst NotificationSectionV2 = ({ welcomeClosed = false }) => {\n\n const theme = useTheme();\n const dispatch = useDispatch();\n\n const [getUserNotificationList, { isLoading: isNotificationListLoading }] = useGetUserNotificationsFullReadListMutation();\n const [ getAmountOfNotifications ] = useGetAmountOfNotificationsMutation();\n const [getAnnouncementDocument] = useGetNotificationDocumentsMutation();\n\n const [drawerOpen, setDrawerOpen] = useState(false);\n const [isNotificationFetched, setIsNotificationFetched] = useState(false);\n const [userNotifications, setUserNotifications] = useState([]);\n const [notificationsAmount, setNotificationsAmount] = useState({\n allNotifications: 0,\n unreadNotifications: 0\n });\n\n const handleGetAmountOfNotifications = () => {\n getAmountOfNotifications().unwrap().then(response => {\n setNotificationsAmount({\n ...notificationsAmount,\n allNotifications: response?.data?.allNotifications,\n unreadNotifications: response?.data?.unreadNotifications,\n });\n }, error => {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n });\n }\n\n const getNotificationDocuments = (announcementId) => {\n getAnnouncementDocument(announcementId).unwrap().then(resp => {\n setUserNotifications(prevList => prevList.map\n (notification => \n notification.info.announcementId === announcementId \n ? { ...notification, documents: resp, isDocumentsLoading: false } \n : notification\n ));\n });\n }\n\n const handleOpenDrawer = () => {\n setDrawerOpen(true);\n\n if(!isNotificationFetched) {\n getUserNotificationList().unwrap().then(resp => {\n\n const userNotificationsTemp = [];\n\n resp.forEach(notification => {\n userNotificationsTemp.push({\n info: notification,\n documents: [],\n isDocumentsLoading: true,\n })\n\n getNotificationDocuments(notification.announcementId);\n })\n\n setUserNotifications(userNotificationsTemp);\n setIsNotificationFetched(true);\n\n setNotificationsAmount({\n ...notificationsAmount,\n unreadNotifications: resp.filter(o => o.tagUnread === true).length,\n }); \n });\n }\n }\n\n useEffect(() => {\n handleGetAmountOfNotifications();\n }, []);\n\n useEffect(() => {\n if (welcomeClosed) {\n handleOpenDrawer();\n }\n }, [welcomeClosed]);\n\n return (\n <>\n \n \n \n \n {(notificationsAmount.unreadNotifications === 0) && (\n \n )}\n\n {(notificationsAmount.unreadNotifications > 0 ) && (\n \n \n \n \n \n \n )}\n \n \n \n\n setDrawerOpen(false)}\n notifications={userNotifications}\n isLoading={isNotificationListLoading}\n />\n >\n )\n}\n\nexport default NotificationSectionV2;","import { emptySplitApi } from './index'\n\nexport const referralApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n \n submitReferral: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/referral`,\n method: \"POST\",\n body: model\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const {\n useSubmitReferralMutation,\n} = referralApi;\n","import React from \"react\";\nimport {\n DialogActions,\n useTheme,\n Grid,\n Box,\n Button,\n Typography,\n Divider,\n Tooltip,\n Chip,\n} from \"@mui/material\";\nimport SimpleDialogWrapper from \"components/SimpleDialogWrapper\";\nimport MaskedInputWrapper from \"components/MaskedInputWapper\";\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport { Close, ContentCopyTwoTone, Language } from \"@mui/icons-material\";\nimport { LoadingButton } from \"@mui/lab\";\nimport { IconRocket } from \"@tabler/icons\";\nimport { TipsAndUpdates } from \"@mui/icons-material\";\nimport { useSubmitReferralMutation } from \"Services/ReferralService\";\nimport { useState, useEffect } from \"react\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport { useDispatch, useSelector } from \"react-redux\";\n\nconst ReferralFormPopup = ({ openPopup, onClose, formValue, setFormValue }) => {\n const theme = useTheme();\n const { userToken } = useSelector((state) => state.sharedState);\n\n const dispatch = useDispatch();\n\n const [submitReferral, { isLoading: isReferralSubmitting }] =\n useSubmitReferralMutation();\n\n\n const handleFormChange = (field, value) => {\n setFormValue({ ...formValue, [field]: value });\n };\n\n const referralCode = [];\n\n referralCode.push({\n label: \"Website\",\n value: `${window.location.origin}/register?referral=${userToken?.UserName}`,\n icon: ,\n endIcon: ,\n });\n\n const handleSubmitReferral = async () => {\n try {\n const model = {\n nameCharity: formValue.nameCharity.value || null,\n nameContact: formValue.nameContact.value || null,\n email: formValue.email.value || null,\n phoneNumber: formValue.phoneNumber.value || null,\n };\n\n const response = await submitReferral(model).unwrap();\n\n dispatch(showSuccessToaster(response.message));\n \n setFormValue({\n nameCharity: { value: \"\", error: \"\" },\n nameContact: { value: \"\", error: \"\" },\n email: { value: \"\", error: \"\" },\n phoneNumber: { value: \"\", error: \"\" }\n });\n\n } catch (error) {\n // Model Errors\n if (error.data?.errors != null) {\n const copyFormValue = { ...formValue };\n Object.keys(error.data?.errors).forEach((key) => {\n if (copyFormValue[key]) {\n copyFormValue[key].error = error.data?.errors[key][0];\n }\n });\n\n setFormValue(copyFormValue);\n dispatch(showErrorToaster(\"Check for errors and try again\"));\n }\n // Bad Request\n else if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n };\n\n const copyToClipboard = (text) => {\n navigator.clipboard.writeText(text).then(() => {\n dispatch(\n showSuccessToaster(`Copied to clipboard. ${referralCode[0].value}`)\n );\n });\n };\n\n\n\n return (\n }\n open={openPopup}\n onClose={onClose}\n width=\"600px\"\n dialogContentProps={{\n sx: {\n p: 2,\n height: \"auto\",\n minHeight: \"200px\",\n minWidth: \"600px\",\n },\n }}\n ActionContents={\n <>\n \n Close\n \n >\n }\n >\n \n \n \n \n \n Refer a friend to win subscription time\n \n \n\n \n \n \n handleFormChange(\"nameCharity\", {\n value: element.target.value,\n error: \"\",\n })\n }\n />\n \n \n \n handleFormChange(\"nameContact\", {\n value: element.target.value,\n error: \"\",\n })\n }\n />\n \n \n \n handleFormChange(\"phoneNumber\", {\n value: element.target.value,\n error: \"\",\n })\n }\n />\n \n \n \n handleFormChange(\"email\", {\n value: element.target.value,\n error: \"\",\n })\n }\n />\n \n \n \n \n Close\n \n\n \n Submit\n \n \n \n \n \n \n \n \n \n \n \n \n Share your referral link to win subscription time\n \n \n \n \n \n {referralCode.map((contact) => (\n \n copyToClipboard(contact.value) }\n : {})}\n color=\"secondary\"\n size=\"small\"\n label=\"Referral Code\"\n sx={{\n p: \"12.8px 5px\",\n fontSize: \"0.75rem\",\n letterSpacing: 0.5,\n }}\n />\n \n ))}\n \n \n \n \n \n \n );\n};\n\nexport default ReferralFormPopup;\n","import { useState } from \"react\";\n\nimport { useTheme } from \"@mui/material/styles\";\nimport { Link, Typography, Grid, Box } from \"@mui/material\";\n\nimport ReferralFormPopup from \"./ReferralForm.Popup\";\nimport { IconRocket } from \"@tabler/icons\";\n\nconst ReferralSection = () => {\n const defaultFormValue = {\n nameCharity: { value: \"\", error: \"\" },\n nameContact: { value: \"\", error: \"\" },\n email: { value: \"\", error: \"\" },\n phoneNumber: { value: \"\", error: \"\" },\n success: { value: \"\", error: \"\" },\n };\n const [formValue, setFormValue] = useState(defaultFormValue);\n\n const [openPopupReferral, setOpenPopupReferral] = useState(false);\n\n const handleOpenPopupReferral = () => {\n setFormValue(defaultFormValue); \n setOpenPopupReferral(true); \n };\n\n const handleClosePopupReferral = () => {\n setOpenPopupReferral(false);\n };\n\n return (\n <>\n \n \n \n \n \n \n Refer and earn free membership\n \n\n \n \n \n \n \n \n \n \n \n \n >\n );\n};\n\nexport default ReferralSection;\n","import { useEffect, useState } from \"react\";\n\nimport DialogConfirmWrapper from \"components/DialogConfirmWrapper\";\nimport config from 'config';\nimport Cookies from \"universal-cookie\";\nimport { TungstenOutlined } from \"@mui/icons-material\";\nimport { Typography } from \"@mui/material\";\n\nconst WelcomePopup = ({ onCloseWelcome }) => {\n\n const [ openPopup, setOpenPopup ] = useState(false);\n\n const cookies = new Cookies();\n\n const setCookieVal = (key, value) => {\n cookies.set(key, value, { maxAge: 1000000, path: '/', sameSite: true });\n }\n\n const handleClose = () => {\n setCookieVal(config.welcomeMessage.keyVersion, 'true');\n setOpenPopup(false);\n\n onCloseWelcome();\n }\n\n useEffect(() => {\n //const needOpen = cookies.get(config.welcomeMessage.keyVersion) !== 'true';\n //setOpenPopup(needOpen);\n }, []);\n\n return (\n \n {config.welcomeMessage.message.map((msg, index) => (\n \n ))}\n >\n }\n confirmLabel=\"What's New?\"\n isLoading={false}\n cancelButtonVisible={false}\n onConfirm={handleClose}\n startIcon={ }\n size=\"sm\"\n />\n )\n\n}\n\nexport default WelcomePopup;","import PropTypes from 'prop-types';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Avatar, Box, ButtonBase, Tooltip } from '@mui/material';\n\n// project imports\nimport LogoSection from '../LogoSection';\n\n//import NotificationSection from './NotificationSection';\n\n// assets\nimport SimpleProfileSection from './ProfileSection/SimpleProfileSection';\nimport { IconMenu2 } from '@tabler/icons';\nimport { MenuOpen } from '@mui/icons-material';\nimport NotificationSection from './NotificationSection';\nimport NotificationSectionV2 from './NotificationSectionV2';\nimport ReferralSection from './ReferralSection';\nimport WelcomePopup from './Welcome/Welcome.popup';\nimport { useState } from 'react';\n\n// ==============================|| MAIN NAVBAR / HEADER ||============================== //\n\nconst Header = ({ handleLeftDrawerToggle }) => {\n const theme = useTheme();\n const [ welcomeClosed, setWelcomeClosed ] = useState(false);\n\n return (\n <>\n {/* logo & toggler button */}\n \n \n \n \n \n \n\n {/* header search */}\n {/* */}\n \n \n \n \n \n \n \n \n {/* notification & profile */}\n {/* */}\n \n { setWelcomeClosed(true); } } />\n \n \n >\n );\n};\n\nHeader.propTypes = {\n handleLeftDrawerToggle: PropTypes.func\n};\n\nexport default Header;\n","// assets\nimport { IconUserPlus, IconMan, IconBuildingCommunity } from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconUserPlus,\n IconMan,\n IconBuildingCommunity\n};\n\nconst account = {\n id: 'account',\n title: 'side_menu.account',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n children: [\n {\n id: 'account-user-profile',\n title: 'side_menu.user_profile',\n type: 'item',\n url: 'main/account/user-profile',\n icon: 'IconMan', //icons.IconMan,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'demo', 'sales', 'admin', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'account-additional-users',\n title: 'side_menu.additional_users',\n type: 'item',\n url: 'main/account/additional-users',\n icon: 'IconUserPlus', //icons.IconUserPlus,\n breadcrumbs: false,\n roles: ['user', 'demo', 'sales', 'admin', 'superadmin', 'it'],\n },\n {\n id: 'account-organization-profile',\n title: 'side_menu.organization_profile',\n type: 'item',\n url: 'main/account/organization-profile',\n icon: 'IconBuildingCommunity', //icons.IconBuildingCommunity,\n breadcrumbs: false,\n roles: ['user', 'demo', 'sales', 'admin', 'superadmin', 'it'],\n }\n ]\n};\n\nexport default account;\n","// assets\nimport { IconUsers, IconBusinessplan } from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconUsers,\n IconBusinessplan\n};\n\nconst administration = {\n id: 'administration',\n title: 'side_menu.administration',\n type: 'group',\n roles: ['admin', 'superadmin', 'it', 'sales'],\n collapse: false,\n children: [\n {\n id: 'administration-manage-account',\n title: 'side_menu.manage_account',\n type: 'item',\n url: 'main/admin/manage-accounts',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin', 'it'],\n },\n {\n id: 'administration-manage-announcement',\n title: 'side_menu.manage_announcement',\n type: 'item',\n url: 'main/admin/manage-announcements',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin', 'it'],\n },\n {\n id: 'administration-manage-subscription-plan',\n title: 'side_menu.manage_subscription_plan',\n type: 'item',\n url: 'main/admin/manage-subscription-plans',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin', 'it'],\n },\n {\n id: 'administration-manage-coupon',\n title: 'side_menu.manage_coupons',\n type: 'item',\n url: 'main/admin/manage-coupons',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin', 'it', 'sales'],\n },\n {\n id: 'administration-manage-feedback',\n title: 'side_menu.manage_feedbacks',\n type: 'item',\n url: 'main/admin/manage-feedbacks',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin'],\n },\n {\n id: 'administration-manage-deadline',\n title: 'side_menu.manage_deadlines',\n type: 'item',\n url: 'main/admin/manage-deadlines',\n icon: 'IconUsers', //icons.IconUsers,\n breadcrumbs: false,\n roles: ['admin', 'superadmin'],\n },\n /*{\n id: 'administration-manage-plans',\n title: 'side_menu.manage_plans',\n type: 'item',\n url: 'main/admin/manage-plans',\n icon: 'IconBusinessplan', //icons.IconBusinessplan,\n breadcrumbs: false,\n roles: ['admin', 'superadmin', 'it'],\n }*/\n ]\n};\n\nexport default administration;\n","// assets\nimport { IconTools, IconRepeat } from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconTools,\n IconRepeat\n};\n\nconst userProject = {\n id: 'user-project',\n title: 'side_menu.project_manager',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n children: [\n {\n id: 'user-project-list',\n title: 'side_menu.project_list',\n type: 'item',\n url: 'main/user-project/list',\n icon: 'IconTools', //icons.IconTools,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'user-project-archive',\n title: 'side_menu.project_archive',\n type: 'item',\n url: 'main/user-project/archive',\n icon: 'IconRepeat', //icons.IconRepeat,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n }\n ]\n};\n\nexport default userProject;\n","// assets\nimport {\n IconFileText,\n IconReceipt,\n IconId,\n IconTrafficLights,\n IconStars,\n IconBox,\n IconKeyboard,\n IconWorld,\n IconCalendarEvent\n} from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconFileText,\n IconReceipt,\n IconId,\n IconTrafficLights,\n IconStars,\n IconBox,\n IconKeyboard,\n IconWorld,\n IconCalendarEvent\n};\n\nconst searchEngine = {\n id: 'search-engine',\n title: 'side_menu.search_engine',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n children: [\n {\n id: 'by-giving-history',\n title: 'side_menu.by_giving_history',\n type: 'item',\n url: 'main/search/giving-history-v2',\n icon: 'IconFileText', //icons.IconFileText,\n breadcrumbs: false,\n roles: ['accessus'],\n },\n {\n id: 'by-keyword',\n title: 'side_menu.by_keyword',\n type: 'item',\n url: 'main/search/by-keyword-v2',\n icon: 'IconKeyboard', //icons.IconBox,\n breadcrumbs: false,\n roles: ['accessus'],\n },\n {\n id: 'by-name',\n title: 'side_menu.by_name',\n type: 'item',\n url: 'main/search/by-name-v2',\n icon: 'IconReceipt', //icons.IconReceipt,\n breadcrumbs: false,\n roles: ['accessus'],\n },\n {\n id: 'by-director',\n title: 'side_menu.by_director',\n type: 'item',\n url: 'main/search/by-director-v2',\n icon: 'IconId', //icons.IconId,\n breadcrumbs: false,\n roles: ['accessus'],\n },\n {\n id: 'by-year',\n title: 'side_menu.by_year',\n type: 'item',\n url: 'main/search/by-year-v2',\n icon: 'IconTrafficLights', //icons.IconTrafficLights,\n breadcrumbs: false,\n roles: ['accessus'],\n },\n /* {\n id: 'by-deadline',\n title: 'side_menu.by_deadline',\n type: 'item',\n url: 'main/search/by-deadline',\n icon: 'IconCalendarEvent', //icons.IconCalendarEvent,\n breadcrumbs: false,\n roles: ['accessus'],\n }, */\n /*{\n id: 'by-rating',\n title: 'side_menu.by_rating',\n type: 'item',\n url: 'main/search/by-rating',\n icon: icons.IconStars,\n breadcrumbs: false,\n roles: ['user', 'subuser'],\n },*/\n {\n id: 'by-giving-history-ca',\n title: 'side_menu.by_giving_history',\n type: 'item',\n url: 'main/search/giving-history-ca-v2',\n icon: 'IconFileText', //icons.IconFileText,\n breadcrumbs: false,\n roles: ['accesscanada'],\n },\n {\n id: 'by-name-ca',\n title: 'side_menu.by_name',\n type: 'item',\n url: 'main/search/name-ca-v2',\n icon: 'IconReceipt', //icons.IconReceipt,\n breadcrumbs: false,\n roles: ['accesscanada'],\n },\n {\n id: 'by-director-ca',\n title: 'side_menu.by_director',\n type: 'item',\n url: 'main/search/directors-ca-v2',\n icon: 'IconId', //icons.IconId,\n breadcrumbs: false,\n roles: ['accesscanada'],\n },\n {\n id: 'by-year-ca',\n title: 'side_menu.by_year',\n type: 'item',\n url: 'main/search/year-ca-v2',\n icon: 'IconTrafficLights', //icons.IconTrafficLights,\n breadcrumbs: false,\n roles: ['accesscanada'],\n },\n\n /*{\n id: 'by-rating',\n title: 'side_menu.by_rating',\n type: 'item',\n url: 'main/search/by-rating',\n icon: icons.IconStars,\n breadcrumbs: false,\n roles: ['user', 'subuser'],\n },*/\n {\n id: 'by-custom',\n title: 'side_menu.by_custom',\n type: 'item',\n url: 'main/search/by-custom-v2',\n icon: 'IconBox', //icons.IconBox,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'by-international-funding',\n title: 'side_menu.by_international_funding',\n type: 'item',\n url: 'main/search/by-international-funding-v2',\n icon: 'IconWorld', //icons.IconTrafficLights,\n breadcrumbs: false,\n roles: ['accessus', 'pro', 'admin', 'sales', 'superadmin'],\n },\n ]\n};\n\nexport default searchEngine;\n","// assets\nimport { \n IconFileText, \n IconReceipt,\n IconId,\n IconTrafficLights,\n IconStars,\n IconBox,\n IconKeyboard\n} from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconFileText,\n IconReceipt,\n IconId,\n IconTrafficLights,\n IconStars,\n IconBox,\n IconKeyboard\n};\n\nconst searchEngineCanada = {\n id: 'search-engine-canada',\n title: 'side_menu.search_engine_canada',\n type: 'group',\n roles: ['accesscanada'],\n collapse: false,\n children: [\n {\n id: 'by-giving-history-ca',\n title: 'side_menu.by_giving_history',\n type: 'item',\n url: 'main/search/giving-history-ca',\n icon: 'IconFileText', //icons.IconFileText,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'by-name',\n title: 'side_menu.by_name',\n type: 'item',\n url: 'main/search/name-ca',\n icon: 'IconReceipt', //icons.IconReceipt,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'by-director',\n title: 'side_menu.by_director',\n type: 'item',\n url: 'main/search/directors-ca',\n icon: 'IconId', //icons.IconId,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'by-year',\n title: 'side_menu.by_year',\n type: 'item',\n url: 'main/search/year-ca',\n icon: 'IconTrafficLights', //icons.IconTrafficLights,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n /*{\n id: 'by-rating',\n title: 'side_menu.by_rating',\n type: 'item',\n url: 'main/search/by-rating',\n icon: icons.IconStars,\n breadcrumbs: false,\n roles: ['user', 'subuser'],\n },*/\n {\n id: 'by-custom',\n title: 'side_menu.by_custom',\n type: 'item',\n url: 'main/search/by-custom-v2',\n icon: 'IconBox', //icons.IconBox,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n \n ]\n};\n\nexport default searchEngineCanada;","// assets\nimport { IconFileInfo, IconLicense, IconBusinessplan, IconMailOpened, IconThumbUp, IconReportAnalytics } from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconFileInfo,\n IconLicense,\n IconBusinessplan,\n IconMailOpened,\n IconThumbUp,\n IconReportAnalytics\n};\n\nconst documentGenerator = {\n id: 'document-generator',\n title: 'side_menu.document_generator',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n children: [\n {\n id: 'inquiry',\n title: 'side_menu.inquiry',\n type: 'item',\n url: 'main/document-generator/inquiry',\n icon: 'IconFileInfo', //icons.IconFileInfo,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'proposal',\n title: 'side_menu.proposal',\n type: 'item',\n url: 'main/document-generator/proposal',\n icon: 'IconLicense', //icons.IconLicense,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'thank-you-letter',\n title: 'side_menu.thank_you',\n type: 'item',\n url: 'main/document-generator/thank-you',\n icon: 'IconThumbUp', //icons.IconThumbUp,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'impact-report-letter',\n title: 'side_menu.impact_report',\n type: 'item',\n url: 'main/document-generator/impact-report',\n icon: 'IconReportAnalytics', //icons.IconReportAnalytics,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'custom-letter',\n title: 'side_menu.custom_letter',\n type: 'item',\n url: 'main/document-generator/custom-letter',\n icon: 'IconMailOpened', //icons.IconMailOpened,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n }\n ]\n};\n\nexport default documentGenerator;\n","// assets\nimport { IconWoman } from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconWoman\n};\n\nconst grantSecretary = {\n id: 'grant-secretary',\n type: 'group',\n title: 'side_menu.grant_secretary',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n /*children: [\n {\n id: 'grant-secretary-1',\n title: 'side_menu.grant_secretary',\n type: 'item',\n url: 'main/grant-secretary',\n icon: 'IconWoman', //icons.IconWoman,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n ]*/\n};\n\nexport default grantSecretary;\n","// assets\nimport { \n IconHeart,\n IconHandOff,\n IconDatabaseImport\n} from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconHeart,\n IconHandOff,\n IconDatabaseImport\n};\n\nconst manageFunders = {\n // id: 'manage-funders',\n title: 'side_menu.manage_funders',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false,\n children: [\n {\n id: 'favorites',\n title: 'side_menu.favorites',\n type: 'item',\n // url: 'main/manage-funders/favorites',\n icon: 'IconHeart', //icons.IconHeart,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'blocked-funders',\n title: 'side_menu.blocked_funders',\n type: 'item',\n // url: 'main/manage-funders/blocked-funders',\n icon: 'IconHandOff', //icons.IconHandOff,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n {\n id: 'custom-databases',\n title: 'side_menu.custom_databases',\n type: 'item',\n //url: 'main/manage-funders/custom-databases',\n icon: 'IconDatabaseImport', //icons.IconDatabaseImport,\n breadcrumbs: false,\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n },\n ]\n};\n\nexport default manageFunders;\n","// assets\nimport { \n IconHeart,\n IconHandOff,\n IconDatabaseImport\n} from '@tabler/icons';\n\n// constant\nexport const icons = {\n IconHeart,\n IconHandOff,\n IconDatabaseImport\n};\n\nconst manageFundersv2 = {\n id: 'manage-funders-v2',\n title: 'side_menu.manage_funders',\n type: 'group',\n roles: ['user', 'subuser', 'member', 'supervisor', 'admin', 'demo', 'sales', 'superadmin', 'it'],\n collapse: false\n};\n\nexport default manageFundersv2;\n","import account, { icons as accountIcons } from './account';\nimport administration, { icons as administrationIcons } from './administration';\nimport userProject, { icons as userProjectIcons } from './userProject';\nimport searchEngine, { icons as searchEngineIcons } from './searchEngine';\nimport searchEngineCanada, { icons as searchEngineCanadaIcons } from './searchEngineCanada';\nimport documentGenerator, { icons as documentGeneratorIcons } from './documentGenerator';\nimport grantSecretary, { icons as grantSecretaryIcons } from './grantSecretary';\nimport manageFunders, { icons as manageFundersIcons } from './manageFunders';\nimport manageFundersv2 from './manageFundersv2';\n\n// ==============================|| MENU ITEMS ||============================== //\n\nconst menuItems = {\n items: [\n administration, \n account, \n userProject, \n searchEngine, \n documentGenerator, \n grantSecretary,\n manageFundersv2\n ]\n};\n\nexport const menuIcons = {\n ...accountIcons,\n ...administrationIcons,\n ...userProjectIcons,\n ...searchEngineIcons,\n ...documentGeneratorIcons,\n ...grantSecretaryIcons,\n ...manageFundersIcons\n};\n\nexport default menuItems;\n","import PropTypes from 'prop-types';\nimport { forwardRef, useEffect } from 'react';\nimport { Link } from 'react-router-dom';\nimport { useDispatch, useSelector } from 'react-redux';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Avatar, Chip, ListItemButton, ListItemIcon, ListItemText, Typography, useMediaQuery } from '@mui/material';\n\n// project imports\nimport { MENU_OPEN, SET_MENU } from 'store/actions';\nimport config from 'config';\n\n// assets\nimport FiberManualRecordIcon from '@mui/icons-material/FiberManualRecord';\nimport { useTranslation } from \"react-i18next\";\nimport { menuIcons } from 'menu-items';\nimport useVersioning from 'hooks/useVersioning';\n\n// ==============================|| SIDEBAR MENU LIST ITEMS ||============================== //\n\nconst NavItem = ({ item, level }) => {\n\n const { t } = useTranslation();\n const theme = useTheme();\n const dispatch = useDispatch();\n const customization = useSelector((state) => state.customization);\n const matchesSM = useMediaQuery(theme.breakpoints.down('lg'));\n const { getPathByName } = useVersioning();\n\n const Icon = menuIcons[item.icon];\n\n const itemIcon = item?.icon ? (\n \n ) : (\n id === item?.id) > -1 ? 8 : 6,\n height: customization.isOpen.findIndex((id) => id === item?.id) > -1 ? 8 : 6\n }}\n fontSize={level > 0 ? 'inherit' : 'medium'}\n />\n );\n\n let itemTarget = '_self';\n if (item.target) {\n itemTarget = '_blank';\n }\n\n const itemUrl = getPathByName(item.id) ?? item.url;\n\n let listItemProps = {\n component: forwardRef((props, ref) => )\n };\n if (item?.external) {\n listItemProps = { component: 'a', href: itemUrl, target: itemTarget };\n }\n\n const itemHandler = (id) => {\n dispatch({ type: MENU_OPEN, id });\n if (matchesSM) dispatch({ type: SET_MENU, opened: false });\n };\n\n // active menu item on page load\n useEffect(() => {\n const currentIndex = document.location.pathname\n .toString()\n .split('/')\n .findIndex((id) => id === item.id);\n if (currentIndex > -1) {\n dispatch({ type: MENU_OPEN, id: item.id });\n }\n // eslint-disable-next-line\n }, []);\n\n return (\n 1 ? 'transparent !important' : 'inherit',\n py: level > 1 ? 1 : 1.25,\n pl: `${level * 24}px`,\n color: 'white'\n\n }}\n selected={customization.isOpen.findIndex((id) => id === item.id) > -1}\n onClick={() => itemHandler(item.id)}\n >\n {itemIcon} \n id === item.id) > -1 ? 'h5' : 'body1'} color=\"inherit\">\n {t(item.title)}\n \n }\n secondary={\n item.caption && (\n \n {t(item.caption)}\n \n )\n }\n />\n {item.chip && (\n {item.chip.avatar}}\n />\n )}\n \n );\n};\n\nNavItem.propTypes = {\n item: PropTypes.object,\n level: PropTypes.number\n};\n\nexport default NavItem;\n","import PropTypes from 'prop-types';\nimport { useState } from 'react';\nimport { useSelector } from 'react-redux';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Collapse, List, ListItemButton, ListItemIcon, ListItemText, Typography } from '@mui/material';\n\n// project imports\nimport NavItem from '../NavItem';\n\n// assets\nimport FiberManualRecordIcon from '@mui/icons-material/FiberManualRecord';\nimport { IconChevronDown, IconChevronUp } from '@tabler/icons';\nimport { useTranslation } from \"react-i18next\";\n\n// ==============================|| SIDEBAR MENU LIST COLLAPSE ITEMS ||============================== //\n\nconst NavCollapse = ({ menu, level }) => {\n\n const { t } = useTranslation();\n const theme = useTheme();\n const customization = useSelector((state) => state.customization);\n\n const [open, setOpen] = useState(false);\n const [selected, setSelected] = useState(null);\n\n const handleClick = () => {\n setOpen(!open);\n setSelected(!selected ? menu.id : null);\n };\n\n // menu collapse & item\n const menus = menu.children?.map((item) => {\n switch (item.type) {\n case 'collapse':\n return ;\n case 'item':\n return ;\n default:\n return (\n \n Menu Items Error\n \n );\n }\n });\n\n const Icon = menu.icon;\n const menuIcon = menu.icon ? (\n \n ) : (\n 0 ? 'inherit' : 'medium'}\n />\n );\n\n return (\n <>\n 1 ? 'transparent !important' : 'inherit',\n py: level > 1 ? 1 : 1.25,\n pl: `${level * 24}px`\n }}\n selected={selected === menu.id}\n onClick={handleClick}\n >\n {menuIcon} \n \n {t(menu.title)}\n \n }\n secondary={\n menu.caption && (\n \n {t(menu.caption)}\n \n )\n }\n />\n {open ? (\n \n ) : (\n \n )}\n \n \n \n {menus}\n
\n \n >\n );\n};\n\nNavCollapse.propTypes = {\n menu: PropTypes.object,\n level: PropTypes.number\n};\n\nexport default NavCollapse;\n","import { useState } from 'react';\nimport PropTypes from 'prop-types';\n\n// material-ui\nimport { \n Divider, \n List, \n Typography,\n ListItemButton,\n ListItemIcon,\n ListItemText,\n Collapse\n} from '@mui/material';\nimport FiberManualRecordIcon from '@mui/icons-material/FiberManualRecord';\n\nimport { IconChevronDown, IconChevronUp } from '@tabler/icons';\n\n// project imports\nimport NavItem from '../NavItem';\nimport NavCollapse from '../NavCollapse';\nimport { useDispatch, useSelector } from 'react-redux';\nimport { useTranslation } from \"react-i18next\";\nimport { collapseMenu } from 'store/Shared.Slice';\nimport { useNavigate } from 'react-router';\n\n\n// ==============================|| SIDEBAR MENU LIST GROUP ||============================== //\n\nconst NavGroup = ({ item }) => {\n\n const { t } = useTranslation();\n const dispatch = useDispatch();\n const { userToken } = useSelector(state => state.sharedState)\n const customization = useSelector((state) => state.customization);\n const navigate = useNavigate();\n\n let userRoles = [];\n\n if (Array.isArray(userToken.role)) {\n userRoles = userToken.role.map(value => value.toLowerCase());\n }\n else {\n userRoles.push(userToken.role.toLowerCase());\n }\n\n const [selected, setSelected] = useState(null);\n\n const menuIcon = (\n 0 ? 'inherit' : 'medium'}\n fontSize='inherit'\n />\n );\n\n const handleClick = () => {\n setSelected(!selected ? item.id : null);\n\n if (item.id === 'grant-secretary') {\n navigate('/main/grant-secretary');\n }else if(item.id === 'manage-funders-v2'){\n navigate('/main/manage-funders');\n } \n else {\n dispatch(collapseMenu(item.id));\n }\n };\n\n\n // menu list collapse & items\n const items = item.children?.map((menu) => {\n switch (menu.type) {\n case 'collapse':\n\n if (userRoles.filter(x => menu.roles.includes(x)).length > 0)\n return ;\n else\n return null;\n\n case 'item':\n\n if (userRoles.filter(x => menu.roles.includes(x)).length > 0)\n return ;\n else\n return null;\n\n default:\n return (\n \n Menu Items Error\n \n );\n }\n });\n\n return (\n <>\n 1 ? 'transparent !important' : 'inherit',\n backgroundColor: 'transparent !important',\n py: 2,\n pl: `${0}px`,\n color: 'white'\n }}\n //selected={selected === 'grant-secretary'}\n onClick={handleClick}\n >\n {menuIcon} \n \n {t(item.title)}\n \n }\n />\n {item.id !== 'grant-secretary' && item.id !== 'manage-funders-v2'&& (\n item.collapse ? (\n \n ) : (\n \n )\n )}\n \n \n \n \n {items}\n
\n \n {/*\n {t(item.title)}\n {item.caption && (\n \n {t(item.caption)}\n \n )}\n \n )\n }\n >\n {items}\n
*/}\n\n {/* group divider */}\n \n >\n );\n};\n\nNavGroup.propTypes = {\n item: PropTypes.object\n};\n\nexport default NavGroup;\n","// material-ui\nimport { Divider, Typography } from '@mui/material';\n\n// project imports\nimport NavGroupV2 from './NavGroup/NavGroupV2';\nimport menus from 'menu-items';\nimport { useDispatch, useSelector } from 'react-redux';\nimport { useEffect } from 'react';\nimport { loadMenuItems } from 'store/Shared.Slice';\nimport NavItem from './NavItem';\n\n// ==============================|| SIDEBAR MENU LIST ||============================== //\n\nconst MenuList = () => {\n\n const dispatch = useDispatch();\n const { userToken, menuItem } = useSelector(state => state.sharedState)\n\n let userRoles = [];\n\n useEffect(() => {\n\n if (menuItem.items.length === 0) {\n dispatch(loadMenuItems(menus));\n }\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n if (Array.isArray(userToken.role)) {\n userRoles = userToken.role.map(value => value.toLowerCase());\n }\n else {\n userRoles.push(userToken.role.toLowerCase());\n }\n \n const navItems = menuItem.items.map((item) => {\n switch (item.type) {\n case 'group':\n\n if (userRoles.filter(x => item.roles.includes(x)).length > 0)\n return ;\n else\n return null;\n\n case 'link':\n if (userRoles.filter(x => item.roles.includes(x)).length > 0)\n return (\n <>\n \n \n >\n )\n else\n return null;\n\n default:\n return (\n \n Menu Items Error\n \n );\n }\n });\n\n return {navItems}
;\n};\n\nexport default MenuList;\n","import PropTypes from 'prop-types';\nimport { useLocation, matchRoutes } from \"react-router-dom\";\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Box, Drawer, useMediaQuery } from '@mui/material';\n\n// third-party\nimport PerfectScrollbar from 'react-perfect-scrollbar';\nimport { BrowserView, MobileView } from 'react-device-detect';\n\n// project imports\nimport MenuList from './MenuList';\nimport LogoSection from '../LogoSection';\nimport { drawerWidth } from 'store/constant';\nimport * as Constants from \"utils/constants\";\n\n// ==============================|| SIDEBAR DRAWER ||============================== //\n\nconst Sidebar = ({ drawerOpen, drawerToggle, window }) => {\n\n const theme = useTheme();\n const matchUpMd = useMediaQuery(theme.breakpoints.up('md'));\n const location = useLocation();\n const foundationProfileRoute = [{ path: `/${Constants.FOUNDATION_V2_PATH}/:profileId` }];\n const match = matchRoutes(foundationProfileRoute, location);\n\n const drawer = (\n <>\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n >\n );\n\n const container = window !== undefined ? () => window.document.body : undefined;\n\n return (\n \n \n {drawer}\n \n \n );\n};\n\nSidebar.propTypes = {\n drawerOpen: PropTypes.bool,\n drawerToggle: PropTypes.func,\n window: PropTypes.object\n};\n\nexport default Sidebar;\n","import PropTypes from 'prop-types';\nimport { useState, useEffect } from 'react';\nimport { useDispatch, useSelector } from 'react-redux';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport {\n Avatar,\n ButtonBase,\n Drawer,\n Fab,\n FormControl,\n FormControlLabel,\n FormLabel,\n Grid,\n IconButton,\n Radio,\n RadioGroup,\n Slider,\n Stack,\n Switch,\n TextField,\n Tooltip,\n Typography,\n ListItemText,\n InputLabel,\n Select,\n MenuItem\n} from '@mui/material';\nimport { IconChecks, IconSettings } from '@tabler/icons';\n\n// third-party\nimport PerfectScrollbar from 'react-perfect-scrollbar';\n\n// project imports\nimport SubCard from 'ui-component/cards/SubCard';\nimport AnimateButton from 'ui-component/extended/AnimateButton';\nimport { MENU_TYPE, SET_FONT_FAMILY } from 'store/actions';\nimport { gridSpacing } from 'store/constant';\nimport Flags from 'country-flag-icons/react/1x1'\nimport i18n from \"i18next\";\nimport Cookies from 'universal-cookie';\n\n// color import\n/*import colors from 'assets/scss/_themes-vars.module.scss';\nimport theme1 from 'assets/scss/_theme1.module.scss';\nimport theme2 from 'assets/scss/_theme2.module.scss';\nimport theme3 from 'assets/scss/_theme3.module.scss';\nimport theme4 from 'assets/scss/_theme4.module.scss';\nimport theme5 from 'assets/scss/_theme5.module.scss';\nimport theme6 from 'assets/scss/_theme6.module.scss';\nimport theme7 from 'assets/scss/_theme7.module.scss';\nimport theme8 from 'assets/scss/_theme8.module.scss';*/\n\n// concat 'px'\nfunction valueText(value) {\n return `${value}px`;\n}\n\nconst PresetColor = ({ color, presetColor, setPresetColor }) => (\n \n setPresetColor(color.id)}>\n \n {presetColor === color.id && }\n \n \n \n);\n\nPresetColor.propTypes = {\n color: PropTypes.shape({\n id: PropTypes.string,\n primary: PropTypes.string,\n secondary: PropTypes.string\n }),\n presetColor: PropTypes.string,\n setPresetColor: PropTypes.func\n};\n\n// ==============================|| LIVE CUSTOMIZATION ||============================== //\n\nconst Customization = () => {\n const [currentLang, setCurrentLang] = useState(localStorage.getItem('i18nextLng'));\n const theme = useTheme();\n const dispatch = useDispatch();\n const customization = useSelector((state) => state.customization);\n\n const setCookieVal = (key, value) => {\n const cookies = new Cookies();\n cookies.set(key, value, { maxAge: 1000000, path: '/', sameSite: true });\n }\n const mapFontFamily = new Map([\n [`'Inter', sans-serif'`, 'Inter'],\n [`'Poppins', sans-serif`, 'Poppins'],\n [`'Roboto', sans-serif`, 'Roboto'],\n ]); \n \n // drawer on/off\n const [open, setOpen] = useState(false);\n const handleToggle = () => {\n setOpen(!open);\n };\n\n // state - layout type\n const [navType, setNavType] = useState(customization.navType);\n\n const handleNavType = (value) => {\n setCookieVal('MENU_TYPE', value);\n setNavType(value);\n }\n\n \n useEffect(() => {\n const cookies = new Cookies();\n if(cookies.get('MENU_TYPE') !== undefined)\n setNavType(cookies.get('MENU_TYPE')) \n\n dispatch({ type: MENU_TYPE, navType });\n }, [dispatch, navType]);\n \n if (customization.rtlLayout) {\n document?.querySelector('html')?.setAttribute('dir', 'rtl');\n } else {\n document?.querySelector('html')?.removeAttribute('dir');\n }\n\n let customizationFontFamily = customization.fontFamily;\n const cookies = new Cookies();\n let fontFamilyChange = cookies.get('SET_FONT_FAMILY') !== undefined ? cookies.get('SET_FONT_FAMILY') : customizationFontFamily;\n \n let initialFont = mapFontFamily.get(fontFamilyChange);\n\n // state - font family\n const [fontFamily, setFontFamily] = useState(initialFont);\n\n const handleFontFamily = (value) => {\n const key = getKeyByValue(mapFontFamily, value);\n setCookieVal('SET_FONT_FAMILY', key);\n setFontFamily(value);\n }\n\n // Function to get the key by value\n const getKeyByValue = (map, value) => {\n for (let [key, val] of map.entries()) {\n if (val === value) {\n return key;\n }\n }\n return null; // Return null if the value is not found\n };\n\n useEffect(() => {\n let newFont;\n \n switch (fontFamily) {\n case 'Inter':\n newFont = `'Inter', sans-serif`;\n break;\n case 'Poppins':\n newFont = `'Poppins', sans-serif`;\n break;\n case 'Roboto':\n default:\n newFont = `'Roboto', sans-serif`;\n break;\n }\n\n dispatch({ type: SET_FONT_FAMILY, fontFamily: newFont });\n }, [dispatch, fontFamily]);\n\n\tconst changeLanguage = (event) => {\n const lng = event.target.value;\n setCurrentLang(lng)\n i18n.changeLanguage(lng);\n\n setCookieVal('SET_LANGUAGE', lng);\n }\n\n useEffect(() => {\n const cookies = new Cookies();\n if(cookies.get('SET_LANGUAGE') !== undefined){\n setCurrentLang(cookies.get('SET_LANGUAGE')) \n i18n.changeLanguage(cookies.get('SET_LANGUAGE'));\n }\n \n }, [dispatch, currentLang]);\n\n return (\n <>\n {/* toggle button */}\n \n \n \n \n \n \n \n \n\n \n \n \n \n {/* layout type */}\n \n \n Mode \n handleNavType(e.target.value)}\n name=\"row-radio-buttons-group\"\n >\n }\n label=\"Light\"\n sx={{\n '& .MuiSvgIcon-root': { fontSize: 28 },\n '& .MuiFormControlLabel-label': { color: theme.palette.grey[900] }\n }}\n />\n }\n label=\"Dark\"\n sx={{\n '& .MuiSvgIcon-root': { fontSize: 28 },\n '& .MuiFormControlLabel-label': { color: theme.palette.grey[900] }\n }}\n />\n \n \n \n \n \n {/* font family */}\n \n \n handleFontFamily(e.target.value)}\n name=\"row-radio-buttons-group\"\n >\n }\n label=\"Roboto\"\n sx={{\n '& .MuiSvgIcon-root': { fontSize: 28 },\n '& .MuiFormControlLabel-label': { color: theme.palette.grey[900] }\n }}\n />\n }\n label=\"Poppins\"\n sx={{\n '& .MuiSvgIcon-root': { fontSize: 28 },\n '& .MuiFormControlLabel-label': { color: theme.palette.grey[900] }\n }}\n />\n }\n label=\"Inter\"\n sx={{\n '& .MuiSvgIcon-root': { fontSize: 28 },\n '& .MuiFormControlLabel-label': { color: theme.palette.grey[900] }\n }}\n />\n \n \n \n \n \n {/* Language switcher */}\n \n \n \n Select \n \n \n \n \n \n \n \n \n \n English \n \n \n \n\n \n \n \n \n \n \n \n \n English \n \n \n \n\n \n \n \n \n \n \n \n \n Spanish \n \n \n \n\n \n \n \n \n \n \n \n \n French \n \n \n \n\n \n \n\n \n \n \n \n \n \n >\n );\n};\n\nexport default Customization;\n","import { useCallback, useEffect } from \"react\";\nimport { useDispatch, useSelector } from \"react-redux\";\nimport { Outlet } from \"react-router-dom\";\n\n// material-ui\nimport { styled, useTheme } from \"@mui/material/styles\";\nimport {\n AppBar,\n Box,\n CssBaseline,\n Toolbar,\n useMediaQuery,\n Alert,\n Snackbar,\n Grow\n} from \"@mui/material\";\n\n// project imports\nimport Breadcrumbs from \"ui-component/extended/Breadcrumbs\";\nimport Header from \"./Header\";\nimport Sidebar from \"./Sidebar\";\nimport Customization from \"../Customization\";\nimport navigation from \"menu-items\";\nimport { drawerWidth } from \"store/constant\";\nimport { SET_MENU } from \"store/actions\";\n\nimport SweetAlert from \"react-bootstrap-sweetalert\";\nimport { closeToaster, closeMessage, showMessage, setUserToken, showSessionTimeout, showErrorToaster } from \"store/Shared.Slice\";\n\n// assets\nimport { IconChevronRight } from \"@tabler/icons\";\nimport { useNavigate } from \"react-router-dom\";\nimport jwt_decode from \"jwt-decode\";\nimport { useTranslation } from \"react-i18next\";\nimport { useRestoreScrollYPosition } from \"hooks/useRestoreScrollYPosition\";\n\n// styles\nconst Main = styled(\"main\", { shouldForwardProp: (prop) => prop !== \"open\" })(\n ({ theme, open }) => ({\n ...theme.typography.mainContent,\n ...(!open && {\n borderBottomLeftRadius: 0,\n borderBottomRightRadius: 0,\n transition: theme.transitions.create(\"margin\", {\n easing: theme.transitions.easing.sharp,\n duration: theme.transitions.duration.leavingScreen,\n }),\n [theme.breakpoints.up(\"md\")]: {\n marginLeft: -(drawerWidth - 20),\n width: `calc(100% - ${drawerWidth}px)`,\n },\n [theme.breakpoints.down(\"md\")]: {\n marginLeft: \"20px\",\n width: `calc(100% - ${drawerWidth}px)`,\n padding: \"16px\",\n },\n [theme.breakpoints.down(\"sm\")]: {\n marginLeft: \"10px\",\n width: `calc(100% - ${drawerWidth}px)`,\n padding: \"16px\",\n marginRight: \"10px\",\n },\n }),\n ...(open && {\n transition: theme.transitions.create(\"margin\", {\n easing: theme.transitions.easing.easeOut,\n duration: theme.transitions.duration.enteringScreen,\n }),\n marginLeft: 0,\n borderBottomLeftRadius: 0,\n borderBottomRightRadius: 0,\n width: `calc(100% - ${drawerWidth}px)`,\n [theme.breakpoints.down(\"md\")]: {\n marginLeft: \"20px\",\n },\n [theme.breakpoints.down(\"sm\")]: {\n marginLeft: \"10px\",\n },\n }),\n })\n);\n\n// ==============================|| MAIN LAYOUT ||============================== //\n\nconst MainLayout = () => {\n const { t } = useTranslation();\n const theme = useTheme();\n const matchDownMd = useMediaQuery(theme.breakpoints.down(\"lg\"));\n\n // Handle left drawer\n const leftDrawerOpened = useSelector((state) => state.customization.opened);\n const { message, toaster } = useSelector((state) => state.sharedState);\n\n const dispatch = useDispatch();\n const navigate = useNavigate();\n\n useRestoreScrollYPosition();\n\n const handleLeftDrawerToggle = () => {\n dispatch({ type: SET_MENU, opened: !leftDrawerOpened });\n };\n\n const handleToken = useCallback(() => {\n const token = localStorage.getItem('token');\n\n try {\n if (token == null) {\n navigate('/');\n }\n const userToken = jwt_decode(token);\n dispatch(setUserToken(userToken));\n }\n catch (err) {\n console.log(err);\n dispatch(showSessionTimeout());\n navigate('/');\n }\n\n }, [dispatch, navigate]);\n\n useEffect(() => {\n dispatch({ type: SET_MENU, opened: !matchDownMd });\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [matchDownMd]);\n\n useEffect(handleToken, [handleToken]);\n\n return (\n \n \n {/* header */}\n \n \n \n \n \n\n {/* Toaster utility */}\n {toaster.isOpen &&\n dispatch(closeToaster())}\n anchorOrigin={{ vertical: 'bottom', horizontal: 'center' }}\n {...toaster.withTransition && { TransitionComponent: (props) => } }\n disableWindowBlurListener={true}\n >\n dispatch(closeToaster())} severity={toaster.severity} sx={{ width: '100%' }} variant=\"filled\">\n {toaster.format !== '' ? t(toaster.message, toaster.format) : t(toaster.message)}\n \n \n }\n\n {/* Message utility */}\n {message.isOpen && (\n dispatch(closeMessage())}\n onCancel={() => dispatch(closeMessage())}\n >\n {t(message.text)}\n \n )}\n\n {/* drawer */}\n \n\n {/* main content */}\n \n {/* breadcrumb */}\n \n \n \n \n \n );\n};\n\nexport default MainLayout;\n","// material-ui\nimport LinearProgress from '@mui/material/LinearProgress';\nimport { styled } from '@mui/material/styles';\n\n// styles\nconst LoaderWrapper = styled('div')({\n position: 'fixed',\n top: 0,\n left: 0,\n zIndex: 1301,\n width: '100%'\n});\n\n// ==============================|| LOADER ||============================== //\nconst Loader = () => (\n \n \n \n);\n\nexport default Loader;\n","import { Suspense } from 'react';\n\n// project imports\nimport Loader from './Loader';\n\n// ==============================|| LOADABLE - LAZY LOADING ||============================== //\n\nconst Loadable = (Component) => (props) => (\n }>\n \n \n);\n\nexport default Loadable;\n","import { useDispatch, useSelector } from \"react-redux\";\nimport {\n Box,\n Grid,\n Skeleton,\n Typography,\n useMediaQuery,\n useTheme,\n } from \"@mui/material\";\n\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport { useGetOrganizationProfileMutation, useUpdateOrganizationProfileMutation } from \"Services/OrganizationProfileService\";\nimport { useGetCountryListQuery } from \"Services/CountryService\";\nimport { handleChange, handleModelErrors, handleGet, handleChangeCountry, handleChangeProvinceOrState, handleFillCountryAndState } from \"./OrganizationProfileInfo.Slice\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport { useTranslation } from \"react-i18next\";\nimport { useEffect } from \"react\";\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport AutocompleteWrapper from \"components/AutocompleteWrapper\";\nimport SelectWrapper from \"components/SelectWrapper\";\nimport MaskedInputWrapper from \"components/MaskedInputWapper\";\nimport { usePrompt } from \"react-router-dom\";\n\nconst OrganizationProfileInfoPage = () => {\n\n const {\n countryList,\n companyName,\n phoneNumber,\n businessEin,\n addressLine,\n addressLine2,\n city,\n provinceOrState,\n country,\n county,\n postalCode,\n selectedCountry,\n selectedProvinceOrState,\n currentProfileInfo\n } = useSelector((state) => state.organizationProfileState);\n\n const theme = useTheme();\n const dispatch = useDispatch();\n const matchDownSM = useMediaQuery(theme.breakpoints.down(\"md\"));\n const { t } = useTranslation();\n const [getOrganizationProfile, { data, isLoading: isLoadingOrganizationProfile }] = useGetOrganizationProfileMutation();\n const { isLoading: isLoadingCountry } = useGetCountryListQuery();\n const [updateOrganizationProfile, { isLoading: isUpdating }] = useUpdateOrganizationProfileMutation();\n\n usePrompt(\n \"You have unsaved changes. Are you sure to discard all changes made?\",\n companyName.value !== currentProfileInfo.companyName\n || phoneNumber.value !== currentProfileInfo.phoneNumber\n || businessEin.value !== (currentProfileInfo.businessEin ?? \"\")\n || addressLine.value !== currentProfileInfo.addressLine\n || addressLine2.value !== currentProfileInfo.addressLine2\n || city.value !== currentProfileInfo.city\n || provinceOrState.value !== currentProfileInfo.provinceOrState\n || country.value !== currentProfileInfo.country\n || postalCode.value !== currentProfileInfo.postalCode\n );\n\n const handleUpdateProfile = async() => {\n\n try {\n const model = {\n companyName: companyName.value,\n phoneNumber: phoneNumber.value,\n businessEin: businessEin.value,\n addressLine: addressLine.value,\n addressLine2: addressLine2.value,\n city: city.value,\n provinceOrState: provinceOrState.value,\n county: county.value,\n postalCode: postalCode.value,\n };\n\n const response = await updateOrganizationProfile(model).unwrap();\n dispatch(showSuccessToaster(response.message));\n }\n catch(error) {\n // Model Errors\n if (error.data?.errors != null) {\n dispatch(showErrorToaster(t(\"errors.model_error\")));\n dispatch(handleModelErrors(error.data?.errors));\n }\n\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n\n const handleGetOrganizationProfile = async() => {\n const response = await getOrganizationProfile().unwrap();\n dispatch(handleGet(response));\n };\n\n useEffect(() => {\n handleGetOrganizationProfile();\n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, []);\n\n useEffect(() => {\n if (!isLoadingCountry && !isLoadingOrganizationProfile) {\n if (data) {\n dispatch(handleFillCountryAndState(data));\n }\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, [isLoadingOrganizationProfile, isLoadingCountry]);\n \n return (\n <>\n {isLoadingOrganizationProfile \n ? \n \n \n \n \n \n :\n \n
\n \n {t('labels.company_information')} \n \n\n \n dispatch(handleChange({ field: \"companyName\", value: element.target.value }))}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"businessEin\", value: element.target.value }))}\n error={businessEin.error}\n theme={theme}\n placeholder={`(${country.value === \"Canada\" ? \"CA\" : \"US\"}) e.g., ${country.value === \"Canada\" ? \"123456789RR0001\" : \"12-3456789\"}`}\n disabled\n />\n \n\n \n dispatch(handleChange({ field: \"phoneNumber\", value: element.target.value }))}\n maskType=\"phone\" \n error={phoneNumber.error}\n theme={theme}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"addressLine\", value: element.target.value }))}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"addressLine2\", value: element.target.value }))}\n />\n \n\n \n ({\n key: country.id,\n value: country.description,\n text: country.description,\n extraInfo: country.code \n }))}\n />\n \n \n\n \n dispatch(handleChangeProvinceOrState(newValue))}\n error={provinceOrState.error} \n theme={theme}\n options={selectedCountry.provinceOrStateList.map(state => ({\n id: state.id,\n value: state.description,\n label: state.description \n }))}\n />\n \n\n \n dispatch(handleChange({ field: \"city\", value: element.target.value }))}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"postalCode\", value: element.target.value }))}\n required\n />\n \n\n \n\n
\n \n {t('buttons.update_profile')}\n \n \n
\n }\n >\n )\n\n};\n\n\nexport default OrganizationProfileInfoPage;","import { useDispatch, useSelector } from \"react-redux\";\nimport {\n Table,\n TableBody,\n TableCell,\n TableContainer,\n TableHead,\n TableRow,\n Paper,\n Skeleton,\n IconButton,\n} from \"@mui/material\";\n\nimport Pagination from '@mui/material/Pagination';\nimport { DeleteForever } from \"@mui/icons-material\"\nimport { useTranslation } from \"react-i18next\";\nimport { showErrorToaster, showSuccessToaster } from \"store/Shared.Slice\";\nimport { useGetAdditionalEmailPagedListMutation, useDeleteAdditionalEmailMutation } from \"Services/OrganizationAdditionalEmailService\";\n\nconst OrganizationAdditionalEmailList = () => {\n\n const { \n loadingList,\n additionalEmailListPagedData: {\n pageNumber,\n pageSize,\n pageCount,\n items\n }\n } = useSelector((state) => state.organizationAdditionalEmailState);\n\n const { t } = useTranslation();\n const dispatch = useDispatch();\n const [getAdditionalEmailList] = useGetAdditionalEmailPagedListMutation();\n const [deleteAdditionalEmail, { isLoading: isDeleting }] = useDeleteAdditionalEmailMutation();\n\n const handleChangePage = async (event, newPage) => {\n\n try {\n await getAdditionalEmailList({pageNumber: newPage, pageSize});\n }\n catch(error) {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n\n };\n\n const handleDelete = async(row) => {\n\n try {\n const response = await deleteAdditionalEmail(row.id).unwrap();\n await getAdditionalEmailList({pageNumber: 1, pageSize});\n dispatch(showSuccessToaster(response.message));\n }\n catch(error) {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n\n };\n\n return (\n <>\n \n \n \n \n E-mail \n {t('labels.created_at')} \n {t('labels.actions')} \n \n \n \n {loadingList && \n \n \n \n \n \n }\n {items.map((row) => (\n \n {row.emailAddress} \n {row.createdAt} \n \n handleDelete(row)} disabled={isDeleting}>\n \n \n \n \n ))}\n \n
\n \n\n \n\n \n >\n );\n};\n\nexport default OrganizationAdditionalEmailList;\n","import { useDispatch, useSelector } from \"react-redux\";\nimport { Close } from \"@mui/icons-material\"\nimport LoadingButton from \"@mui/lab/LoadingButton\";\nimport { \n Grid, \n Dialog, \n useTheme,\n IconButton,\n DialogActions,\n DialogTitle,\n DialogContent\n} from \"@mui/material\";\nimport { showErrorToaster, showSuccessToaster } from \"store/Shared.Slice\"\nimport { useTranslation } from \"react-i18next\";\nimport { useInsertAdditionalEmailMutation, useGetAdditionalEmailPagedListMutation } from \"Services/OrganizationAdditionalEmailService\";\nimport { \n handleChange, \n handleModelErrors,\n closeDialog \n} from \"./OrganizationAdditionalEmail.Slice\";\nimport FormControlWrapper from \"components/FormControlWrapper\";\n\nconst OrganizationAdditionalEmailPopup = () => {\n\n const { \n isDialogOpen,\n newEmailAddress,\n additionalEmailListPagedData: {\n pageNumber,\n pageSize\n }\n } = useSelector((state) => state.organizationAdditionalEmailState);\n\n const dispatch = useDispatch();\n const theme = useTheme();\n const { t } = useTranslation();\n const [insertAdditionalEmail, { isLoading: isInserting }] = useInsertAdditionalEmailMutation();\n const [getAdditionalEmailList] = useGetAdditionalEmailPagedListMutation();\n \n const handleInsert = async () => {\n try {\n const response = await insertAdditionalEmail(newEmailAddress.value).unwrap();\n await getAdditionalEmailList({pageNumber, pageSize});\n\n dispatch(closeDialog());\n dispatch(showSuccessToaster(response.message));\n }\n catch(error) {\n\n // Model Errors\n if (error.data?.errors != null) {\n dispatch(showErrorToaster(t(\"errors.model_error\")));\n dispatch(handleModelErrors(error.data?.errors));\n }\n\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n return (\n dispatch(closeDialog())} fullWidth maxWidth=\"xs\">\n {`${t('labels.add_new_additional_email')}`} \n dispatch(closeDialog())}\n sx={{\n position: 'absolute',\n right: 8,\n top: 15,\n color: (theme) => theme.palette.grey[500],\n }}\n >\n \n \n \n \n \n \n dispatch(handleChange({ field: \"newEmailAddress\", value: element.target.value }))}\n required\n />\n \n \n \n \n dispatch(closeDialog())}\n >\n Close\n \n\n \n {t('buttons.add_email')}\n \n \n \n )\n\n}\n\nexport default OrganizationAdditionalEmailPopup;","import { useEffect } from \"react\";\nimport { useDispatch, useSelector } from \"react-redux\";\nimport {\n Grid,\n useMediaQuery,\n useTheme,\n } from \"@mui/material\";\n\nimport { MailOutline } from \"@mui/icons-material\"\nimport LoadingButton from '@mui/lab/LoadingButton';\n\nimport { \n useGetAdditionalEmailPagedListMutation,\n} from \"Services/OrganizationAdditionalEmailService\";\n\nimport { \n openDialog\n} from \"./OrganizationAdditionalEmail.Slice\";\nimport { showErrorToaster } from \"store/Shared.Slice\";\nimport { useTranslation } from \"react-i18next\";\nimport SubCard from \"ui-component/cards/SubCard\";\nimport OrganizationAdditionalEmailList from \"./OrganizationAdditionalEmail.List\";\nimport OrganizationAdditionalEmailPopup from \"./OrganizationAdditionalEmail.Popup\";\nimport { usePrompt } from \"react-router-dom\";\n\nconst OrganizationAdditionalEmailPage = () => {\n\n const {\n emailAddress,\n previousEmail,\n additionalEmailListPagedData: {\n pageNumber,\n pageSize,\n totalCount\n }\n } = useSelector((state) => state.organizationAdditionalEmailState);\n\n const theme = useTheme();\n const dispatch = useDispatch();\n const matchDownSM = useMediaQuery(theme.breakpoints.down(\"md\"));\n const { t } = useTranslation();\n\n const [getAdditionalEmailList] = useGetAdditionalEmailPagedListMutation();\n\n usePrompt(\n \"You have unsaved changes. Are you sure to discard all changes made?\",\n previousEmail !== emailAddress.value\n );\n\n const loadListInitial = async() => {\n try {\n await getAdditionalEmailList({pageNumber, pageSize});\n }\n catch(error) {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n useEffect(() => {\n loadListInitial();\n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, []);\n\n return (\n <>\n \n\n \n \n \n \n {`${t('labels.emails_created')}: ${totalCount}`}\n \n \n }\n onClick={() => dispatch(openDialog())}\n >\n {t('buttons.add_email')}\n \n \n \n }>\n \n \n \n \n >\n )\n\n};\n\n\nexport default OrganizationAdditionalEmailPage;","export default \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArwAAADICAYAAAAKljK9AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAorSURBVHhe7d3rbxTXGcDh46ztGAzYFAcCCbUcGoQFqapK/f+/RqKiaShxYmTA4WrA4PvduJxlNnEW43hvXs+7zyONsjNZpGQ/HP325exM3/LK2l4CAICgPiv+CQAAIQleAABCE7wAAIQmeAEACE3wAgAQmuAFACA0wQsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaIIXAIDQBC8AAKEJXgAAQhO8AACEJngBAAhN8AIAEJrgBQAgNMELAEBoghcAgNAELwAAoQleAABCE7wAAIQmeAEACE3wAgAQmuAFACA0wQsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaIIXAIDQBC8AAKEJXgAAQhO8AACEJngBAAhN8AIAEJrgBQAgNMELAEBoghcAgNAELwAAoQleAABCE7wAAIQmeAEACE3wAgAQmuAFACA0wQsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaH3LK2t7xWuAE6FS8V28Vbu774pXAAhe4MTIkbaxuZUWFpfT6tpGcZVGVPoraWhwIJ0+NZTOnR325QHgPcELnAhvF5bT46cv0+LSanGFVl24cC5dvnghjV0YMfEFeprgBbru6fNXafbxXHFGu12/drUavQC9yt91AV31en5R7HbY9Mzj6ucM0KsEL9A129s76eHss+KMTvI5A73MlgagK/KPqeZevk1T07Of/GGVfaeNO+yznLw+ni5dPO9zBXqO4AW6IofZ3akHaWFhpbjyu76+vjQyMpz6K5XiCke1s7t74GeajY6eSd9NfiN4gZ4jeIGuyMH7/e17aXtnt7jyQY6x8auX0sT45eIKjXo4+7y6L7p+2ntm+FS6eWPik1NggKisesCJc/bM6Wr4Opo78j14Afid4AW6IocZABwHwQsAQGiCFwCA0AQvEEa+r+/q2kb1sGUCgBp3aQC65vadqQPv0nBrciKdHz1bXDnc24Xl9Gp+ofoksfrIHfp8IF25PJYujp1PAwP9xdX48mdx0P2N3aUB6FVWPaCU8jf1mdln1bDLD7DIcsjtP3JMP3j0PP1w9341jIUeQG+y+gOlkye5d+/NpGfPXlfPDwvZWvj+b+ph+vXJXHEVgF4ieIHSefTkRVpcWm1oYpvf++uTl9X9vQD0FsELlEren5onu81sT9jb20s//fzQD9oAeozgBUojR+6zF83Fbk3e3mA/L0BvseIDpbG0vFbdytCKPN19s7BkygvQQwQvUBrr65vFq+blye7GxlZXgtdkGaA7rLxAKeRQ3NzaKs5as7m5ld69O97gnZ557E4RAF0ieIHSKOs2hHy/4Hyv4Bzts4/n0tPnr0x6AY6RFRcohRy7p08NFWet+fzzwfTZZ51f/vLDMfJkt/6uEvlhGCa9AMdH8AKlMXJuuHjVvBzOQ0ODHZ+w5th9sG+yu59JL8DxstICpZFDtdXozYH5l9FzxVln5Ki+f8Bkt55JL8DxELxAaeSQvPLlWHHWnDPDp9L50bPFWfvlyW5+EtxBk916Jr0Ax8MKC5TK2IWR6tHsD9iufnUxDQ72F2ftVZvszs29aShgTXoBOkvwAqVz/drV6taGRqN3/Oql6nS32Vg+TJ7szjx6Wp3sNsqkF6CzrKxAKU1eH0+XLp6vvv6zgB3or1Tf/9XlL4or7VWb7L6eX2wpWHP0mvQCtJ/gBUppYKC/GrG18M1Rm8OzdmR5v+7XV75I//ju2+o2iE5oZbJ7EJNegPbrW15Zy+s1wLG7fWcqbe/sFmcf5Fi9NTnR8A/Ltrd30tb7o2bwfRDne+12Mhzzf2v1B2pzb4or7ZO3XzQ7kc6T5qnp2Y/+3/MXgJs3JsQ00HOsekAIeeI7fHrotyOfdzLsapPdfOuxTjDpBWgfKylAg/Jk91MPlWin2p5e0QvQGqsoQINqk93jCFE/ZANoneAFOKLqNoZjmOzWs70BoDVWT4AjOsrjgjvFpBegeYIX6An5Lg6raxvFWeO6MdmtZ9IL0ByrJhBeDt1///BL+unnh9XXjQbjT9OPujbZrWfSC9A4wQuElQM1B24O3b29vbSxuZ1mHj5NGxtbxTsOV9uzOz+/dKKmqia9AI2xWgJhLS2vpR/vzfz2cIsciItLq+mHu/ePNOmdOkGT3XoPHj1v29PdAKITvEA4OVD3T3b3y/9u/6T3UzF7Eie79dbWG9+eAdCLrJRAOPWT3Xo5EmuT3vze/dGY8/gk7dk9jNgFOBqrJRBGDsBPTXbr5ffmSW9+7/5Jb36C2kmf7ALQGCs6EMafTXbr5ajN761Neqe7eJ9dADrHqg6UXg7Uo052D5KjN//Z1/OLYhcgICs7UHqNTnYP0sqfBeBkE7xAabU62QWgNwheoLTaMdkFID7BC5SOyS4AjRC8QOmY7ALQCMELlIbJLgDNELxAaZjsAtAMwQuUQp7uvnj1Ju2IXQAaJHiB0hioVIpXAHB0ghcAgNAELwAAoQleAABCE7wAAIQmeAEACE3wAgAQmuAFKKnd3XfFKwAO07e8sub5nEBX3L4z9dFT03LE3ZqcSOdHzxZXfre9vZO23h98MDjQnwbeH/Vezy+mqenZ6sM69jszfCrdvDHx0XWA6AQv0DWNBi9HI3gB/siqBwBAaIIXAIDQBC9AILYrAHzMHl6gK3KYfX/73oF7eK9cGUvXxq+Itybkz2965nGae/n2wD28f795rTgD6B2CF+iKHGP/+fF+WlldL6780ejomdRfqRRnHNXO7m5aWFgpzv5o7MJImrw+7nZmQM8RvEDXfOpuAjXCrHGHfZbufgH0KsELdE2OsDv//eWjbQ2030B/Jf3rn5PFGUBvsUEO6Jo8jfzbN1+nvr6+4gqdkD/f/DkD9CrBC3RV/iv2b4sYs4WhvfLnmY8b3/7VVgagp9nSAJwIq2sbafbJi7S6sp42NreLqzSrv7+SRkaG0/jXX6ZzZ0/7MgH0NMELnCg5fNfXN9Pa+kZxhUblrSKnTw2Z6gIUBC8AAKHZwwsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaIIXAIDQBC8AAKEJXgAAQhO8AACEJngBAAhN8AIAEJrgBQAgNMELAEBoghcAgNAELwAAoQleAABCE7wAAIQmeAEACE3wAgAQmuAFACA0wQsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaIIXAIDQBC8AAKEJXgAAQhO8AACEJngBAAhN8AIAEJrgBQAgNMELAEBoghcAgNAELwAAoQleAABCE7wAAIQmeAEACE3wAgAQmuAFACA0wQsAQGiCFwCA0AQvAAChCV4AAEITvAAAhCZ4AQAITfACABCa4AUAIDTBCwBAaIIXAIDQBC8AAIGl9H/VZbDrhZ6NegAAAABJRU5ErkJggg==\"","import 'react-image-crop/dist/ReactCrop.css';\n\nimport { useDispatch } from 'react-redux'\nimport { useState, useEffect, useRef } from 'react';\n\n// material-ui\nimport {\n Grid,\n Typography,\n useMediaQuery,\n useTheme,\n RadioGroup,\n FormControlLabel,\n Radio,\n Button,\n Alert,\n } from \"@mui/material\";\n\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport { Close, Upload } from \"@mui/icons-material\"\n\n// project imports\nimport emptyImg from 'assets/images/empty_01.png';\nimport { useTranslation } from \"react-i18next\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport SubCard from \"ui-component/cards/SubCard\";\nimport imgHeaderFooter from \"assets/images/header-footer.png\"\nimport imgHeader from \"assets/images/header.png\"\nimport { useSaveLetterHeadMutation, useGetLetterHeadMutation } from \"Services/LetterHeadService\";\nimport DialogConfirmWrapper from 'components/DialogConfirmWrapper';\nimport { usePrompt } from 'react-router-dom';\n\n\nconst SharedLetterHeadPage = ({sharedLetterHeadType}) => {\n\n const { t } = useTranslation();\n const dispatch = useDispatch();\n const theme = useTheme();\n const matchDownSM = useMediaQuery(theme.breakpoints.down(\"md\"));\n\n const [letterType, setLetterType] = useState('HeaderAndFooter');\n\n const footerRef = useRef();\n const headerRef = useRef();\n\n const [saveLetterHead, { isLoading: isSaving }] = useSaveLetterHeadMutation();\n const [getLetterHead, { isLoading }] = useGetLetterHeadMutation()\n\n const [headerImage, setHeaderImage] = useState({\n previewBlob: null,\n previewUrl: '',\n resizeNotification: false,\n openNotification: false,\n headerImageId: ''\n });\n \n const [footerImage, setFooterImage] = useState({\n previewBlob: null,\n previewUrl: '',\n resizeNotification: false,\n openNotification: false,\n footerImageId: ''\n });\n\n const [openDialogConfirm, setOpenDialogConfirm] = useState(false);\n\n const [ previousData, setPreviousData ] = useState({\n letterType: 'HeaderAndFooter'\n });\n\n usePrompt(\n \"You have unsaved changes. Are you sure to discard all changes made?\",\n headerImage.previewBlob !== null\n || footerImage.previewBlob !== null\n || letterType !== previousData.letterType\n );\n\n const handleUploadFile = (type, element) => {\n const file = element.target.files[0];\n\n if (file != null) {\n\n if (type === 'header') {\n setHeaderImage({\n ...headerImage,\n previewBlob: file,\n previewUrl: URL.createObjectURL(file),\n });\n\n headerRef.current.value = '';\n }\n else {\n setFooterImage({\n ...footerImage,\n previewBlob: file,\n previewUrl: URL.createObjectURL(file),\n });\n\n footerRef.current.value = '';\n }\n }\n }\n\n const handleChangeLetterType = (element) => {\n setLetterType(element.target.value);\n }\n\n const handleSaveChanges = () => {\n\n const openConfirm = (\n headerImage.resizeNotification === true ||\n footerImage.resizeNotification === true\n );\n\n if (openConfirm) {\n setOpenDialogConfirm(true);\n }\n else {\n handleConfirmSave(false);\n }\n }\n\n const handleConfirmSave = async (autoResize) => {\n\n try {\n const model = new FormData();\n\n model.append(\"headerImage\", headerImage.previewBlob);\n model.append(\"footerImage\", footerImage.previewBlob);\n model.append(\"headerImageId\", headerImage.headerImageId);\n model.append(\"footerImageId\", footerImage.footerImageId);\n model.append(\"letterType\", letterType);\n model.append(\"autoResize\", autoResize);\n\n const response = await saveLetterHead({sharedLetterHeadType, model}).unwrap();\n\n dispatch(showSuccessToaster(response.message));\n handleGetLetterhead(sharedLetterHeadType);\n setOpenDialogConfirm(false);\n }\n catch(error) {\n // Model Errors\n if (error.data?.errors != null) {\n dispatch(showErrorToaster(Object.values(error.data?.errors)[0][0]));\n }\n\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n\n }\n\n const handleLoadImage = (event) => {\n\n const hasNotification = (\n event.target.naturalWidth > event.target.width || \n event.target.naturalHeight > event.target.height\n );\n\n if (event.target.id === 'headerImage') {\n\n if (headerImage.previewBlob !== null) {\n setHeaderImage({\n ...headerImage,\n resizeNotification: hasNotification,\n openNotification: hasNotification\n });\n }\n }\n\n if (event.target.id === 'footerImage') {\n\n if (footerImage.previewBlob !== null) {\n setFooterImage({\n ...footerImage,\n resizeNotification: hasNotification,\n openNotification: hasNotification\n });\n }\n }\n }\n\n const handleGetLetterhead = async() => {\n\n const response = await getLetterHead(sharedLetterHeadType).unwrap();\n\n setHeaderImage({\n ...headerImage,\n previewBlob: null,\n previewUrl: response.headerImageUrl,\n openNotification: false,\n headerImageId: response.headerImageId\n });\n\n setFooterImage({\n ...footerImage,\n previewBlob: null,\n previewUrl: response.footerImageUrl,\n openNotification: false,\n footerImageId: response.footerImageId\n });\n\n setLetterType(response.letterType);\n\n setPreviousData({\n ...previousData,\n letterType: response.letterType\n });\n }\n\n useEffect(() => {\n handleGetLetterhead();\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [])\n\n return(\n <>\n\n setOpenDialogConfirm(false)}\n titleMessage=\"Are you sure?\"\n popupMessage={\n <>\n {headerImage.resizeNotification === true && footerImage.resizeNotification === true && (\n Both images (header and footer) are non-standard images. Automatic resize is recommended \n )}\n\n {headerImage.resizeNotification === true && footerImage.resizeNotification === false && (\n The header image is a non-standard image. Automatic resize is recommended \n )}\n\n {headerImage.resizeNotification === false && footerImage.resizeNotification === true && (\n The footer image is a non-standard image. Automatic resize is recommended \n )}\n >\n }\n confirmLabel=\"Confirm Resize\"\n isLoading={isSaving}\n onConfirm={() => handleConfirmSave(true)}\n additionalButtonLabel=\"Confirm original\"\n onAdditionalButtonClick={() => handleConfirmSave(false)}\n size=\"sm\"\n />\n\n {/* setOpenDialog(false)}\n image={uploadType === 'header' ? headerImage.image : footerImage.image}\n onConfirm={handlePopupConfirm}\n />*/}\n\n \n \n {t('labels.add_digital_letterhead')} \n \n\n \n \n {t('messages.first_letterhead_message')}\n \n \n \n \n {t('messages.second_letterhead_message')}\n \n \n \n \n {t('messages.third_letterhead_message')}\n \n \n\n \n \n \n \n \n \n handleUploadFile('header', e)} />\n }\n >\n {t('buttons.select_header_file')}\n \n \n \n \n }\n onClick={() => {\n setHeaderImage({\n ...headerImage,\n previewBlob: null,\n previewUrl: '',\n resizeNotification: false,\n openNotification: false,\n headerImageId: ''\n })\n }}\n >\n Clear Image\n \n \n \n \n } >\n \n\n {headerImage.openNotification && (\n \n setHeaderImage({...headerImage, openNotification: false })} variant='filled'>\n Non-standard image. Recommended: 700 x 200\n \n \n )}\n\n \n { setHeaderImage({\n ...headerImage,\n previewBlob: null,\n previewUrl: emptyImg\n })}}\n onLoad={handleLoadImage}\n />\n \n \n\n \n \n\n \n
\n \n\n \n \n handleUploadFile('footer', e)} />\n }\n >\n {t('buttons.select_footer_file')}\n \n \n \n\n \n }\n onClick={() => {\n setFooterImage({\n ...footerImage,\n previewBlob: null,\n previewUrl: '',\n resizeNotification: false,\n openNotification: false,\n footerImageId: ''\n })\n }}\n >\n Clear Image\n \n \n\n \n \n }>\n
\n\n {footerImage.openNotification && (\n \n setFooterImage({...footerImage, openNotification: false })} variant='filled'>\n Non-standard image. Recommended: 700 x 200\n \n \n )}\n\n \n { setFooterImage({\n ...footerImage,\n previewBlob: null,\n footerImageId: null,\n previewUrl: emptyImg\n })}}\n onLoad={handleLoadImage}\n />\n \n \n\n \n \n\n
\n\n \n\n \n \n\n \n\n \n \n } label={`${t('labels.header_only')}`} />\n \n \n \n \n \n\n \n \n } label={`${t('labels.header_and_footer')}`} />\n \n \n \n \n \n\n \n\n \n\n \n\n \n \n {t('buttons.save_changes')}\n \n \n\n \n\n >\n );\n\n}\n\nexport default SharedLetterHeadPage;","export default \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABrCAYAAADgrAXDAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAfQSURBVHgB7Z29bhw3EICHe3uSLJ0SQ/AP5Mpler+Aa3cJoDKFn0SP4iKlgKSJG1f2A7h1GbiKIEsQhOjuIOlOYma4M7whb/eW69bzASvybne5vBF/hsMh10GD4xDevXv3IPHJ3h78+uYNaP56/x6m8zm08SNc//btW+e9B+ccYOhEcDFEAd7/fnQExjp/nJyQAEcY9T5Iz0EF/AkDio/ov2C0szUeUzA6Pj52BH2QkheEd3h4OP7ny5fZuLnQyJjNZvDz8+e7GF3SQQWPBOdQonR+dHp6umXC62YPa+fBwQEJKMgNOAKfPn2qOF53NbAGwN1iAZeXl1GA0gb6jx8/0vkKJTx6/+EDGO383ciGOhH36tWrUPhiUaQQ67gjKRvtzJraWT19+rT6/PkzdbxQ87lEnaHumqA6/1umF/2JetGso5r/KNefn5/HuOODBLlDaSyn01MwOsFe+BBr6hSjN9gJ34c2EIxiSJUBLniIr0ihhpUQHRgleD4aNQZx2DDGL43NoKwoCGPiikck1DBKe2j0wJ1IUwKbYXBTJHd3d8EoJxoTUCkMJW8+n1sV7ieppbEKw0qlMcpo2kCMeNSqwSgm1NLXr197XYXBKId6YbQfxBJo1XYYTnphKoEiPBrKPQIbyvVSTyYvMLjG4waPeymBMhqx0thDrupVKq6HdEYHpOrxSIQIJv3Qo1CI0rUSOAwX1Jjr62tTpAcg9sC2XthKYD9BRlhrQcxZsL+/LyXPSmABT548caQHYtTVaihnFHJxcSGmPy8W6SDFPfNKGEIogUkbyOZqowdWY5oSSO4JrMZY+1dIVVVxCiSWQGoYwSjBn52dRVnVmZORUU60xgg2Fi5E2sBgD+Q5kVCFsRe2drAAGomQIg3UiXAVJml68o0BYyOi6rEivZoX5gl2YxgutoGoXYPRD+nK1AaS6heczfl7s0gXghbpQwyCcxEeS22RNobRtIHSCxM2Fi5CCltY6SBtYJCi9cJFxBIX7IESz08anay5dnibWB9EKGTkTxSHcuLaYZNKw5ChXJzOtEmlIkIh42kQJyoMrX0gPXCCeuC/YHSS6YH3iUkfrBPphZo5mViP05rUibCPtLWBPVAzp9aJ+JoXD1vJK4QGG3qpg5iznJn0y1ATb14r0mKNsZLYT7IsLoyFyTSDJRCMIqKLL4WmxgykzcGSsJVKhSgHy8SkbyuVCpmvlr4ma+XCB5uVKyKRUWLOMt+YfpTROa3CYBPrRehCFoZyvOmON0X6+6h4Bx5n05rFBHnFpV56UglMjSkhDDp4qxivV2taL1wIufiyb8zarh02EulB79oBaiQCPBa2EtgDTf3Kngn0Jy535U7EeuICyKAqM5mxCqNUt/HEvlXhzdCcCMpqirKKvjFBmjwWNnqgkYje+iko0mqlktFDPtytZStL6kRMmS6DOhGxXoki7cykX47aeMcnm4+Za0cZ7KEatkEOY2Gx789t+88iqATSUC5ue0Ie5zapNIy4zCH73trAMhwbE1bWGOpEzMW3mGSxYYCqsLn4lpHs2iErlbgEWhUuhHe8c2TGCnMhpkiXg71w9NCK64VNeGWwf2D0pwyKtOiBRj+kKydbgILqko0ylEE19sKhDbShXD/Y0T7weuHVphNy0oZyRYRCxttlxSk5esWDTSoVwF76ZBRMVmsGbBvkIuK6GnHtAFgttAGjF+0Gk06sG2XI3lnRnAXcCxvDiQ6WakcyYwNisWJ7YLpWDjuRyX/fvlkvvAG1Vu4Wj4X2UPXWiQxi7W0OsXs2+pEqHN/mYJ3I95GPRGzfmB5+evbsBTZ1azuZy1IvUwrLSffOMoNqGWpbhGiNsddhDCOppbYN8kBo4k3PXoZXQ1IJlK1PUFH8BYMJHtt8fnVxXfvlkl6ti7NRdQ0Y1++ja1uo4/E6R/fw9W158i3P6ErHczppKaibN1xKflqe5TrS7c0Pf6bEqNOYQWqNCbNyoF4JRO9Xv6cbxuNx2A6AHkqZ1xnkeNfDXMeP0Lpm/oOioPkZ+SYYeZrJc+U5cl49N16n/4ld/8yO855log8vW8FLJujt1tvT6fQRWlonW1tbu3d3d1QCQy9NL21eqLe+dnwuXiom92MYhYqfHT/LS1qSLoZusf7W2VzQOp9recnz3JLG2nfqHpLmHR40VJvxsaB3a4YLj46ORicnJ+PHjx/vXF1dkT5IwiPdcJQ/cXt7G25vb/syEa+jkJB4du+mdDeirx9yb35tlr/wW1rSWu7s7Cxvbm7oBAkxjIOBTFq8a4e84ZqEtsVheBExTTSp/VW97Fqhdq+IaN+a7JweJoY4pSsqgU6T2hW9g5K+ri09eabkT90TPS1UXhyfB/5N4TvuGHRayfXAVffg4GBxeXm5wOq7wJnMUJUbvw7vHfsJVnhixMJLVrOzS2vSjtH3dC+bwpJ2i6y2lEntkE0o99i2tg66BJX9oNbrxWeFn5m3zSD5yrxxZbV+uI/zBy15vn/58qX/+vUrVecHkBeUkgDk4IeS4EYozBp7ZyqJNcWh6ZHzY0zX0Hm+RsfjodOReJ4GNKVenxtnYZ2fy9LTYXJI+uo5ebrhnJxX+U+efXx8nOz42bpxr8xyiu+0XJSHirXv5V6JZwsaQWcif3bHbsJtz3Qqj5uu1c9v7eSyvLs8f1zA2m6F/wFz8WtUWCBRMQAAAABJRU5ErkJggg==\"","export default \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABrCAYAAADgrAXDAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAf7SURBVHgB7V29bhw3EB7e7UmKfhxD8A/kyu/gF3DjxkiTACpT+En0KCpSCkiauHFlP4Bal4ErC4YNwYhOB1l3MsOPO8Mb8nZveWk9H7Ai78gleaMhORwOh45aOA7p9PT0u8T39/bo15cvSeOv169pOptRF36E/K9evXLee3LOUQidEC6FgYB3vx8fk2EVf5ydgYDjEPU+Us/RiPhTCBAf479g6MbWZIJgfHJy4gB8EM6LxDs6Opr88/799aTNaChwfX1NPz9+vBuiCzxgPBDOBYoifXxxcbFlxOvHXuidh4eHIFCkG3GE3r17N+J40zfAGohu53O6vLxMBJQx0L99+xbpo0Dh8es3b8jQjb9b2mAScc+ePYvMl1gRYejjDlQ2dOO67Z2jhw8fjs7PzzHxUsNpmTiD6RpAn/+tkIv+DHLRdU83/1Hyf/78OcUdPyDkDspYTKcXZOhFmIWPQk+dhuhNmITv4hhIhmpAlCFmvAA/gkBNSyI6MtTA89OKMQEuDIzpS8N6BFohiGviEa9IMDDKeGgYAE8iLQe2y+CWJXd3d8lQj6RMCEJh5LzZbGZdeBhZL01dmJYijaEO7RgYIj5I1WSoRuylz58/97oLk6EemIWD/iBxoHXbzeBkFgYHCvGwlPuJbCk3iGZ//0kIrsJzE5474UBZjRg3DqAU9UYqrpd0hh5A1OOVCBBV+nFGQRioaxy4GVwUY66urkyQ3gCiD+yahY0DhxFpFHotiTqLDg4OhPOMAyvw4MEDBzkwRF2jlnKGSnz58kVUf1400pGKe2aVsAkiB2ZjIKurDQNgMablQJgnsBhj418lRqNR2gJJHIiBkQw18J8+fUq0agojI0M9kjZGYGvhSsgYGPWBvCcSu3CYhW0crABWIhCkCZMId2FQ08M2hgxrIaIeC9LLfWHeYDdsBpfGwCBdk2EYkJUxBkL0i8bm/L1ppCsRNNJHIYjGReFZaI20YTO0Y6DMwoCthasgzBZPOsgYGKlos3AVEsdFfaDEy0RDL1ZMO7xtrG+EyGSwJ0pLOTHtsE2lzSBLubSdaZtKVYhMxtsgTkQYnH2AHLgf5MCPZOhFIQfeZSp9sklkEBjmZGM9bWtiEmEbaRsDB4BhTp0T8Q0fHjbOqwQWG/qog6iznKn066A23rwWpEUbY5w4jOxYXFwLQzUTOJAMVUgmvghNjNkQXQaWgJ1UqoQysMxU+nZSqRKz5dHX7Kxc/GC7clXIaJSps8w2ZhhK6Zx3YbKN9SpoJotLOXa6402Q/n8YsQceZ9ua1Yj0Ske99KYSmRhTg7joYFcxXp/WtFm4EjDxZduYFa8dthIZgPbaQWolQrwWNg4cALZ+xWcC/qTjrjyJ2ExcAShUZSczdeFA1e2QcGBdeD2wJxJoNQ20SrYxkZq8FjYMACsR7fopCtLqpJJhAOVytxFXlphETJiuAyYR0V6JIO1MpV8P5XjHZ87HzLSjDmyhGt0gx7Ww6Pdn5v6zCuBALOWS2xNYnNum0mZIxxyK720MrINjZcJSG4NJxEx8q5EdNoxAFzYT3zpkXjvkpBJzoHXhSrDHOwc1VtwLMUG6HmEWThZa6bywEa8ObB+Y7CmjIC1yoGEYkJUzF6CkpmRDHZRCNc3CcQy0pdwwwkT7nc8LL51OSKIt5aoQmYzdZaUtOVzxYJtKFWArfSgFs9OaEeYGuQrpXI2YdhAtD9qQYRDaDCbfWDfUQXxnJXUW8Sxs2BzJwFJ5JDOsgWisWB/oGpXmIAfKbTaA3Wy4ml925djtide2MdvhOTg9Pf1oNxt2g282zJ1OqFk4UtRuNuzHlrpzT7pwus1BJpFfXrwgQze6aFOuRMxvzADuPXr0JMjLK57M5aiXs5sN+1HcuZf7zhKFqt1s2A/cbKjcIiRtTHYdht1s2A++oC9bunW6QbabDfvzY+NN715GOTBwYHN+fh7VWeG5xyHkwoYUxZum8YvFIr4X4hTi+j66roM6PuRzeIfzUwd8Rx195XguJ+eCpl0PSHs66nI95Q62hz+jMEwakKL/JT6tiZsNY83qSiDcr36HFyaTSXQHgErReN1AjvdV5np+RJI1O35QIjTXUTrBKMvM6pV6JF3Vm/Lpf2LfP7Mn3TNN9OPFFbw0Ardbb0+n05+CpnV/a2tr9/b2FhwYZ2lc2jxXY2PP5+qjYvJ+CBNRw2fHdXkpS8oNoZuvjs0loXU7V9pStrmjjJXv1Dug5m140Jev+ZmDA2PG4+Pj8dnZ2eT+/fs7X79+RVcG8SAbjssat7e36du3b0ONSPkQAhIv3l1X7lro/Ju8W+Yt2hd/S0dZi52dncXNzQ0SQESEoKx37LVDbrgG0bY4jBcRQ8Gg/Kt68VqhvFckaNuaIi1pcSWOckUk0GXC5k57UNL5usqTOqV96p1kaaHa4jid+DfF73hi0GVl+Ym77uHh4fzy8nIeuu88KBNiV27tOrx3bCc4CgljJl52mp1NWrNxDN/jXVaFZeMWtLZopDbIBpR5bNdYR32EKn5QZ36xWeE6y7GZpF2FNa6c1o/vcfuoo813T58+9R8+fEB3/k5yQSkIIA9XCsKNAzGbMDuDExvEqZ2Ry2eCPEjnPDqeHl2OxMsyqOV6nTYpwqZMK8rTYfZI+aqestyYJumq/VndJycnmcfPTse9ssspttOSqQwVVr6XdyVeHGgk3Yiy7h5vwl11OtXGdXl1/Z2TXNF2V7aPGazrVfoP1vXQLxgk27EAAAAASUVORK5CYII=\"","import { useRef } from \"react\";\nimport { v4 as uuidv4 } from \"uuid\";\nimport { useDispatch, useSelector } from \"react-redux\";\nimport {\n Box,\n Grid,\n Skeleton,\n Typography,\n useMediaQuery,\n useTheme,\n } from \"@mui/material\";\n\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport { useGetUserProfileQuery, useUpdateUserProfileMutation } from \"Services/UserProfileService\";\nimport { handleChange, handleModelErrors } from \"./ProfileInfo.Slice\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport { useTranslation } from \"react-i18next\";\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport MaskedInputWrapper from \"components/MaskedInputWapper\";\nimport { usePrompt } from \"react-router-dom\";\n\n\nconst ProfileInfoPage = () => {\n\n const {\n email,\n userName,\n firstName,\n lastName,\n position,\n phoneNumber,\n userNameEmail,\n currentProfileInfo\n } = useSelector((state) => state.userProfileState);\n\n const sessionId = useRef(uuidv4());\n const theme = useTheme();\n const dispatch = useDispatch();\n const matchDownSM = useMediaQuery(theme.breakpoints.down(\"md\"));\n const { t } = useTranslation();\n const { isLoading: isLoadingUserProfile } = useGetUserProfileQuery(sessionId.current);\n const [updateUserProfile, { isLoading: isUpdating }] = useUpdateUserProfileMutation();\n\n usePrompt(\n \"You have unsaved changes. Are you sure to discard all changes made?\",\n userName.value !== currentProfileInfo.userName\n || firstName.value !== currentProfileInfo.firstName\n || lastName.value !== currentProfileInfo.lastName\n || (position.value ?? '') !== (currentProfileInfo.position ?? '')\n || phoneNumber.value !== currentProfileInfo.phoneNumber\n );\n\n const handleUpdateProfile = async() => {\n\n try {\n const model = {\n email: email.value,\n userName: userName.value,\n firstName: firstName.value,\n lastName: lastName.value,\n position: position.value,\n phoneNumber: phoneNumber.value\n };\n\n const response = await updateUserProfile(model).unwrap();\n dispatch(showSuccessToaster(response.message));\n }\n catch(error) {\n // Model Errors2\n if (error.data?.errors != null) {\n dispatch(showErrorToaster(t(\"errors.model_error\")));\n dispatch(handleModelErrors(error.data?.errors));\n }\n\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n return (\n <>\n {isLoadingUserProfile \n ? \n \n \n \n \n \n :\n \n \n \n {t('labels.user_information')} \n \n \n dispatch(handleChange({ field: \"firstName\", value: element.target.value }))}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"lastName\", value: element.target.value }))}\n required\n />\n \n\n \n dispatch(handleChange({ field: \"phoneNumber\", value: element.target.value }))}\n maskType=\"phone\" \n error={phoneNumber.error}\n theme={theme}\n required\n />\n \n \n\n \n \n dispatch(handleChange({ field: \"userName\", value: element.target.value }))}\n disabled\n />\n \n\n \n dispatch(handleChange({ field: \"position\", value: element.target.value }))}\n />\n \n \n\n \n \n {t('buttons.update_profile')}\n \n \n
\n }\n >\n )\n\n};\n\n\nexport default ProfileInfoPage;","import { emptySplitApi } from \"./index\";\n\nexport const alertNotificationApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getNotifications: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/alert-notifications`,\n method: \"GET\",\n }),\n }),\n saveNotification: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/alert-notifications`,\n method: \"POST\",\n body: model,\n }),\n }),\n \n }),\n overrideExisting: false,\n});\n\nexport const {\n useGetNotificationsMutation,\n useSaveNotificationMutation \n} = alertNotificationApi;\n","import { useDispatch, useSelector } from \"react-redux\";\nimport {\n Box,\n FormControl,\n Grid,\n Skeleton,\n useMediaQuery,\n useTheme,\n FormLabel,\n FormGroup,\n FormControlLabel,\n Switch,\n } from \"@mui/material\";\n\nimport { \n useGetNotificationsMutation,\n useSaveNotificationMutation \n} from \"Services/AlertNotificationService\"; \n\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport AnimateButton from \"ui-component/extended/AnimateButton\";\n\nimport { handleCheck, handleGet } from \"./AlertNotification.Slice\";\nimport { showErrorToaster, showSuccessToaster } from \"store/Shared.Slice\";\nimport { useEffect } from \"react\";\nimport { useTranslation } from \"react-i18next\";\n\nconst AlertNotificationPage = () => {\n\n const { t } = useTranslation();\n const theme = useTheme();\n const matchDownSM = useMediaQuery(theme.breakpoints.down(\"md\"));\n const [getNotifications, { isLoading: isLoadingList }] = useGetNotificationsMutation();\n const [saveNotifications, { isLoading: isSaving }] = useSaveNotificationMutation();\n\n const { notificationList } = useSelector((state) => state.alertNotificationState);\n const dispatch = useDispatch();\n\n const handleChange = (element, value) => {\n dispatch(handleCheck({\n ...value,\n enabled: element.target.checked\n }));\n };\n\n const handleSaveNotifications = async () => {\n\n try {\n const response = await saveNotifications(notificationList).unwrap();\n dispatch(showSuccessToaster(response.message));\n }\n catch(error) {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n\n };\n\n const handleGetNotifications = async() => {\n\n const response = await getNotifications().unwrap();\n dispatch(handleGet(response));\n\n };\n\n useEffect(() => {\n handleGetNotifications();\n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, []);\n\n\n return(\n \n \n \n {t('labels.enable_disable_notifications')} \n \n {isLoadingList && }\n {notificationList.map((value, index) => \n handleChange(element, value)} name={value.name} />\n }\n label={value.description}\n />\n )}\n \n \n \n \n \n \n {t('buttons.save_changes')}\n \n \n \n \n );\n\n};\n\nexport default AlertNotificationPage;","import { emptySplitApi } from './index'\n\nexport const signatureApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getSignature: builder.mutation({\n query: () => ({\n url: `api/v1/auth-service/signature`,\n method: \"GET\",\n }),\n \n }),\n saveSignature: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/signature`,\n method: \"POST\",\n body: model,\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const { useGetSignatureMutation, useSaveSignatureMutation } = signatureApi;\n","import 'react-quill/dist/quill.snow.css';\n\nimport { useSelector, useDispatch } from 'react-redux';\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport { Skeleton, Grid } from '@mui/material';\nimport ReactQuill, { Quill } from 'react-quill';\nimport { useGetSignatureMutation, useSaveSignatureMutation } from \"Services/SignatureService\";\nimport { handleChange, handleSaveSuccess, handleGet } from \"./Signature.Slice\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport { useTranslation } from \"react-i18next\";\nimport { useEffect, useRef } from 'react';\nimport { usePrompt } from 'react-router-dom';\n\nimport ImageResize from 'quill-image-resize-module-react';\n//import ImageResize from 'quill-resize-module';\nwindow.Quill = Quill;\n\nQuill.register('modules/imageResize', ImageResize);\n\nconst SignaturePage = () => {\n\n const { document, currentSignature } = useSelector((state) => state.signatureState);\n const dispatch = useDispatch();\n const [getSignature, { isLoading }] = useGetSignatureMutation();\n const [saveSignature, { isLoading: isSaving }] = useSaveSignatureMutation();\n const { t } = useTranslation();\n\n const modules = {\n toolbar: [\n [{ 'header': [1, 2, false] }],\n ['bold', 'italic', 'underline','strike', 'blockquote'],\n [{'list': 'ordered'}, {'list': 'bullet'}, {'indent': '-1'}, {'indent': '+1'}],\n ['link', 'image'],\n ['clean']\n ],\n imageResize: {\n modules: ['Resize', 'DisplaySize'],\n },\n };\n \n const formats = [\n 'header',\n 'bold', 'italic', 'underline', 'strike', 'blockquote',\n 'list', 'bullet', 'indent',\n 'link', 'image'\n ];\n\n usePrompt(\n \"You have unsaved changes. Are you sure to discard all changes made?\",\n currentSignature !== document\n );\n \n \n const handleSaveChanges = async () => {\n\n try {\n const model = new FormData();\n model.append('document', document);\n\n const response = await saveSignature(model).unwrap();\n\n dispatch(handleSaveSuccess(response));\n dispatch(showSuccessToaster(response.message));\n }\n catch (error) {\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n };\n\n const handleGetSignature = async() => {\n const response = await getSignature().unwrap();\n dispatch(handleGet(response.data));\n }\n\n useEffect(() => {\n handleGetSignature();\n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, []);\n\n return(\n <>\n \n {t('buttons.save_changes')}\n \n\n {isLoading &&\n \n \n \n \n \n }\n\n dispatch(handleChange(value))}\n modules={modules}\n formats={formats}\n />\n >\n )\n\n}\n\nexport default SignaturePage;","import { useState } from \"react\";\nimport {\n Box,\n Grid,\n Typography,\n useTheme,\n} from \"@mui/material\";\nimport { useTranslation } from \"react-i18next\";\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport { useUpdatePasswordMutation } from \"Services/AuthManagementService\";\nimport { showSuccessToaster, showErrorToaster } from \"store/Shared.Slice\";\nimport { useDispatch } from \"react-redux\";\nimport PasswordInputWrapper from \"components/PasswordInputWrapper\";\n\nconst ResetPassword = () => {\n const [updatePassword, {isLoading}] = useUpdatePasswordMutation();\n const { t } = useTranslation();\n const theme = useTheme();\n const dispatch = useDispatch();\n\n const [currentPassword, setCurrentPassword] = useState({\n value: \"\",\n error: \"\"\n });\n const [newPassword, setNewPassword] = useState({\n value: \"\",\n error: \"\"\n });\n const [confirmPassword, setConfirmPassword] = useState({\n value: \"\",\n error: \"\"\n });\n\n const isButtonDisabled = [currentPassword, newPassword, confirmPassword]\n .some(({value, error}) => value.length === 0 || error.length > 0)\n\n const handleCurrentPasswordChange = (e) => {\n const {value} = e.target;\n const npValue = newPassword.value;\n\n setCurrentPassword({...currentPassword, value, error: value.length === 0 ? t(\"fieldRequired\") : ''});\n\n setNewPassword((state) => ({...state, \n error: npValue.length > 0 && npValue === value \n ? t(\"pickupNewPassword\")\n : ''}));\n }\n\n const handleNewPasswordChange = (e) => {\n const {value} = e.target; \n const valueLen = value.length;\n const cpValue = confirmPassword.value;\n const minimumCharaters = 6;\n\n let error = '';\n if(valueLen === 0){\n error = t(\"fieldRequired\");\n }\n else if(valueLen < minimumCharaters){\n error = t(\"passwordMinCharacter\", {minimumCharaters});\n }\n else if(value === currentPassword.value){\n error = t(\"pickupNewPassword\");\n }\n\n setNewPassword({value, error}); \n setConfirmPassword((state) => ({...state, error: cpValue.length > 0 && value !== cpValue ? t(\"enterSameValueAgain\") : ''}));\n }\n\n const handleConfirmPasswordChange = (e) => {\n const {value} = e.target;\n let error = '';\n if(value.length === 0){\n error = t(\"fieldRequired\");\n }\n else if(value !== newPassword.value){\n error = t(\"enterSameValueAgain\")\n }\n\n setConfirmPassword({value, error});\n }\n\n const handlePasswordReset = async (e) => {\n if(isButtonDisabled) return;\n \n try {\n const model = {\n oldPassword: currentPassword.value,\n newPassword: newPassword.value,\n };\n\n const response = await updatePassword(model).unwrap();\n dispatch(showSuccessToaster(response.message));\n\n //Reset states\n [setCurrentPassword, setNewPassword, setConfirmPassword]\n .forEach(f => f({value: \"\", error: \"\"}));\n }\n catch(error) {\n // Model Errors2\n if (error.data?.errors != null) {\n const errorList = Object.values(error.data?.errors);\n\n if(errorList.length > 0)\n {\n errorList.forEach(errValue => {\n dispatch(showErrorToaster(errValue));\n })\n }\n else{\n dispatch(showErrorToaster(t(\"errors.model_error\")));\n }\n }\n\n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n }\n\n return (\n <>\n \n \n Reset your password \n \n \n handleCurrentPasswordChange(e)}\n required\n />\n \n \n \n handleNewPasswordChange(e)}\n required\n />\n \n \n handleConfirmPasswordChange(e)}\n required\n />\n \n \n \n \n \n {t('buttons.reset_password')}\n \n \n >\n );\n};\n\nexport default ResetPassword;\n","// import { lazy } from 'react';\nimport lazyPage from 'utils/lazyPage';\n\n// project imports\nimport MainLayout from 'layout/MainLayout';\nimport Loadable from 'ui-component/Loadable';\nimport OrganizationProfileInfoPage from 'views/account/organization-profile/OrganizationProfileInfo.Page';\nimport OrganizationAdditionalEmailPage from 'views/account/organization-profile/OrganizationAdditionalEmail.Page';\nimport SharedLetterHeadPage from 'views/shared/SharedLetterHead.Page';\nimport ProfileInfoPage from 'views/account/user-profile/ProfileInfo.Page';\nimport AlertNotificationPage from 'views/account/user-profile/AlertNotification.Page';\nimport SignaturePage from 'views/account/user-profile/SignaturePage';\nimport ResetPassword from 'views/account/user-profile/ResetPassword.Page';\n// dashboard routing\nconst DashboardDefault = Loadable(lazyPage(() => import('views/dashboard/Default')));\n\nconst AdditionalUsersPage = Loadable(lazyPage(() => import('views/account/additional-users')));\nconst UserProfilePage = Loadable(lazyPage(() => import('views/account/user-profile')));\nconst ManageAccountPage = Loadable(lazyPage(() => import('views/admin/manage-accounts')));\nconst ManageAnnouncementPage = Loadable(lazyPage(() => import('views/admin/manage-announcements')));\nconst ManageSubscriptionPlanPage = Loadable(lazyPage(() => import('views/admin/manage-subscription-plans')));\nconst ManageCouponsPage = Loadable(lazyPage(() => import('views/admin/manage-coupons')));\nconst ManageFeedbacksPage = Loadable(lazyPage(() => import('views/admin/manage-feedbacks')));\nconst ManageDeadlinesPage = Loadable(lazyPage(() => import('views/admin/manage-deadlines')));\nconst CreateAccountPage = Loadable(lazyPage(() => import('views/admin/create-account')));\nconst CreateAnnouncementPage = Loadable(lazyPage(() => import('views/admin/create-announcement')));\nconst UpdateAnnouncementPage = Loadable(lazyPage(() => import('views/admin/update-announcement')));\nconst CreateSubscriptionPage = Loadable(lazyPage(() => import('views/admin/create-subscription-plan')));\nconst UpdateSubscriptionPage = Loadable(lazyPage(() => import('views/admin/update-subscription-plan')));\nconst UpdateAccountPage = Loadable(lazyPage(() => import('views/admin/update-account')));\nconst UpdateFoundationCaPage = Loadable(lazyPage(() => import('views/admin/update-foundation-ca')));\nconst UpdateFoundationUsPage = Loadable(lazyPage(() => import('views/admin/update-foundation-us')));\nconst ManagePlansPage = Loadable(lazyPage(() => import('views/admin/manage-plans')));\nconst OrganizationProfilePage = Loadable(lazyPage(() => import('views/account/organization-profile')));\nconst UserProjectPage = Loadable(lazyPage(() => import('views/user-project')));\nconst UserProjectArchive = Loadable(lazyPage(() => import('views/user-project/UserProject.Archive')));\nconst SearchByGivingHistoryPage = Loadable(lazyPage(() => import('views/search-engine/by-giving-history')));\nconst SearchByGivingHistoryPageV2 = Loadable(lazyPage(() => import('views/search-engine/giving-history-v2')));\nconst SearchByNamePage = Loadable(lazyPage(() => import('views/search-engine/by-name')));\nconst SearchByNamePageV2 = Loadable(lazyPage(() => import('views/search-engine/by-name-v2')));\nconst SearchByNamePageCA = Loadable(lazyPage(() => import('views/search-engine-ca/by-name')));\nconst SearchByNamePageCAV2 = Loadable(lazyPage(() => import('views/search-engine-ca/by-name-v2')));\nconst SearchByDirectorPage = Loadable(lazyPage(() => import('views/search-engine/by-director')));\nconst SearchByDirectorPageV2 = Loadable(lazyPage(() => import('views/search-engine/by-director-v2')));\nconst SearchByYearPage = Loadable(lazyPage(() => import('views/search-engine/by-year')));\nconst SearchByYearPageV2 = Loadable(lazyPage(() => import('views/search-engine/by-year-v2')));\nconst SearchByRatingPage = Loadable(lazyPage(() => import('views/search-engine/by-rating')));\nconst SearchByCustomPage = Loadable(lazyPage(() => import('views/search-engine/by-custom')));\nconst ProjectBudgetPage = Loadable(lazyPage(() => import('views/project-budget')));\nconst FoundationProfilePage = Loadable(lazyPage(() => import('views/foundation-profile')));\nconst FoundationProfilePageV2 = Loadable(lazyPage(() => import('views/foundation-profile-v2')));\nconst InquiryPage = Loadable(lazyPage(() => import('views/document-generator/inquiry')));\nconst ProposalPage = Loadable(lazyPage(() => import('views/document-generator/proposal')));\nconst CustomPage = Loadable(lazyPage(() => import('views/document-generator/custom')));\nconst GrantSecretary = Loadable(lazyPage(() => import('views/grant-secretary')));\nconst GrantSecretaryV2 = Loadable(lazyPage(() => import('views/grant-secretary-v2')));\nconst GrantSecretaryPreviewDocuments = Loadable(lazyPage(() => import('views/grant-secretary/GrantSecretary.PreviewDocuments')));\nconst GrantSecretaryPreviewDocumentsV2 = Loadable(lazyPage(() => import('views/grant-secretary-v2/GrantSecretary.PreviewDocuments')));\nconst ManageFundersPage = Loadable(lazyPage(() => import('views/manage-funders-v2')));\n// const FavoritesPage = Loadable(lazyPage(() => import('views/manage-funders/favorites')));\n// const BlockedFundersPage = Loadable(lazyPage(() => import('views/manage-funders/blocked-funders')));\nconst CustomDatabasesPage = Loadable(lazyPage(() => import('views/manage-funders-v2/custom-databases')));\nconst CustomDatabasesImportPage = Loadable(lazyPage(() => import('views/manage-funders-v2/custom-databases/CustomDatabase.Import')));\nconst CustomProfilePage = Loadable(lazyPage(() => import('views/custom-profile')));\nconst CustomProfilePageV2 = Loadable(lazyPage(() => import('views/custom-profile-v2')));\nconst DocumentInquiryPage = Loadable(lazyPage(() => import('views/document-generator/document-inquiry')));\nconst DocumentInquiryFunderPage = Loadable(lazyPage(() => import('views/document-generator/document-inquiry/DocumentInquiry.FunderPage')));\nconst DocumentProposalPage = Loadable(lazyPage(() => import('views/document-generator/document-proposal')));\nconst DocumentProposalFunderPage = Loadable(lazyPage(() => import('views/document-generator/document-proposal/DocumentProposal.FunderPage')));\nconst DocumentCustomPage = Loadable(lazyPage(() => import('views/document-generator/document-custom')));\nconst DocumentCustomFunderPage = Loadable(lazyPage(() => import('views/document-generator/document-custom/DocumentCustom.FunderPage')));\nconst SearchByKeywordPage = Loadable(lazyPage(() => import('views/search-engine/by-keyword')));\nconst SearchByKeywordPageV2 = Loadable(lazyPage(() => import('views/search-engine/by-keyword-v2')));\nconst SearchByDirectorPageCA = Loadable(lazyPage(() => import('views/search-engine-ca/by-director')));\nconst SearchByDirectorPageCAV2 = Loadable(lazyPage(() => import('views/search-engine-ca/by-director-v2')));\nconst SearchByGivingHistoryPageCA = Loadable(lazyPage(() => import('views/search-engine-ca/by-giving-history')));\nconst SearchByGivingHistoryPageCAV2 = Loadable(lazyPage(() => import('views/search-engine-ca/by-giving-history-v2')));\nconst SearchByYearPageCA = Loadable(lazyPage(() => import('views/search-engine-ca/by-year')));\nconst SearchByYearPageCAV2 = Loadable(lazyPage(() => import('views/search-engine-ca/by-year-v2')));\nconst SearchByDeadlinePage = Loadable(lazyPage(() => import('views/search-engine/by-deadline')));\nconst FoundationProfileCanadian = Loadable(lazyPage(() => import('views/foundation-profile-ca')));\nconst FoundationProfileCanadianV2 = Loadable(lazyPage(() => import('views/foundation-profile-ca-v2')));\nconst SearchByInternacionalFundingPage = Loadable(lazyPage(() => import('views/search-engine/by-internacional-funding')));\nconst SearchByInternacionalFundingPageV2 = Loadable(lazyPage(() => import('views/search-engine/by-internacional-funding-v2')));\nconst ThankYouLetterPage = Loadable(lazyPage(() => import('views/document-generator/thank-you')));\nconst DocumentThankYouPage = Loadable(lazyPage(() => import('views/document-generator/document-thank-you')));\nconst DocumentThankYouFunderPage = Loadable(lazyPage(() => import('views/document-generator/document-thank-you/DocumentThankYou.FunderPage')));\nconst ImpactReportLetterPage = Loadable(lazyPage(() => import('views/document-generator/impact-report')));\nconst DocumentImpactReportPage = Loadable(lazyPage(() => import('views/document-generator/document-impact-report')));\nconst DocumentImpactReportFunderPage = Loadable(lazyPage(() => import('views/document-generator/document-impact-report/DocumentImpactReport.FunderPage')));\nconst DocumentOptimizationPage = Loadable(lazyPage(() => import('views/document-generator/common/document-optimization')));\nconst SearchByCustomPageV2 = Loadable(lazyPage(() => import('views/search-engine/by-custom-v2')));\n\n\n// ==============================|| MAIN ROUTING ||============================== //\n\nconst MainRoutes = {\n path: '/main',\n element: ,\n children: [\n {\n path: '/',\n element: \n },\n {\n path: '/dashboard/default',\n element: \n },\n {\n path: '/admin/manage-accounts',\n element: \n },\n {\n path: '/admin/manage-announcements',\n element: \n },\n {\n path: '/admin/manage-subscription-plans',\n element: \n },\n {\n path: '/admin/manage-plans',\n element: \n },\n {\n path: '/admin/create-account',\n element: \n },\n {\n path: '/admin/create-announcement',\n element: \n },\n {\n path: '/admin/update-announcement/:id',\n element: \n },\n {\n path: '/admin/create-subscription-plan',\n element: \n },\n {\n path: '/admin/manage-coupons',\n element: \n },\n {\n path: '/admin/manage-feedbacks',\n element: \n },\n {\n path: '/admin/manage-deadlines',\n element: \n },\n {\n path: '/admin/update-subscription-plan/:subscriptionPlanId',\n element: \n },\n {\n path: '/admin/update-account/:userId',\n element: \n },\n {\n path: '/admin/update-foundation-ca/:profileId',\n element: \n },\n {\n path: '/admin/update-foundation-us/:profileId',\n element: \n },\n {\n path: '/account/user-profile',\n element: ,\n children: [\n {\n index: true,\n element: ,\n },\n {\n path: '/profile-info',\n element: ,\n },\n {\n path: '/email-alert',\n element: ,\n },\n {\n path: '/signature',\n element: ,\n },\n {\n path: '/letter-head',\n element: ,\n },\n {\n path: \"/password-reset\",\n element: \n },\n ]\n },\n {\n path: '/account/additional-users',\n element: \n },\n {\n path: '/account/organization-profile',\n element: ,\n children: [\n {\n index: true,\n element: ,\n },\n {\n path: '/profile-info',\n element: ,\n },\n {\n path: '/additional-email',\n element: ,\n },\n {\n path: '/letter-head',\n element: ,\n }\n ]\n },\n {\n path: '/user-project/list',\n element: \n },\n {\n path: '/user-project/archive',\n element: \n },\n {\n path: '/search/by-giving-history',\n element: \n },\n {\n path: '/search/giving-history-v2',\n element: \n },\n {\n path: '/search/by-name',\n element: \n },\n {\n path: '/search/by-name-v2',\n element: \n },\n {\n path: '/search/by-director',\n element: \n },\n {\n path: '/search/by-director-v2',\n element: \n },\n {\n path: '/search/by-year',\n element: \n },\n {\n path: '/search/by-year-v2',\n element: \n },\n {\n path: '/search/by-rating',\n element: \n },\n\n {\n path: '/search/by-custom',\n element: \n },\n {\n path: '/search/by-custom-v2',\n element: \n },\n {\n path: '/project-budget/:userProjectId',\n element: \n },\n {\n path: '/foundation-profile/:profileId',\n element: \n },\n {\n path: '/foundation-profile-v2/:profileId',\n element: \n },\n {\n path: '/document-generator/inquiry',\n element: \n },\n {\n path: '/document-generator/proposal',\n element: \n },\n {\n path: '/document-generator/custom-letter',\n element: \n },\n {\n path: '/grant-secretary',\n element: \n },\n {\n path: '/new-grant-secretary',\n element: \n },\n {\n path: '/grant-secretary/preview-documents',\n element: \n },\n {\n path: '/new-grant-secretary/preview-documents',\n element: \n },\n {\n path: '/manage-funders',\n element: \n\n },\n // {\n // path: '/manage-funders/favorites',\n // element: \n // },\n // {\n // path: '/manage-funders/blocked-funders',\n // element: \n // },\n {\n path: '/manage-funders/custom-databases',\n element: \n },\n {\n path: '/manage-funders/custom-databases/import',\n element: \n },\n {\n path: '/custom-profile/:customItemId',\n element: \n },\n {\n path: '/custom-profile-v2/:customItemId',\n element: \n },\n {\n path: '/document-generator/document-inquiry',\n element: \n },\n {\n path: '/document-generator/document-inquiry/funder/:profileId',\n element: \n },\n {\n path: '/document-generator/document-proposal',\n element: \n },\n {\n path: '/document-generator/document-proposal/funder/:profileId',\n element: \n },\n {\n path: '/document-generator/document-custom',\n element: \n },\n {\n path: '/document-generator/document-custom/funder/:profileId',\n element: \n },\n {\n path: '/search/by-keyword',\n element: \n },\n {\n path: '/search/by-keyword-v2',\n element: \n },\n {\n path: '/search/name-ca',\n element: \n },\n {\n path: '/search/name-ca-v2',\n element: \n },\n {\n path: '/search/directors-ca',\n element: \n },\n {\n path: '/search/directors-ca-v2',\n element: \n },\n {\n path: '/search/giving-history-ca',\n element: \n },\n {\n path: '/search/giving-history-ca-v2',\n element: \n },\n {\n path: '/search/year-ca',\n element: \n },\n {\n path: '/search/year-ca-v2',\n element: \n },\n {\n path: '/search/by-deadline',\n element: \n },\n {\n path: '/search/by-international-funding',\n element: \n },\n {\n path: '/search/by-international-funding-v2',\n element: \n },\n {\n path: '/foundation-profile-ca/:profileId',\n element: \n },\n {\n path: '/foundation-profile-ca-v2/:profileId',\n element: \n },\n {\n path: '/document-generator/thank-you',\n element: \n },\n {\n path: '/document-generator/document-thank-you',\n element: \n },\n {\n path: '/document-generator/document-thank-you/funder/:profileId',\n element: \n },\n {\n path: '/document-generator/impact-report',\n element: \n },\n {\n path: '/document-generator/document-impact-report',\n element: \n },\n {\n path: '/document-generator/document-impact-report/funder/:profileId',\n element: \n },\n {\n path: '/document-generator/document-optimization',\n element: \n }\n ]\n};\n\nexport default MainRoutes;\n","import { Outlet } from 'react-router-dom';\nimport { useSelector, useDispatch } from \"react-redux\";\n\n// project imports\nimport Customization from '../Customization';\n\nimport Snackbar from '@mui/material/Snackbar';\nimport SweetAlert from 'react-bootstrap-sweetalert';\n\nimport { closeToaster, closeMessage } from \"store/Shared.Slice\";\nimport { useTranslation } from \"react-i18next\";\n\n\n// ==============================|| MINIMAL LAYOUT ||============================== //\n\nconst MinimalLayout = () => {\n\n const { message, toaster } = useSelector((state) => state.sharedState);\n const dispatch = useDispatch();\n const { t } = useTranslation();\n\n return (\n <>\n dispatch(closeToaster())}\n message={t(toaster.message)}\n />\n\n {message.isOpen && (\n dispatch(closeMessage())}\n onCancel={() => dispatch(closeMessage())}>\n {t(message.text)}\n \n )\n }\n \n \n >\n )\n};\n\nexport default MinimalLayout;\n","import { lazy } from 'react';\n\n// project imports\nimport Loadable from 'ui-component/Loadable';\nimport MinimalLayout from 'layout/MinimalLayout';\n\n\n// login option 3 routing\nconst AuthLogin3 = Loadable(lazy(() => import('views/pages/authentication/authentication3/Login3')));\nconst AuthRegister3 = Loadable(lazy(() => import('views/pages/authentication/authentication3/Register3')));\nconst PasswordRecovery = Loadable(lazy(() => import('views/pages/authentication/authentication3/PasswordRecovery')));\nconst PasswordReset = Loadable(lazy(() => import('views/pages/authentication/authentication3/PasswordReset')));\nconst SettingUpAccount = Loadable(lazy(() => import('views/pages/authentication/authentication3/SettingUpAccount')));\nconst ConfirmRegisterUser = Loadable(lazy(() => import('views/pages/authentication/authentication3/ConfirmRegisterUser')));\nconst PublicProfilePage = Loadable(lazy(() => import('views/pages/public-profile-page')));\n\n// ==============================|| AUTHENTICATION ROUTING ||============================== //\n\nconst AuthenticationRoutes = {\n path: '/',\n element: ,\n children: [\n {\n path: '/',\n element: \n },\n {\n path: '/register',\n element: \n },\n {\n path: '/password-recovery',\n element: \n },\n {\n path: '/password-reset/:userId/:token',\n element: \n },\n {\n path: '/setting-up-account/:userId/:token',\n element: \n },\n {\n path: '/confirm-register-user/:userId/:token',\n element: \n },\n {\n path: '/public-funder/:profileId',\n element: \n }\n ]\n};\n\nexport default AuthenticationRoutes;\n","import { useRoutes } from 'react-router-dom';\n\n// routes\nimport MainRoutes from './MainRoutes';\nimport AuthenticationRoutes from './AuthenticationRoutes';\nimport config from 'config';\n\n// ==============================|| ROUTING RENDER ||============================== //\n\nexport default function ThemeRoutes() {\n return useRoutes([AuthenticationRoutes, MainRoutes], config.basename);\n}\n","/**\n * Color intention that you want to used in your theme\n * @param {JsonObject} theme Theme customization object\n */\n\nexport default function themePalette(theme) {\n return {\n mode: theme?.customization?.navType,\n common: {\n black: theme.colors?.darkPaper\n },\n primary: {\n light: theme?.customization?.navType === 'dark' ? theme.colors?.darkPrimaryLight : theme.colors?.primaryLight,\n main: theme?.customization?.navType === 'dark' ? theme.colors?.darkPrimaryMain : theme.colors?.primaryMain,\n dark: theme?.customization?.navType === 'dark' ? theme.colors?.darkPrimaryDark : theme.colors?.primaryDark,\n 200: theme?.customization?.navType === 'dark' ? theme.colors?.darkPrimary200 : theme.colors?.primary200,\n 800: theme?.customization?.navType === 'dark' ? theme.colors?.darkPrimary800 : theme.colors?.primary800\n },\n secondary: {\n light: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondaryLight : theme.colors?.secondaryLight,\n main: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondaryMain : theme.colors?.secondaryMain,\n dark: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondaryDark : theme.colors?.secondaryDark,\n 200: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondary200 : theme.colors?.secondary200,\n 800: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondary800 : theme.colors?.secondary800\n },\n error: {\n light: theme.colors?.errorLight,\n main: theme.colors?.errorMain,\n dark: theme.colors?.errorDark\n },\n orange: {\n light: theme.colors?.orangeLight,\n main: theme.colors?.orangeMain,\n dark: theme.colors?.orangeDark\n },\n warning: {\n light: theme.colors?.warningLight,\n main: theme.colors?.warningMain,\n dark: theme.colors?.warningDark,\n 100: theme.colors?.warning100\n },\n success: {\n light: theme.colors?.successLight,\n 200: theme.colors?.success200,\n main: theme.colors?.successMain,\n dark: theme.colors?.successDark\n },\n grey: {\n 50: theme.colors?.grey50,\n 100: theme.colors?.grey100,\n 500: theme.darkTextSecondary,\n 600: theme.heading,\n 700: theme.darkTextPrimary,\n 900: theme.textDark\n },\n dark: {\n light: theme.colors?.darkTextPrimary,\n main: theme.colors?.darkLevel1,\n dark: theme.colors?.darkLevel2,\n 800: theme.colors?.darkBackground,\n 900: theme.colors?.darkPaper\n },\n text: {\n primary: theme.darkTextPrimary,\n secondary: theme.darkTextSecondary,\n dark: theme.textDark,\n mediumDark: theme.mediumDarkText,\n light: theme.lightText,\n hint: theme.colors?.grey100\n },\n background: {\n paper: theme.paper,\n paper2: theme.paper2,\n default: theme.backgroundDefault\n }\n };\n}\n","/**\n * Typography used in theme\n * @param {JsonObject} theme theme customization object\n */\n\nexport default function themeTypography(theme) {\n return {\n fontFamily: theme?.customization?.fontFamily,\n h6: {\n fontWeight: 500,\n color: theme.heading,\n fontSize: '0.75rem'\n },\n h5: {\n fontSize: '0.875rem',\n color: theme.heading,\n fontWeight: 500\n },\n h4: {\n fontSize: '1rem',\n color: theme.heading,\n fontWeight: 600\n },\n h3: {\n fontSize: '1.25rem',\n color: theme.heading,\n fontWeight: 600\n },\n h2: {\n fontSize: '1.5rem',\n color: theme.heading,\n fontWeight: 700\n },\n h1: {\n fontSize: '2.125rem',\n color: theme.heading,\n fontWeight: 700\n },\n subtitle1: {\n fontSize: '0.875rem',\n fontWeight: 500,\n color: theme?.customization?.navType === 'dark' ? theme.heading : theme.textDark\n },\n subtitle2: {\n fontSize: '0.75rem',\n fontWeight: 400,\n color: theme.darkTextSecondary\n },\n caption: {\n fontSize: '0.75rem',\n color: theme.darkTextSecondary,\n fontWeight: 400\n },\n body1: {\n fontSize: '0.875rem',\n fontWeight: 400,\n lineHeight: '1.334em'\n },\n body2: {\n letterSpacing: '0em',\n fontWeight: 400,\n lineHeight: '1.5em',\n color: theme.darkTextPrimary\n },\n button: {\n textTransform: 'capitalize'\n },\n customInput: {\n marginTop: 1,\n marginBottom: 1,\n '& > label': {\n top: 23,\n left: 0,\n color: theme.grey500,\n '&[data-shrink=\"false\"]': {\n top: 5\n }\n },\n '& > div > input': {\n padding: '30.5px 14px 11.5px'\n },\n '& legend': {\n display: 'none'\n },\n '& fieldset': {\n top: 0\n }\n },\n customAutocomplete: {\n marginTop: 1,\n marginBottom: 1,\n '& > label': {\n top: 23,\n left: 0,\n color: theme.grey500,\n '&[data-shrink=\"false\"]': {\n top: 5\n }\n },\n '& > div > div': {\n padding: '30.5px 14px 11.5px !important',\n },\n '& legend': {\n display: 'none'\n },\n '& fieldset': {\n top: 0\n },\n 'div > div': {\n height: '20px',\n marginTop: 0\n }\n },\n customAutocompleteSelect: {\n background: 'red',\n marginTop: 1,\n marginBottom: 1,\n '& > label': {\n top: 23,\n left: 0,\n color: theme.grey500,\n '&[data-shrink=\"false\"]': {\n top: 5\n }\n\n },\n '& > div > div': {\n padding: '30.5px 14px 11.5px !important'\n },\n '& legend': {\n display: 'none'\n },\n '& fieldset': {\n top: 0\n }\n },\n customCollapseExpand: {\n \".MuiButtonBase-root\": { \n backgroundColor: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondaryMain : theme.colors?.secondaryMain, \n marginRight: '5px', \n borderRadius: '10px', \n color: 'white', \n }, \n \".MuiButtonBase-root:hover\": { \n backgroundColor: theme?.customization?.navType === 'dark' ? theme.colors?.darkSecondaryMain : theme.colors?.secondaryMain,\n }\n },\n mainContent: {\n backgroundColor: theme.background,\n width: '100%',\n minHeight: 'calc(100vh - 88px)',\n flexGrow: 1,\n padding: '20px',\n marginTop: '88px',\n marginRight: '20px',\n borderRadius: `${theme?.customization?.borderRadius}px`\n },\n menuCaption: {\n fontSize: '0.875rem',\n fontWeight: 500,\n color: 'white',\n padding: '6px',\n textTransform: 'capitalize',\n marginTop: '10px'\n },\n subMenuCaption: {\n fontSize: '0.6875rem',\n fontWeight: 500,\n color: theme.darkTextSecondary,\n textTransform: 'capitalize'\n },\n commonAvatar: {\n cursor: 'pointer',\n borderRadius: '8px'\n },\n smallAvatar: {\n width: '22px',\n height: '22px',\n fontSize: '1rem'\n },\n mediumAvatar: {\n width: '34px',\n height: '34px',\n fontSize: '19'\n },\n largeAvatar: {\n width: '44px',\n height: '44px',\n fontSize: '1.5rem'\n },\n smallFeedback: {\n width: '22px',\n height: '22px',\n fontSize: '1rem'\n },\n mediumFeedback: {\n width: '29px',\n height: '29px',\n fontSize: '19'\n },\n largeFeedback: {\n width: '44px',\n height: '44px',\n fontSize: '1.5rem'\n },\n };\n}\n","import { alpha } from '@mui/material/styles';\n\nconst createCustomShadow = (theme, color) => {\n const transparent = alpha(color, 0.24);\n return {\n z1: `0 1px 2px 0 ${transparent}`,\n z8: `0 8px 16px 0 ${transparent}`,\n z12: `0 12px 24px 0 ${transparent} 0 10px 20px 0 ${transparent}`,\n z16: `0 0 3px 0 ${transparent} 0 14px 28px -5px ${transparent}`,\n z20: `0 0 3px 0 ${transparent} 0 18px 36px -5px ${transparent}`,\n z24: `0 0 6px 0 ${transparent} 0 21px 44px 0 ${transparent}`,\n\n primary: `0px 12px 14px 0px ${alpha(theme.colors?.primaryMain, 0.3)}`,\n secondary: `0px 12px 14px 0px ${alpha(theme.colors?.secondaryMain, 0.3)}`,\n orange: `0px 12px 14px 0px ${alpha(theme.colors?.orangeMain, 0.3)}`,\n success: `0px 12px 14px 0px ${alpha(theme.colors?.successMain, 0.3)}`,\n warning: `0px 12px 14px 0px ${alpha(theme.colors?.warningMain, 0.3)}`,\n error: `0px 12px 14px 0px ${alpha(theme.colors?.errorMain, 0.3)}`\n };\n};\n\nexport default function customShadows(navType, theme) {\n return navType === 'dark' ? createCustomShadow(theme, theme.colors?.darkLevel1) : createCustomShadow(theme, theme.colors?.grey600);\n}\n","import { createTheme } from '@mui/material/styles';\n\n// assets\nimport colors from 'assets/scss/_themes-vars.module.scss';\nimport theme1 from 'assets/scss/_theme1.module.scss';\nimport theme2 from 'assets/scss/_theme2.module.scss';\nimport theme3 from 'assets/scss/_theme3.module.scss';\nimport theme4 from 'assets/scss/_theme4.module.scss';\nimport theme5 from 'assets/scss/_theme5.module.scss';\nimport theme6 from 'assets/scss/_theme6.module.scss';\nimport theme7 from 'assets/scss/_theme7.module.scss';\nimport theme8 from 'assets/scss/_theme8.module.scss';\n\n// project imports\nimport componentStyleOverrides from './compStyleOverride';\nimport themePalette from './palette';\nimport themeTypography from './typography';\nimport customShadows from './shadows';\n\n/**\n * Represent theme style and structure as per Material-UI\n * @param {JsonObject} customization customization parameter object\n */\n\nexport const theme = (customization) => {\n let color;\n switch (customization.presetColor) {\n case 'theme1':\n color = theme1;\n break;\n case 'theme2':\n color = theme2;\n break;\n case 'theme3':\n color = theme3;\n break;\n case 'theme4':\n color = theme4;\n break;\n case 'theme5':\n color = theme5;\n break;\n case 'theme6':\n color = theme6;\n break;\n case 'theme7':\n color = theme7;\n break;\n case 'theme8':\n color = theme8;\n break;\n case 'default':\n default:\n color = colors;\n }\n\n const themeOption = {\n colors: color,\n heading: '',\n paper: '',\n backgroundDefault: '',\n background: '',\n darkTextPrimary: '',\n darkTextSecondary: '',\n textDark: '',\n menuSelected: '',\n menuSelectedBack: '',\n divider: '',\n customization\n };\n\n switch (customization.navType) {\n case 'dark':\n themeOption.paper = color.darkLevel2;\n themeOption.paper2 = color.darkBackground;\n themeOption.backgroundDefault = color.darkPaper;\n themeOption.background = color.darkBackground;\n themeOption.darkTextPrimary = color.darkTextPrimary;\n themeOption.darkTextSecondary = color.darkTextSecondary;\n themeOption.mediumDarkText = color.darkTextPrimary;\n themeOption.lightText = color.darkTextSecondary;\n themeOption.textDark = color.darkTextPrimary;\n themeOption.menuSelected = color.darkSecondaryMain;\n themeOption.menuSelectedBack = color.darkSecondaryMain + 15;\n themeOption.divider = color.darkTextPrimary;\n themeOption.heading = color.darkTextTitle;\n break;\n case 'light':\n default:\n themeOption.paper = color.paper;\n themeOption.paper2 = color.paper2;\n themeOption.backgroundDefault = color.paper;\n themeOption.background = color.primaryLight;\n themeOption.darkTextPrimary = color.grey700;\n themeOption.darkTextSecondary = color.grey500;\n themeOption.mediumDarkText = color.grey800;\n themeOption.lightText = color.grey700_orig;\n themeOption.textDark = color.grey900;\n themeOption.menuSelected = color.secondaryDark;\n themeOption.menuSelectedBack = color.secondaryLight;\n themeOption.divider = color.grey200;\n themeOption.heading = color.grey900;\n break;\n }\n\n const themeOptions = {\n direction: customization.rtlLayout ? 'rtl' : 'ltr',\n palette: themePalette(themeOption),\n mixins: {\n toolbar: {\n minHeight: '48px',\n padding: '16px',\n '@media (min-width: 600px)': {\n minHeight: '48px'\n }\n }\n },\n typography: themeTypography(themeOption),\n customShadows: customShadows(customization.navType, themeOption),\n breakpoints: {\n values: {\n xs: 0,\n sm: 600,\n md: 900,\n lg: 1200,\n xl: 1536,\n xxl: 1760,\n }\n }\n };\n\n const themes = createTheme(themeOptions);\n themes.components = componentStyleOverrides(themeOption);\n\n return themes;\n};\n\nexport default theme;\n","export default function componentStyleOverrides(theme) {\n const bgColor = theme?.customization?.navType === 'dark' ? theme.colors?.darkBackground : theme.colors?.grey50;\n return {\n MuiButton: {\n styleOverrides: {\n root: {\n fontWeight: 500,\n borderRadius: '4px'\n }\n },\n /*variants: \n [\n {\n props: { variant: 'contained', color: 'secondary' },\n style: {\n background: `linear-gradient(180deg, ${theme.colors.primaryMain} 0%, ${theme.colors.secondaryMain} 100%)`,\n color: 'white'\n },\n }\n ],*/\n },\n MuiPaper: {\n defaultProps: {\n elevation: 0\n },\n styleOverrides: {\n root: {\n backgroundImage: 'none'\n },\n rounded: {\n borderRadius: `${theme?.customization?.borderRadius}px`\n }\n }\n },\n MuiCardHeader: {\n styleOverrides: {\n root: {\n color: theme.colors?.textDark,\n //padding: '24px'\n paddingLeft: '20px',\n paddingTop: '15px',\n paddingBottom: '10px'\n },\n title: {\n fontSize: '1.125rem'\n }\n }\n },\n MuiCardContent: {\n styleOverrides: {\n root: {\n padding: '24px'\n }\n }\n },\n MuiCardActions: {\n styleOverrides: {\n root: {\n padding: '24px'\n }\n }\n },\n MuiAlert: {\n styleOverrides: {\n root: {\n alignItems: 'center'\n },\n outlined: {\n border: '1px dashed'\n }\n }\n },\n MuiListItemButton: {\n styleOverrides: {\n root: {\n color: theme.darkTextPrimary,\n paddingTop: '10px',\n paddingBottom: '10px',\n '&.Mui-selected': {\n color: theme.menuSelected,\n backgroundColor: theme.menuSelectedBack,\n '&:hover': {\n backgroundColor: theme.menuSelectedBack\n },\n '& .MuiListItemIcon-root': {\n color: theme.menuSelected\n }\n },\n '&:hover': {\n backgroundColor: theme.menuSelectedBack,\n color: theme.menuSelected,\n '& .MuiListItemIcon-root': {\n color: theme.menuSelected\n }\n }\n }\n }\n },\n MuiListItemIcon: {\n styleOverrides: {\n root: {\n color: theme.darkTextPrimary,\n minWidth: '36px'\n }\n }\n },\n MuiListItemText: {\n styleOverrides: {\n primary: {\n color: theme.textDark\n }\n }\n },\n MuiInputBase: {\n styleOverrides: {\n input: {\n color: theme.textDark,\n '&::placeholder': {\n color: theme.darkTextSecondary,\n fontSize: '0.875rem'\n }\n }\n }\n },\n MuiOutlinedInput: {\n styleOverrides: {\n root: {\n background: theme?.customization?.outlinedFilled ? bgColor : 'transparent',\n borderRadius: `${theme?.customization?.borderRadius}px`,\n '& .MuiOutlinedInput-notchedOutline': {\n borderColor: theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 28 : theme.colors?.grey400\n },\n '&:hover $notchedOutline': {\n borderColor: theme.colors?.primaryLight\n },\n '&.MuiInputBase-multiline': {\n padding: 1\n }\n },\n input: {\n fontWeight: 500,\n background: theme?.customization?.outlinedFilled ? bgColor : 'transparent',\n padding: '15.5px 14px',\n borderRadius: `${theme?.customization?.borderRadius}px`,\n '&.MuiInputBase-inputSizeSmall': {\n padding: '10px 14px',\n '&.MuiInputBase-inputAdornedStart': {\n paddingLeft: 0\n }\n }\n },\n inputAdornedStart: {\n paddingLeft: 4\n },\n notchedOutline: {\n borderRadius: `${theme?.customization?.borderRadius}px`\n }\n }\n },\n MuiSlider: {\n styleOverrides: {\n root: {\n '&.Mui-disabled': {\n color: theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 50 : theme.colors?.grey300\n }\n },\n mark: {\n backgroundColor: theme.paper,\n width: '4px'\n },\n valueLabel: {\n color: theme?.customization?.navType === 'dark' ? theme?.colors?.primaryMain : theme?.colors?.primaryLight\n }\n }\n },\n MuiAutocomplete: {\n styleOverrides: {\n root: {\n '& .MuiAutocomplete-tag': {\n background:\n theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 20 : theme.colors?.secondaryLight,\n borderRadius: 4,\n color: theme.textDark,\n '.MuiChip-deleteIcon': {\n color: theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 80 : theme.colors?.secondary200\n }\n }\n },\n popper: {\n borderRadius: `${theme?.customization?.borderRadius}px`,\n boxShadow: '0px 8px 10px -5px rgb(0 0 0 / 20%), 0px 16px 24px 2px rgb(0 0 0 / 14%), 0px 6px 30px 5px rgb(0 0 0 / 12%)'\n }\n }\n },\n MuiDivider: {\n styleOverrides: {\n root: {\n borderColor: theme.divider,\n opacity: theme?.customization?.navType === 'dark' ? 0.2 : 1\n }\n }\n },\n MuiSelect: {\n styleOverrides: {\n select: {\n '&:focus': {\n backgroundColor: 'transparent'\n }\n }\n }\n },\n MuiCheckbox: {\n styleOverrides: {\n root: {\n /** checked not prop\n *\"&.Mui-checked\": {\n * fontSize: \"28px\"\n *}\n */\n }\n }\n },\n MuiAvatar: {\n styleOverrides: {\n root: {\n color: theme?.customization?.navType === 'dark' ? theme.colors?.darkLevel1 : theme.colors?.primaryDark,\n background: theme?.customization?.navType === 'dark' ? theme.darkTextPrimary : theme.colors?.primary200\n }\n }\n },\n MuiChip: {\n styleOverrides: {\n root: {\n '&.MuiChip-deletable .MuiChip-deleteIcon': {\n color: 'inherit'\n }\n }\n }\n },\n MuiTimelineContent: {\n styleOverrides: {\n root: {\n color: theme.textDark,\n fontSize: '16px'\n }\n }\n },\n MuiTreeItem: {\n styleOverrides: {\n label: {\n marginTop: 14,\n marginBottom: 14\n }\n }\n },\n MuiTimelineDot: {\n styleOverrides: {\n root: {\n boxShadow: 'none'\n }\n }\n },\n MuiInternalDateTimePickerTabs: {\n styleOverrides: {\n tabs: {\n backgroundColor: theme?.customization?.navType === 'dark' ? theme.colors?.darkPaper : theme.colors?.primaryLight,\n '& .MuiTabs-flexContainer': {\n borderColor:\n theme?.customization?.navType === 'dark' ? theme.colors?.darkTextPrimary + 20 : theme.colors?.primary200\n },\n '& .MuiTab-root': {\n color: theme?.customization?.navType === 'dark' ? theme.colors?.darkTextSecondary : theme.colors?.grey900\n },\n '& .MuiTabs-indicator': {\n backgroundColor: theme.colors?.primaryDark\n },\n '& .Mui-selected': {\n color: theme.colors?.primaryDark\n }\n }\n }\n },\n MuiTabs: {\n styleOverrides: {\n flexContainer: {\n borderBottom: '1px solid',\n borderColor: theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 20 : theme.colors?.grey200\n }\n }\n },\n MuiDialog: {\n styleOverrides: {\n paper: {\n padding: '12px 0 12px 0'\n }\n }\n },\n MuiTableCell: {\n styleOverrides: {\n root: {\n borderColor: theme?.customization?.navType === 'dark' ? theme.colors.darkTextPrimary + 15 : theme.colors?.grey200,\n '&.MuiTableCell-head': {\n fontSize: '0.875rem',\n color: theme.heading,\n fontWeight: 500\n }\n }\n }\n },\n MuiTooltip: {\n styleOverrides: {\n tooltip: {\n color: theme?.customization?.navType === 'dark' ? theme.colors?.darkLevel1 : theme.paper,\n background: theme?.customization?.navType === 'dark' ? theme.colors?.grey50 : theme.colors?.grey700\n }\n }\n },\n MuiDialogTitle: {\n styleOverrides: {\n root: {\n fontSize: '1.25rem'\n }\n }\n }\n };\n}\n","import PropTypes from 'prop-types';\nimport { useState, useEffect } from 'react';\nimport { useSelector } from 'react-redux';\n\n// third-party\nimport { IntlProvider } from 'react-intl';\n\n// load locales files\nconst loadLocaleData = (locale) => {\n switch (locale) {\n case 'fr':\n return import('utils/locales/fr.json');\n case 'ro':\n return import('utils/locales/ro.json');\n case 'zh':\n return import('utils/locales/zh.json');\n default:\n return import('utils/locales/en.json');\n }\n};\n\n// ==============================|| LOCALIZATION ||============================== //\n\nconst Locales = ({ children }) => {\n const customization = useSelector((state) => state.customization);\n const [messages, setMessages] = useState();\n\n useEffect(() => {\n loadLocaleData(customization.locale).then((d) => {\n setMessages(d.default);\n });\n }, [customization.locale]);\n\n return (\n <>\n {messages && (\n \n {children}\n \n )}\n >\n );\n};\n\nLocales.propTypes = {\n children: PropTypes.node\n};\n\nexport default Locales;\n","import { useState, useEffect } from 'react';\nimport { useSelector } from 'react-redux';\n\n// material-ui\nimport { Alert, Button, Fade, Grow, IconButton, Slide } from '@mui/material';\nimport MuiSnackbar from '@mui/material/Snackbar';\n\n// assets\nimport CloseIcon from '@mui/icons-material/Close';\n\n// animation function\nfunction TransitionSlideLeft(props) {\n return ;\n}\n\nfunction TransitionSlideUp(props) {\n return ;\n}\n\nfunction TransitionSlideRight(props) {\n return ;\n}\n\nfunction TransitionSlideDown(props) {\n return ;\n}\n\nfunction GrowTransition(props) {\n return ;\n}\n\n// animation options\nconst transition = {\n SlideLeft: TransitionSlideLeft,\n SlideUp: TransitionSlideUp,\n SlideRight: TransitionSlideRight,\n SlideDown: TransitionSlideDown,\n Grow: GrowTransition,\n Fade\n};\n\n// ==============================|| SNACKBAR ||============================== //\n\nconst Snackbar = () => {\n const [open, setOpen] = useState(false);\n const snackbarInitial = useSelector((state) => state.snackbar);\n\n const handleClose = (reason) => {\n if (reason === 'clickaway') {\n return;\n }\n setOpen(false);\n };\n\n useEffect(() => {\n setOpen(snackbarInitial.open);\n }, [snackbarInitial.action, snackbarInitial.open]);\n\n return (\n <>\n {/* default snackbar */}\n {snackbarInitial.variant === 'default' && (\n handleClose(v)}\n message={snackbarInitial.message}\n TransitionComponent={transition[snackbarInitial.transition]}\n action={\n <>\n handleClose()}>\n UNDO\n \n handleClose()}>\n \n \n >\n }\n />\n )}\n\n {/* alert snackbar */}\n {snackbarInitial.variant === 'alert' && (\n handleClose(v)}\n >\n \n {snackbarInitial.actionButton !== false && (\n handleClose()}>\n UNDO\n \n )}\n {snackbarInitial.close !== false && (\n handleClose()}>\n \n \n )}\n >\n }\n >\n {snackbarInitial.message}\n \n \n )}\n >\n );\n};\n\nexport default Snackbar;\n","// action - state management\nimport { LOGIN, LOGOUT, REGISTER } from './actions';\n\n// ==============================|| ACCOUNT REDUCER ||============================== //\n\nconst accountReducer = (state, action) => {\n switch (action.type) {\n case REGISTER: {\n const { user } = action.payload;\n return {\n ...state,\n user\n };\n }\n case LOGIN: {\n const { user } = action.payload;\n return {\n ...state,\n isLoggedIn: true,\n isInitialized: true,\n user\n };\n }\n case LOGOUT: {\n return {\n ...state,\n isInitialized: true,\n isLoggedIn: false,\n user: null\n };\n }\n default: {\n return { ...state };\n }\n }\n};\n\nexport default accountReducer;\n","import PropTypes from 'prop-types';\nimport { createContext, useEffect, useReducer } from 'react';\n\n// third-party\nimport firebase from 'firebase/app';\nimport 'firebase/auth';\n\n// action - state management\nimport { LOGIN, LOGOUT } from 'store/actions';\nimport accountReducer from 'store/accountReducer';\n\n// project imports\nimport Loader from 'ui-component/Loader';\nimport config from 'config';\n\n// firebase initialize\nif (!firebase.apps.length) {\n firebase.initializeApp(config.firebase);\n}\n\n// const\nconst initialState = {\n isLoggedIn: false,\n isInitialized: false,\n user: null\n};\n\n// ==============================|| FIREBASE CONTEXT & PROVIDER ||============================== //\n\nconst FirebaseContext = createContext(null);\n\nexport const FirebaseProvider = ({ children }) => {\n const [state, dispatch] = useReducer(accountReducer, initialState);\n\n useEffect(\n () =>\n firebase.auth().onAuthStateChanged((user) => {\n if (user) {\n dispatch({\n type: LOGIN,\n payload: {\n isLoggedIn: true,\n user: {\n id: user.uid,\n email: user.email,\n name: user.displayName || 'Betty'\n }\n }\n });\n } else {\n dispatch({\n type: LOGOUT\n });\n }\n }),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [dispatch]\n );\n\n const firebaseEmailPasswordSignIn = (email, password) => firebase.auth().signInWithEmailAndPassword(email, password);\n\n const firebaseGoogleSignIn = () => {\n const provider = new firebase.auth.GoogleAuthProvider();\n\n return firebase.auth().signInWithPopup(provider);\n };\n\n const firebaseRegister = async (email, password) => firebase.auth().createUserWithEmailAndPassword(email, password);\n\n const logout = () => firebase.auth().signOut();\n\n const resetPassword = async (email) => {\n await firebase.auth().sendPasswordResetEmail(email);\n };\n\n const updateProfile = () => {};\n if (state.isInitialized !== undefined && !state.isInitialized) {\n return ;\n }\n\n return (\n {},\n firebaseGoogleSignIn,\n logout,\n resetPassword,\n updateProfile\n }}\n >\n {children}\n \n );\n};\n\nFirebaseProvider.propTypes = {\n children: PropTypes.node\n};\n\nexport default FirebaseContext;\n","import { createContext, useEffect } from 'react';\nimport LogRocket from 'logrocket';\nimport { useSelector } from 'react-redux';\n\nconst LogRocketContext = createContext();\n\nexport const LogRocketProvider = ({ children }) => {\n const { userToken } = useSelector(state => state.sharedState);\n\n useEffect(() => {\n if(process.env.NODE_ENV === 'development' || userToken == null) return;\n\n LogRocket.init('f5sb9k/grant-advance-frontend');\n \n LogRocket.identify(userToken.Id, {\n name: userToken.UserName,\n email: userToken.email,\n });\n }, [userToken]);\n\n return (\n \n {children}\n \n );\n};\n","import { useState, useEffect } from \"react\";\nimport { useDispatch } from \"react-redux\";\nimport {\n useTheme,\n useMediaQuery,\n Box,\n Stack,\n Typography,\n} from \"@mui/material\";\nimport Cookies from 'universal-cookie';\n\nimport Logo from 'assets/images/ga-logo-sm.png';\nimport LoadingButton from '@mui/lab/LoadingButton';\nimport FormControlWrapper from \"components/FormControlWrapper\";\nimport CheckboxWrapper from \"components/CheckboxWrapper\";\nimport { useTranslation } from \"react-i18next\";\nimport { useLoginMutation } from \"Services/LoginServices\";\n\nimport { showErrorToaster } from \"store/Shared.Slice\";\n\nconst setCookieVal = (key, value) => {\n const cookies = new Cookies();\n cookies.set(key, value, { maxAge: 1000000, path: '/', sameSite: true });\n}\n\nconst LoginForm = ({\n message,\n onLoginSuccess,\n onLoginFailed,\n}) => {\n\n const { t } = useTranslation();\n const theme = useTheme();\n const matchDownMD = useMediaQuery(theme.breakpoints.down('md'));\n const dispatch = useDispatch();\n\n const [userLogin, { isLoading }] = useLoginMutation();\n\n const [checked, setChecked] = useState(true);\n const [formInput, setFormInput] = useState({\n userNameOrEmail: {\n value: '',\n error: ''\n },\n password: {\n value: '',\n error: ''\n }\n });\n\n const userNameOrEmail = formInput.userNameOrEmail;\n const password = formInput.password;\n\n const handleFormInputChange = (field, value) => {\n if (checked) {\n if (field === 'userNameOrEmail') {\n setCookieVal('userNameOrEmail', value);\n }\n if (field === 'password') {\n setCookieVal('password', value);\n }\n }\n \n setCookieVal('remember', checked);\n setFormInput((input) => ({...input, [field]: { value, error: '' }}));\n }\n\n const handleRemember = (rememberChecked) => {\n\n if (rememberChecked === false) {\n setCookieVal('userNameOrEmail', '');\n setCookieVal('password', '');\n };\n \n setCookieVal('remember', rememberChecked);\n \n setChecked(rememberChecked);\n }\n\n const handleLogin = async (event) => {\n event.preventDefault();\n\n try {\n const model = {\n userNameOrEmail: userNameOrEmail.value,\n password: password.value,\n };\n const response = await userLogin(model).unwrap();\n localStorage.setItem(\"token\", response.token);\n\n onLoginSuccess?.();\n\n } catch (error) {\n \n onLoginFailed?.();\n \n // Model Errors\n if (error.data?.errors != null) {\n dispatch(showErrorToaster(t(\"errors.model_error\")));\n Object.entries(error.data?.errors).forEach(([field, errors]) => { \n formInput[field].error = errors[0];\n });\n }\n \n // Bad Request\n if (error.data?.message != null) {\n dispatch(showErrorToaster(error.data?.message));\n }\n }\n };\n\n useEffect(() => {\n const cookies = new Cookies();\n\n if (cookies.get('remember')) {\n \n const rememberVal = cookies.get('remember');\n \n if (rememberVal === 'true') {\n handleFormInputChange('userNameOrEmail', cookies.get('userNameOrEmail'));\n handleFormInputChange('password', cookies.get('password'));\n }\n \n handleRemember(rememberVal === 'true');\n }\n \n // eslint-disable-next-line react-hooks/exhaustive-deps \n }, []);\n\n return (\n <>\n \n \n \n Hi there\n \n \n {message}\n \n \n \n >\n )\n}\n\nexport default LoginForm;","import { useDispatch } from \"react-redux\";\nimport { styled } from \"@mui/material\";\nimport { useSelector } from \"react-redux\";\nimport LoginForm from \"views/shared/LoginForm\";\nimport { Dialog } from \"@mui/material\";\n\nimport { setLoginDialogOpen } from 'store/Shared.Slice';\n\nconst StyledDialog = styled(Dialog)(({ theme }) => ({\n '& .MuiDialog-paper': {\n maxWidth: 500,\n padding: theme.spacing(4),\n },\n}));\n\nconst LoginPopup = () => {\n const dispatch = useDispatch();\n const { openLoginDialog } = useSelector(state => state.sharedState);\n\n return (\n \n {\n dispatch(setLoginDialogOpen(false));\n window.location.reload()\n }}\n />\n \n )\n}\n\nexport default LoginPopup;","import { useSelector } from 'react-redux';\n\nimport { ThemeProvider } from '@mui/material/styles';\nimport { CssBaseline, StyledEngineProvider } from '@mui/material';\n\n// routing\nimport Routes from 'routes';\n\n// defaultTheme\nimport themes from 'themes';\n\n// project imports\nimport Locales from 'ui-component/Locales';\n// import NavigationScroll from 'layout/NavigationScroll';\n// import RTLLayout from 'ui-component/RTLLayout';\nimport Snackbar from 'ui-component/extended/Snackbar';\n\n// auth provider\nimport { FirebaseProvider } from 'contexts/FirebaseContext';\n// import { JWTProvider } from 'contexts/JWTContext';\n// import { Auth0Provider } from 'contexts/Auth0Context';\n\n//analytics provider\nimport { LogRocketProvider } from 'contexts/LogRocketContext';\n\nimport LoginPopup from 'views/LoginPopup';\n\n// ==============================|| APP ||============================== //\n\nconst App = () => {\n const customization = useSelector((state) => state.customization);\n\n return (\n \n \n \n {/* RTL layout */}\n {/* */}\n \n \n \n \n \n \n \n \n \n \n \n {/* */}\n \n \n );\n};\n\nexport default App;\n","export const TRANSLATIONS_EN_CA = {\n labels: {\n user_name: 'Username',\n password: 'Password',\n reset_password: 'New Password',\n reset_password_confirm: 'Confirm Password',\n login: 'Login',\n sign_up: \"Sign Up\",\n forgot_password: \"Forgot Password?\",\n go_back: \"Go Back\",\n organization: \"Organization\",\n phone: \"Phone\",\n first_name: \"First Name\",\n last_name: \"Last Name\",\n address: \"Address\",\n select: \"Select\",\n country: \"Country\",\n complementary_address: \"Address (line 2)\",\n postal_code: \"Zip Code\",\n city: \"City\",\n state: \"State\",\n stateOrProvince: \"State/Province\",\n billing: \"Billing\",\n use_same_address: \"Use Same Address\",\n loading: \"Loading...\",\n register: \"Register\",\n message: \"Message\",\n error: \"Error\",\n welcome_back: \"Hi, Welcome back\",\n enter_credentials: \"Enter your credentials to continue\",\n dont_have_account: \"Don't have account?\",\n remember_me: \"Remember me\",\n sign_in: \"Sign in\",\n already_have_account: \"Already have an account?\",\n subscription_plan: \"Subscription Plan\",\n country_billing: \"Country Billing\",\n password_recovery: \"Password recovery\",\n password_reset: \"Password Reset\",\n setting_up_account: \"Setting up account\",\n current_password: \"Current Password\",\n new_password: \"New Password\",\n confirm_password: \"Confirm Password\",\n confirming_account: \"Confirming account\",\n accounts_created: \"Accounts created\",\n of: 'of',\n search: \"Search\",\n clear: \"Clear\",\n status: \"Status\",\n actions: \"Actions\",\n add_new_user: \"Add new user\",\n edit_user: \"Edit user\",\n additional_emails: \"Additional E-mails\",\n organization_letterhead: \"Organization Letterhead\",\n company_information: \"Organization Information\",\n company_organization: \"Organization\",\n created_at: \"Created at\",\n change_main_email: \"Change main email address\",\n main_email: \"Main e-mail address\",\n emails_created: \"E-mails created\",\n add_new_additional_email: \"Add new additional e-mail\",\n new_email_address: \"New e-mail address\",\n add_digital_letterhead: \"Add digital letterhead\",\n select_header_style: \"Select letter style\",\n header_only: \"Header only\",\n header_and_footer: \"Header and Footer\",\n email_alert: \"E-mail alert\",\n signature: \"Signature\",\n user_letterhead: \"User Letterhead\",\n user_information: \"User Information\",\n position: \"Position\",\n enable_disable_notifications: \"Enable / Disable notifications\",\n user_name_or_email: \"Username or e-mail\",\n avg_grants_Annually: \"Average Grants Annually\",\n avg_grant_size: \"Average Grant Size\",\n total_assets: \"Total Assets\",\n summary: \"Summary\",\n notes_taken: \"Notes taken\",\n last_report: \"Last report\",\n not_informed: \"Not informed\",\n loading_profile_summary: \"Loading Profile Summary\",\n amount: \"Amount\",\n grants: \"Grants\",\n funders: \"Funders\",\n funders_selected: \"Funders Selected\",\n show_grant_details: \"Show grant details\",\n profile_summary: \"Profile Summary\",\n view_profile: \"View Profile\",\n year: \"Year\",\n avg_grants: \"Avg Grants\",\n recipient: \"Recipient\",\n territories: \"Territories\",\n giving_int: {\n prefix: \"National Giving Interest of\",\n state: \"State\",\n territories: \"Territories\"\n },\n foundation_name: \"Funder Name\",\n import: \"Import\",\n organization_name: \"Organization Name\",\n contact_name: \"Contact Name\",\n state_or_province: \"State / Province\",\n info: \"Info\",\n add_funders_to_project: \"Add Funders to Project\",\n export_to_excel: \"Export to Excel\",\n block_funders: \"Block Funders\",\n province: \"Province\",\n databases: \"Databases\",\n search_result: 'Search Result',\n year: \"Year\",\n amount: \"Amount\",\n location: \"Location\",\n purpose: \"Purpose\",\n recipient: \"Recipient\",\n category: \"Category\",\n sector: \"Sector\",\n not_provided_by: \"Not provided by\",\n keyword: \"Keyword\",\n my_list:\"My List\",\n shared_list:\"Shared List\",\n favorite_name:\"Favorite Name\",\n select_favorite:\"Select a Favorite\",\n close:\"Close\",\n confirm:\"Confirm\",\n description:\"Description\",\n show_saved_search:\"Show saved search\",\n load_selected_saved_search:\"Load Selected Saved Search\",\n rename:\"Rename\",\n remove_save_search:\"Remove saved search\",\n updated_at: \"Updated at\",\n recipient:\"Recipient\",\n year:\"Year\",\n amt:\"AMT\",\n create_user_account:\"Create User Project\",\n edit_user_account: \"Edit User Project\",\n name_project:\"Name of Project\",\n total_project_cost:\"Total Project Cost\",\n start_date:\"Start Date\",\n end_date: \"End Date\",\n delete_project:\"Delete Project\",\n select_director_from_list: \"Select director from the list\",\n enter_custom_director: \"Can't find a director? Enter a custom one instead\",\n select_director: \"Select Director\",\n enter_director_name: \"Enter Director's Name\",\n salutation: \"Salutation\",\n ask_amount: \"Ask Amount\",\n total_amount: \"Total Amount\",\n application_information: \"Application Information\",\n instruction: \"Instructions\",\n restriction: \"Restrictions\",\n deadline: \"Deadline\",\n contact: \"Contact\",\n largest: \"Largest\",\n average: \"Average\",\n median: \"Median\",\n search_result: 'Search Result',\n user_name_or_email: \"Username or e-mail\",\n remove_funder: \"Remove Funders\",\n foundation_exists_other_projects: \"This Funder exists in other projects within your organization\",\n remove_foundations_other_projects: \"Remove funders from other projects\",\n application_info: \"Application Info\",\n this_action_will_remove: \"This action will remove\",\n from_this_project: \"from this project\",\n hide_customized_funders: \"Hide customized funders\",\n project_funders: \"Project Funders\",\n custom_letter: \"Custom Letter\",\n change_project: \"Change Project\",\n return_grant_secretary: \"Return to Grant Secretary\",\n impact_report_letter: \"Impact Report Letter\",\n project_funders_master_document: \"Project Funders / Master Document\",\n master_document: \"Master Document\",\n letter_of_inquiry: \"Letter of Inquiry\",\n proposal: \"Proposal\",\n thank_you_letter: \"Thank you letter\",\n custom_document: \"Custom Document\",\n qualify: \"Qualify\",\n favorites: \"Favorites\",\n favorite_funders: \"Favorite Funders\",\n close: \"Close\",\n add_funders_to_project: \"Add Funders to Project\",\n select_one_or_more_projects: \"Select one or more projects\",\n block_funders: \"Block Funders\",\n print_funder_page: \"Print Funder Page\",\n move_to_previous_funder: \"Move to the previous Funder\",\n move_to_next_funder: \"Move to the next Funder\",\n remove_this_funder_from_qualified: \"Remove this funder from qualified status and exclude from the favorite list.\",\n mark_funder_as_qualified: \"Mark this funder as qualified.\",\n block_funder: \"Block Funder\",\n export_funders_to_excel: \"Export Funders to Excel\",\n funder_name: \"Funder Name\",\n prev: \"Prev.\",\n next: \"Next\",\n previous: \"Previous\",\n visit_website: \"Visit Website\",\n notes: \"Notes\",\n add_note: \"Add Note\",\n company: \"Company\",\n email: \"Email\",\n website: \"Website\",\n contact_infos: \"Contact Informations\",\n other_infos: \"Other Informations\",\n help_center:\"Help Center\",\n profile_settings:\"Profile Settings\",\n hi:\"Hi\",\n user_profile:\"User Profile\",\n logout:\"Logout\"\n },\n errors: {\n model_error: 'Check for errors and try again',\n general_error: 'An error has occurred',\n invalid_token: 'Invalid token',\n confirming_account_error: \"Sorry, there's a problem activating your account\",\n invalid_image: \"Invalid image\",\n inform_crop_area: \"Size Image to conform to required dimensions\",\n funder_not_found: \"Funder not found\",\n file_list_error: \"File list error\",\n funder_not_found: \"Funder not found\",\n select_at_least_one_funder: \"Please select at least one funder before continue\",\n select_one_or_more_funders_delete: \"Select one or more funders to delete\",\n select_one_or_more_funders_block: \"Select one or more funders to block\",\n },\n success: {\n logout_success: 'User logout successfully',\n copied_to_cliboard: 'Copied to clipboard',\n },\n messages: {\n password_recovery_message: \"To have a new password sent to you enter the username and email address you used to register\",\n inform_new_password_message: \"Please enter your new password\",\n setting_up_account_message: \"To activate your account, please enter the password and confirm\",\n confirming_account_wait: \"Please wait while we confirm your account\",\n first_letterhead_message: \"- Letterhead should be approximately 700 x 200 px.\",\n second_letterhead_message: \"- Supported formats are .GIF, .png, .jpeg and .jpg.\",\n third_letterhead_message: \"- Your organization's letterhead will appear at the top of all documents.\",\n check_organization_settings_message: \"Please check your organization profile letterhead settings or contact support.\",\n funders_not_selected_message: 'Please select at least one funder before continuing',\n you_must_select_state: \"You must select a State to enable the City filter.\",\n deselect_all_counties: \"Deselect all counties to enable the City filter.\",\n select_one_favorite_list: 'Please select at least one favorite list or create a new one',\n create_new_favorite_list:\"Create new Favorite List\",\n add_funders_favorite_list: \"Add Funder(s) to Favorites\",\n saved_search_load_successfully:\"Saved search loaded successfully\",\n save_search:\"Save search\",\n delete_project:\"Are you sure you want to delete this project?\",\n deselect_all_counties: \"Deselect all counties to enable the City filter.\",\n funders_not_selected_message: 'Please select at least one funder before continuing',\n are_you_sure: \"Are you sure?\",\n this_action_will_remove_document_funder: \"This action will remove the document for this funder\",\n this_action_will_remove_master_document: \"This action will remove this Master Document\",\n want_to_remove_the_funder: \"Do you want to remove the Funder from this list?\",\n this_will_remove_customized_documents: \"This will remove {{documents}} customized document(s) and return the funder to the Master List. To remove funders(s) permanently delete them from the Master List.\",\n remove_the_funders_from_the_projects: \"Removes the Funders from the projects you selected from the current project.\",\n select_in_dropdown_example: \"e.g. If you select a project in the dropown and it has 3 Funders, 'a', 'b' and 'c' and the project you are working on also has 'a', 'b', 'c', these will be removed from the working project.\",\n this_will_remove_funders_from_this_project: \"This action will remove {{funders}} Funder(s) from this project.\",\n },\n user_menu: {\n profile: 'Profile',\n logout: 'Logout'\n },\n prompt: {\n areYouSure: \"Are you sure?\",\n confirmRemove: \"Confirm Remove\",\n },\n side_menu: {\n administration: 'Administration',\n manage_account: 'Manage Account',\n manage_announcement: 'Announcement',\n manage_subscription_plan: 'Subscription Plan',\n manage_coupons: 'Coupons',\n manage_feedbacks: 'Feedbacks',\n manage_deadlines: 'Deadlines',\n manage_plans: 'Manage Plans',\n account: 'Account',\n user_profile: 'User Profile',\n additional_users: 'Additional Users',\n organization_profile: 'Organization Profile',\n project_manager: 'Project Manager',\n project_list: 'Projects',\n project_archive: 'Archived Projects',\n search_engine: \"Search Engine\",\n search_engine_canada: \"Search Engine - CA (beta)\",\n by_giving_history: 'By Giving History',\n by_name: 'By Name',\n by_director: 'By Director',\n by_year: 'By Year',\n by_deadline: 'By Deadline',\n by_rating: 'By Rating',\n by_custom: 'By Custom',\n document_generator: 'Document Generator',\n inquiry: 'Inquiry',\n proposal: 'Proposal',\n budget: 'Budget',\n custom_letter: 'Custom Letter',\n grant_secretary: 'Grant Secretary - Print',\n manage_funders: 'Manage Funders',\n favorites: 'Favorites',\n blocked_funders: 'Blocked',\n custom_databases: 'Custom Databases',\n by_keyword: 'By Keywords',\n by_international_funding: 'International Funding (PRO)',\n thank_you: 'Thank You',\n impact_report: 'Impact Report',\n previous: \"Previous\"\n },\n buttons: {\n create_account: \"Create account\",\n send: \"Send\",\n reset_password: \"Reset Password\",\n add_user: \"Add User\",\n insert_user: \"Insert User\",\n save_changes: \"Save Changes\",\n update_profile: \"Update Profile\",\n add_email: \"Add E-mail\",\n select_header_file: \"Select header file\",\n select_footer_file: \"Select footer file\",\n update_account: \"Update Account\",\n add_to_favorites: \"Add to Favorites\",\n more: \"More\",\n clear_search: \"Clear Search\",\n search: \"Search\",\n advanced_search: \"Advanced Search\",\n create: \"Create\",\n create_favorite_list: \"Create Favorite List\",\n add: \"Add\",\n confirm: \"Confirm\",\n update:\"Update\",\n confirm_delete:\"Confirm Delete\",\n confirm_remove: \"Confirm Remove\",\n next: \"Next\",\n prev: \"Prev.\",\n add_funder: \"Add Funder\",\n \n },\n input_fields: {\n press_enter: \"Press Enter to add keywords\",\n },\n accountCreated: \"Account created successfully\",\n accountDisabled: \"This account is disabled. For more details contact the administrator.\",\n accountDisabledSuccess: \"Account disabled successfully\",\n accountEnabledSuccess: \"Account enabled successfully\",\n accountNotActivated: \"Your account is not active. Please check your email to activate your account\",\n accountUpdatedSuccess: \"Account updated successfully\",\n additionalEmailNotFound: \"Additional email not found\",\n additionalEmailRemovedSuccess: \"Additional email removed successfully\",\n additionalEmailSavedSuccess: \"Additional email saved successfully\",\n additionalUserInsertSuccess: \"Additional user added successfully\",\n additionalUserUpdateSuccess: \"Additional user updated successfully\",\n addressBillingRequired: \"Address billing is required\",\n alertNotificationSavedSuccess: \"Alert notification saved with success\",\n cityBillingRequired: \"The city billing is required\",\n complementaryAddressBillingRequired: \"Complementary address billing is required\",\n confirmRegisterUserSuccess: \"Thank you for confirming your email\",\n countryBillingRequired: \"The country billing is required\",\n countryNotFound: \"Country not found\",\n emailExists: \"Email address already exists\",\n errorRegistration: \"Model is empty\",\n expirationDateSavedSuccess: \"Expiration date saved with success\",\n footerImageRequired: \"The footer image is required\",\n imageHeightLength: \"Invalid image height\",\n imageWidthLength: \"Invalid image width\",\n invalidEmailAddress: \"Invalid email address\",\n invalidLetterType: \"Invalid letter type\",\n invalidPhoneNumber: \"Invalid phone number\",\n invalidSubscriptionPlan: \"Invalid subscription plan\",\n invalidUserRole: \"Invalid user role\",\n letterheadSavedSuccess: \"Letterhead saved with success\",\n licenseExpired: \"Your license has expired. For more details please contact the administrator\",\n licenseNotFound: \"No sufficient licenses are available. Please contact support@grantadvance.com\",\n loginFailed: \"Invalid user name or password\",\n masterOnly: \"Only master users have access to this resource\",\n notEnoughLicense: \"Your organization don't have any available license. If you want to add licenses please click here to purchase additional licenses\",\n notificationExists: \"Notification already exists\",\n notificationNotFound: \"Notification not found\",\n notificationTypeNotFound: \"Notification type not found\",\n organizationDisabled: \"This organization is disabled. For more details contact the administrator.\",\n organizationMainAddressUpdatedSuccess: \"Organization main address updated with success\",\n organizationNotFound: \"Organization not found\",\n organizationProfileSavedSuccess: \"Organization profile saved with success\",\n passwordModified: \"Password modified successfully\",\n passwordRecovery: \"Please check your email to reset your password.\",\n passwordReset: \"Password reset successfully\",\n postalCodeBillingRequired: \"The postal code is required\",\n profileNotFound: \"Profile not found\",\n provinceOrStateBillingRequired: \"The state is required\",\n provinceOrStateNotFound: \"State not found\",\n sendActivationLinkSuccess: \"Activation e-mail has been send successfully\",\n sendPasswordResetSuccess: \"Password reset e-mail has been send successfully\",\n sendSetupPasswordSuccess: \"Password setup e-mail has been send successfully\",\n separatedLicenceExpirationDateError: \"Expiration date of separated licenses cannot be greater than the expiration date of the main license\",\n settingUpAccountSuccess: \"Your account has been activated successfully. You can now login\",\n signatureSavedSuccess: \"Signature saved successfully\",\n subscriptionPlanNotFound: \"Subscription plan not found\",\n userLogoutSuccess: \"User logout successfully\",\n userNameExists: \"This User name is already taken\",\n userNotAllowed: \"User not allowed to login\",\n userNotFound: \"User not found\",\n userProfileSavedSuccess: \"User profile saved with success\",\n wrongCurrentPassword: \"Incorrect current password\",\n additionalUsersRequired: \"The additional users is required\",\n addressRequired: \"The address is required\",\n amountDaysRequired: \"The amount days is required\",\n amountLicensesRequired: \"The amount of licenses is required\",\n amountMonthsRequired: \"The amount of months is required\",\n amountYearsRequired: \"The amount of years is required\",\n planAmountRequired: \"The plan amount is required\",\n billingAddressLine2Required: \"The complementary billing address is required\",\n billingAddressRequired: \"The billing address is required\",\n billingCityRequired: \"The billing city is required\",\n billingCountryRequired: \"The country billing is required\",\n billingPostalCodeRequired: \"The zip code is required\",\n billingProvinceOrStateRequired: \"The billing state is required\",\n cityRequired: \"The city is required\",\n companyNameRequired: \"The company name is required\",\n businessEinRequired: \"BN/EIN is required\",\n compareConfirmPassword: \"The password and confirmation password do not match.\",\n complementaryAddressRequired: \"The complementary address is required\",\n confirmPasswordRequired: \"The confirmation password is required\",\n countryRequired: \"The country is required\",\n displayPlanRequired: \"The display plan is required\",\n emailRequired: \"The email is required\",\n firstNameRequired: \"The first name is required\",\n headerImageRequired: \"The header image is required\",\n invalidEmail: \"This email is invalid\",\n invalidRole: \"Invalid user role\",\n lastNameRequired: \"The last name is required\",\n licenseAmountRange: \"The number of licenses must be greater than zero\",\n licenseRequired: \"The license is required\",\n newPasswordRequired: \"The new password is required\",\n notificationTypeRequired: \"The Notification type is required\",\n oldPasswordRequired: \"The old password is required\",\n organizationIdRequired: \"The organization id is required\",\n passwordLength: \"The password must be at least 6 and at max 20 characters long.\",\n passwordRequired: \"The password is required\",\n phoneRequired: \"The phone number is required\",\n planDescriptionRequired: \"The plan description is required\",\n postalCodeRequired: \"The zip code is required\",\n provinceOrStateRequired: \"The state is required\",\n roleRequired: \"The role is required\",\n signatureRequired: \"The signature is required\",\n subscriptionPlanNameRequired: \"The subscription plan is required\",\n tokenRequired: \"The token is required\",\n userIdRequired: \"UserId is required\",\n userNameRequired: \"The login e-mail is required\",\n planNameRequired: \"Internal plan name is required\",\n customLetterRequired: \"The custom letter is required\",\n customLetterSavedSuccess: \"Custom letter saved with success\",\n customTagDeleteSuccess: \"Custom tag removed successfully\",\n customTagInsertSuccess: \"Custom tag created successfully\",\n customTagNotFound: \"Custom tag not found\",\n customTagUpdateSuccess: \"Custom tag updated successfully\",\n documentStateInsertSuccess: \"Document state created successfully\",\n inquiryLetterRequired: \"The inquiry letter is required\",\n inquiryLetterSavedSuccess: \"Inquiry letter saved with success\",\n proposalLetterRequired: \"The proposal letter is required\",\n proposalLetterSavedSuccess: \"Proposal letter saved with success\",\n userProjectRequired: \"The user project is required\",\n customDocumentTypeRequired: \"The document type is required\",\n documentAmountRequired: \"The amount is required\",\n documentFlaggedRequired: \"The date is required\",\n documentStateRequired: \"The document state is required\",\n tagDescriptionRequired: \"The tag description is required\",\n tagNameRequired: \"The tag name is required\",\n blockedFundersDeleteAllSuccess: \"All funders unblocked successfully\",\n blockedFundersDeleteSuccess: \"Funder unblocked successfully\",\n blockedFundersInsertSuccess: \"Funder blocked successfully\",\n blockedFundersNotFound: \"Blocked Funder not found\",\n customDatabaseDeleteSuccess: \"Custom database successfully removed\",\n customDatabaseFieldsMapRequired: \"Please. Configure all the required fields before continue\",\n customDatabaseNotFound: \"Custom database not found\",\n customDatabaseUserFieldsEmpty: \"The list of configuration fields is empty\",\n favoriteDeleteSuccess: \"Favorite deleted successfully\",\n favoriteDuplicateSuccess: \"Favorite duplicated successfully\",\n favoriteFundersDeleteSuccess: \"Favorite funder deleted successfully\",\n favoriteFundersInsertSuccess: \"{{funders}} funders added to {{favCount}} favorites list\",\n favoriteFundersNotFound: \"Favorite funder not found\",\n favoriteFundersUpdateSuccess: \"Favorite funder update successfully\",\n favoriteInsertSuccess: \"Favorite created successfully\",\n favoriteNotFound: \"Favorite not found\",\n favoriteUpdateSuccess: \"Favorite update successfully\",\n fundersListEmpty: \"The funders list is empty\",\n noteDeleteSuccess: \"Note deleted successfully\",\n noteInsertSuccess: \"Note created successfully\",\n noteNotFound: \"Note not found\",\n noteUpdateSuccess: \"Note updated successfully\",\n noteRequired: \"Note is required before attaching any documents\",\n notificationDateRequired: \"The notification date is required\",\n emailListRequired: \"Select the e-mail\",\n customDatabaseFileRequired: \"The excel file is required\",\n favoriteNameRequired: \"The favorite name is required\",\n favoriteRequired: \"The favorite is required\",\n foundationRequired: \"The funder is required\",\n jsonUserFieldsMapRequired: \"Please. Configure all the required fields before continue\",\n labelTypeRequired: \"The type of label is required\",\n letterTypeRequired: \"Select the type of document for print\",\n noteDescriptionRequired: \"The description is required\",\n noteTitleRequired: \"The title is required\",\n bundleInsertSuccess: \"Bundle created successfully\",\n bundleNotFound: \"Bundle not found\",\n bundleTaskCount: \"Enter at least one task\",\n bundleTaskNotFound: \"One or more task cannot be found\",\n flagDateRequired: \"The date is required\",\n flagUpdateSuccess: \"Flag updated successfully\",\n projectBudgetCategoryDescriptionRequired: \"The category description is required\",\n projectBudgetDeleteSuccess: \"Budget removed successfully\",\n projectBudgetDescriptionExists: \"This description already exists\",\n projectBudgetInsertSuccess: \"Budget added successfully\",\n projectBudgetNotFound: \"Budget not found\",\n projectBudgetResetSuccess: \"Budget reseted successfully\",\n projectBudgetUpdateSuccess: \"Budget updated successfully\",\n projectEndDateRequired: \"The end date is required\",\n projectFundersDeleteSuccess: \"Project funders removed successfully\",\n projectFundersEmpty: \"Please select at least one funder before continuing\",\n projectFundersInsertSuccess: \"{{funderAmount}} funders added to {{projectName}}\",\n projectStartDateRequired: \"The start date is required\",\n taskDeleteSuccess: \"Task removed successfully\",\n taskEditSuccess: \"Task updated successfully\",\n taskInsertSuccess: \"Task created successfully\",\n taskListEmpty: \"The task list is empty\",\n taskNotFound: \"Task not found\",\n userProjectArchivedSuccess: \"User project archived successfully\",\n userProjectDeleteSuccess: \"User project deleted successfully\",\n userProjectEndDateRequired: \"The end date is required\",\n userProjectInsertSuccess: \"User project created successfully\",\n userProjectListEmpty: \"Select one or more projects\",\n userProjectNotFound: \"Project not found\",\n userProjectStartDateInvalid: \"The start date is invalid\",\n userProjectStartDateRequired: \"The start date is required\",\n userProjectUnarchivedSuccess: \"User project unarchived successfully\",\n userProjectUpdateSuccess: \"User project updated successfully\",\n budgetTypeInvalid: \"The budget type is invalid\",\n bundleDescriptionRequired: \"The bundle description is required\",\n bundleNameRequired: \"The bundle name is required\",\n bundleTaskRequired: \"The task list is required\",\n flagAmountInvalid: \"The amount is invalid\",\n flagAmountRequired: \"The amount is required\",\n flagStatusRequired: \"The status is required\",\n foundationNameRequired: \"The funder name is required\",\n foundationSourceTypeRequired: \"The funder source is required\",\n profileIdRequired: \"The profile is required\",\n projectBudgetAmountRequired: \"The budget amount is required\",\n projectBudgetDescriptionRequired: \"The budget description is required\",\n projectCostInvalid: \"The project cost is invalid\",\n projectCostRequired: \"The project cost is required\",\n projectDescriptionRequired: \"The project description is required\",\n projectNameRequired: \"The project name is required\",\n projectStatusInvalid: \"The project status is invalid\",\n taskDescriptionRequired: \"The task description is required\",\n taskNameRequired: \"The task name is required\",\n foundationInsertSuccess: \"Funder added successfully\",\n savedSearchDeleteSuccess: \"Search deleted successfully\",\n savedSearchDescriptionExists: \"This description already exists\",\n savedSearchInsertSuccess: \"Search added successfully\",\n savedSearchNotFound: \"Saved search not found\",\n savedSearchTypeInvalid: \"The saved search type is invalid\",\n savedSearchUpdateSuccess: \"Search updated successfully\",\n descriptionRequired: \"The description is required\",\n jsonFieldsRequired: \"The search field is required\",\n searchTypeRequired: \"The search type is required\",\n userProjectCompleted: \"This Project is marked as completed\",\n sendOnlineApplicationSuccess: \"Online application message successfully sent\",\n sendSuggestionSuccess: \"Suggestion successfully sent\",\n urlRequired: \"The url is required\",\n fundersRemovedSuccess: \"Removed {{fundersRemoved}} from other projects\",\n noteSubjectRequired: \"The subject is required\",\n accountDeleted: \"This account was deleted. Contact the administrator\",\n userRemovedSuccess: \"Account removed successfully\",\n userNameOrEmailRequired: \"The User or e-mail name is required\",\n fieldRequired: \"This field is required\",\n pickupNewPassword: \"Please pick up new password\",\n passwordMinCharacter: \"Please enter at least {{minimumCharaters}} characters\",\n enterSameValueAgain: \"Please enter the same value again\",\n feedbackSubmitted: \"Feedback submitted successfully\",\n feedbackInvalidGrantSize: \"The grant size is invalid or too big\",\n feedbackReviewUpdated: \"Feedback review updated\",\n announcementTitleRequired: \"The announcement title is required\",\n announcementDescriptionRequired: \"The announcement description is required\",\n announcementReleaseDateRequired: \"The announcement release date is required\",\n announcementReleaseDateInvalid: \"Past dates are not allowed for the Release date\",\n announcementTypeRequired: \"The announcement type is required\",\n announcementNotFound: \"Announcement not found\",\n announcementInsertSuccess: \"Announcement added successfully\",\n announcementUpdateSuccess: \"Announcement updated successfully\",\n announcementDeleteSuccess: \"Announcement deleted successfully\",\n funderDisqualifiedSuccess: \"Funder disqualified successfully\",\n funderQualifiedSuccess: \"Funder qualified successfully\",\n funderPausedSuccess: \"Funder qualification successfully paused\",\n couponNameRequired: \"The coupon name is required\",\n couponCodeRequired: \"The coupon code is required\",\n couponCodeFormatInvalid: \"The coupon code is invalid\",\n codeLengthInvalid: \"Maximum of 15 characters\",\n couponExpirationDateRequired: \"The coupon expiration date is required\",\n couponExpirationMaxValue: \"The date cannot be more than 6 months from today\",\n couponExpirationDateInvalid: \"Invalid expiration date\",\n couponSubscriptionPlanRequired: \"The coupon subscription plan is required\",\n couponExtraMonthsAmountInvalid: \"The extra month only allow number 1 to 99\",\n couponDiscountAmountInvalid: \"The discount only allow number 1 to 90\",\n couponCodeAlreadyExist: \"The coupon code has already been redeemed\",\n couponSubscriptionNotFound: \"The subscription plan not found\",\n couponNotFound: \"Coupon not found\",\n couponSelectType: \"Please choose between Extra Time or Discount\",\n couponInsertSuccess: \"Coupon added succesfully\",\n couponUpdateSuccess: \"Coupon updated succesfully\",\n couponDeleteSuccess: \"Coupon deleted successfully\",\n couponPauseUpdateSuccess: \"Coupon updated successfully\",\n deadlineEINRequired: \"The EIN is required\",\n deadlineFoundationNameRequired: \"The funder name is required\",\n deadlineCategoryRequired: \"The category is required\",\n deadlineURLRequired: \"The deadline URL is required\",\n deadlineCountryRequired: \"The country is required\",\n deadlineDateInvalid: \"Only allow future dates\",\n deadlineAmountToobig: \"The grant amount too big\",\n deadlineImportSuccess: \"{{fileName}} imported successfully\",\n deadlineImportSuccessWithWarning: \"The file was imported successfully. However, some items have invalid data. Please update them accordingly\",\n deadlineUpdateSuccess: \"Deadline updated successfully\",\n deadlineDeleteSuccess: \"Deadline deleted successfully\",\n deadlineRemovePopupMessage: \"This action will remove this dealine\",\n deadlineReviewCorrectInformation: \"Please review and correct the information\",\n deadlineInvalidFoundationDataField: \"The provided funder data contains an invalid entry for the {{invalidData}} field.\",\n deadlineInvalidFoundationDataFields: \"The provided funder data contains invalid entries for the following fields: {{invalidData}}.\",\n deadlineImportFilePrompt: \"Do you want to import this file?\",\n thankYouLetterSavedSuccess: \"Thank you letter saved with success\",\n impactReportLetterSavedSuccess: \"Impact report letter saved with success\",\n historyTypeRequired: \"The history type is required\",\n startDateRequired: \"Start Date is required\",\n startDateInvalid: \"Please select a date that is later than today\",\n dateMin: \"Please select a date higher than today\",\n referralSubmitted: \"Referral submitted successfully. Refer Another Charity\",\n templateApplying: \"Applying please wait...\",\n templateApplyWarning: \"Applying this may take a few minutes to complete\",\n historyTimeline: {\n fuderAdded: \"Funder added on project\",\n funderRemoved: \"Funder removed on project\",\n noteAdded: \"Note added\",\n foundationProfileView: \"Funder profile viewed on project\",\n customDoc: \"Customized document\",\n masterDoc: \"Master document\",\n createdOnProject: \"created on project\",\n deletedOnProject: \"deleted on project\",\n statusUpdated: \"Status updated to\",\n onProject: \"on project\"\n },\n referralNameCharityRequired: \"Name of charity is required\",\n referralNameContactRequired: \"Name of contact is required\",\n};\n","import i18n from \"i18next\";\nimport { initReactI18next } from \"react-i18next\";\nimport LanguageDetector from \"i18next-browser-languagedetector\";\n \nimport { TRANSLATIONS_EN_CA } from './en-CA/translations';\nimport { TRANSLATIONS_EN_US } from \"./en-US/translations\";\nimport { TRANSLATIONS_ES_MX } from \"./es-MX/translations\";\nimport { TRANSLATIONS_FR_CA } from \"./fr-CA/translations\";\n\nconst lang = localStorage.getItem('i18nextLng');\n\ni18n\n .use(LanguageDetector)\n .use(initReactI18next)\n .init({\n lng: \"en-CA\",\n resources: {\n \"en-CA\": {\n translation: TRANSLATIONS_EN_CA\n },\n \"en-US\": {\n translation: TRANSLATIONS_EN_US\n },\n \"es-MX\": {\n translation: TRANSLATIONS_ES_MX\n },\n \"fr-CA\": {\n translation: TRANSLATIONS_FR_CA\n },\n \n }\n });\n \n if (lang) {\n i18n.changeLanguage(lang); \n }\n\n//i18n.changeLanguage(\"fr-CA\");\n//i18n.changeLanguage(\"es-MX\");","export const TRANSLATIONS_EN_US = {\n labels: {\n user_name: 'Username',\n password: 'Password',\n reset_password: 'New Password',\n reset_password_confirm: 'Confirm Password',\n login: 'Login',\n sign_up: \"Sign Up\",\n forgot_password: \"Forgot Password?\",\n go_back: \"Go Back\",\n organization: \"Organization\",\n phone: \"Phone\",\n first_name: \"First Name\",\n last_name: \"Last Name\",\n address: \"Address\",\n select: \"Select\",\n country: \"Country\",\n complementary_address: \"Address (line 2)\",\n postal_code: \"Zip Code\",\n city: \"City\",\n state: \"State\",\n stateOrProvince: \"State/Province\",\n billing: \"Billing\",\n use_same_address: \"Use Same Address\",\n loading: \"Loading...\",\n register: \"Register\",\n message: \"Message\",\n error: \"Error\",\n welcome_back: \"Hi, Welcome back\",\n enter_credentials: \"Enter your credentials to continue\",\n dont_have_account: \"Don't have account?\",\n remember_me: \"Remember me\",\n sign_in: \"Sign in\",\n already_have_account: \"Already have an account?\",\n subscription_plan: \"Subscription Plan\",\n country_billing: \"Country Billing\",\n password_recovery: \"Password recovery\",\n password_reset: \"Password Reset\",\n setting_up_account: \"Setting up account\",\n current_password: \"Current Password\",\n new_password: \"New Password\",\n confirm_password: \"Confirm Password\",\n confirming_account: \"Confirming account\",\n accounts_created: \"Accounts created\",\n of: 'of',\n search: \"Search\",\n status: \"Status\",\n actions: \"Actions\",\n add_new_user: \"Add new user\",\n edit_user: \"Edit user\",\n additional_emails: \"Additional E-mails\",\n organization_letterhead: \"Organization Letterhead\",\n company_information: \"Organization Information\",\n company_organization: \"Organization\",\n created_at: \"Created at\",\n change_main_email: \"Change main email address\",\n main_email: \"Main e-mail address\",\n emails_created: \"E-mails created\",\n add_new_additional_email: \"Add new additional e-mail\",\n new_email_address: \"New e-mail address\",\n add_digital_letterhead: \"Add digital letterhead\",\n select_header_style: \"Select letter style\",\n header_only: \"Header only\",\n header_and_footer: \"Header and Footer\",\n email_alert: \"E-mail alert\",\n signature: \"Signature\",\n user_letterhead: \"User Letterhead\",\n user_information: \"User Information\",\n position: \"Position\",\n enable_disable_notifications: \"Enable / Disable notifications\",\n user_name_or_email: \"Username or e-mail\",\n avg_grants_Annually: \"Average Grants Annually\",\n avg_grant_size: \"Average Grant Size\",\n total_assets: \"Total Assets\",\n summary: \"Summary\",\n notes_taken: \"Notes taken\",\n last_report: \"Last report\",\n not_informed: \"Not informed\",\n loading_profile_summary: \"Loading Profile Summary\",\n amount: \"Amount\",\n grants: \"Grants\",\n funders: \"Funders\",\n funders_selected: \"Funders Selected\",\n show_grant_details: \"Show grant details\",\n profile_summary: \"Profile Summary\",\n view_profile: \"View Profile\",\n year: \"Year\",\n avg_grants: \"Avg Grants\",\n recipient: \"Recipient\",\n territories: \"Territories\",\n giving_int: {\n prefix: \"National Giving Interest of\",\n state: \"State\",\n territories: \"Territories\"\n },\n foundation_name: \"Funder Name\",\n import: \"Import\",\n year: \"Year\",\n amount: \"Amount\",\n location: \"Location\",\n purpose: \"Purpose\",\n recipient: \"Recipient\",\n category: \"Category\",\n sector: \"Sector\",\n not_provided_by: \"Not provided by\",\n keyword: \"Keyword\",\n my_list:\"My List\",\n shared_list:\"Shared List\",\n favorite_name:\"Favorite Name\",\n select_favorite:\"Select a Favorite\",\n close:\"Close\",\n confirm:\"Confirm\",\n description:\"Description\",\n show_saved_search:\"Show saved search\",\n load_selected_saved_search:\"Load Selected Saved Search\",\n rename:\"Rename\",\n remove_save_search:\"Remove saved search\",\n updated_at: \"Updated at\",\n recipient:\"Recipient\",\n year:\"Year\",\n amt:\"AMT\",\n create_user_account:\"Create User Project\",\n edit_user_account:\"Edit User Project\",\n name_project:\"Name of Project\",\n total_project_cost:\"Total Project Cost\",\n start_date:\"Start Date\",\n end_date: \"End Date\",\n select_director_from_list: \"Select director from the list\",\n enter_custom_director: \"Can't find a director? Enter a custom one instead\",\n enter_director_name: \"Enter Director's Name\",\n select_director: \"Select Director\",\n salutation: \"Salutation\",\n ask_amount: \"Ask Amount\",\n total_amount: \"Total Amount\",\n application_information: \"Application Information\",\n instruction: \"Instructions\",\n restriction: \"Restrictions\",\n deadline: \"Deadline\",\n contact: \"Contact\",\n delete_project:\"Delete Project\",\n user_name_or_email: \"Username or e-mail\",\n remove_funder: \"Remove Funders\",\n foundation_exists_other_projects: \"This funder exists in other projects within your organization\",\n remove_foundations_other_projects: \"Remove funders from other projects\",\n application_info: \"Application Info\",\n average: \"Average\",\n median: \"Median\",\n largest: \"Largest\",\n this_action_will_remove: \"This action will remove\",\n from_this_project: \"from this project\",\n hide_customized_funders: \"Hide customized funders\",\n project_funders: \"Project Funders\",\n custom_letter: \"Custom Letter\",\n change_project: \"Change Project\",\n return_grant_secretary: \"Return to Grant Secretary\",\n impact_report_letter: \"Impact Report Letter\",\n project_funders_master_document: \"Project Funders / Master Document\",\n master_document: \"Master Document\",\n letter_of_inquiry: \"Letter of Inquiry\",\n proposal: \"Proposal\",\n thank_you_letter: \"Thank you letter\",\n custom_document: \"Custom Document\",\n qualify: \"Qualify\",\n favorites: \"Favorites\",\n favorite_funders: \"Favorite Funders\",\n close: \"Close\",\n add_funders_to_project: \"Add Funders to Project\",\n select_one_or_more_projects: \"Select one or more projects\",\n block_funders: \"Block Funders\",\n print_funder_page: \"Print Funder Page\",\n move_to_previous_funder: \"Move to the previous Funder\",\n move_to_next_funder: \"Move to the next Funder\",\n remove_this_funder_from_qualified: \"Remove this funder from qualified status and exclude from the favorite list.\",\n mark_funder_as_qualified: \"Mark this funder as qualified.\",\n block_funder: \"Block Funder\",\n export_funders_to_excel: \"Export funders to Excel\",\n funder_name: \"Funder Name\",\n prev: \"Prev.\",\n next: \"Next\",\n previous: \"Previous\",\n visit_website: \"Visit Website\",\n notes: \"Notes\",\n add_note: \"Add Note\",\n company: \"Company\",\n email: \"Email\",\n website: \"Website\",\n contact_infos: \"Contact Informations\",\n other_infos: \"Other Informations\",\n help_center:\"Help Center\",\n profile_settings:\"Profile Settings\",\n hi:\"Hi\",\n user_profile:\"User Profile\",\n logout:\"Logout\"\n },\n errors: {\n model_error: 'Check for errors and try again',\n general_error: 'An error has occurred',\n invalid_token: 'Invalid token',\n confirming_account_error: \"Sorry, there's a problem activating your account\",\n invalid_image: \"Invalid image\",\n inform_crop_area: \"Size Image to conform to required dimensions\",\n funder_not_found: \"Funder not found\",\n select_at_least_one_funder: \"Please select at least one funder before continue\",\n select_one_or_more_funders_delete: \"Select one or more funders to delete\",\n select_one_or_more_funders_block: \"Select one or more funders to block\",\n },\n success: {\n logout_success: 'User logout successfully',\n copied_to_cliboard: 'Copied to clipboard',\n },\n messages: {\n password_recovery_message: \"To have a new password sent to you enter the username and email address you used to register\",\n inform_new_password_message: \"Please enter your new password\",\n setting_up_account_message: \"To activate your account, please enter the password and confirm\",\n confirming_account_wait: \"Please wait while we confirm your account\",\n first_letterhead_message: \"- Letterhead should be approximately 700 x 200 px.\",\n second_letterhead_message: \"- Supported formats are .GIF, .png, .jpeg and .jpg.\",\n third_letterhead_message: \"- Your organization's letterhead will appear at the top of all documents.\",\n funders_not_selected_message: 'Please select at least one funder before continuing',\n select_one_favorite_list: 'Please select at least one favorite list or create a new one',\n create_new_favorite_list:\"Create new Favorite List\",\n add_funders_favorite_list: \"Add Funder(s) to Favorites\",\n delete_project:\"Are you sure you want to delete this project?\",\n check_organization_settings_message: \"Please check your organization profile letterhead settings or contact support.\",\n funders_not_selected_message: 'Please select at least one funder before continuing',\n are_you_sure: \"Are you sure?\",\n this_action_will_remove_document_funder: \"This action will remove the document for this funder\",\n this_action_will_remove_master_document: \"This action will remove this Master Document\",\n want_to_remove_the_funder: \"Do you want to remove the funder from this list?\",\n this_will_remove_customized_documents: \"This will remove {{documents}} customized document(s) and return the funder to the Master List. To remove funders(s) permanently delete them from the Master List.\",\n remove_the_funders_from_the_projects: \"Removes the Funders from the projects you selected from the current project.\",\n select_in_dropdown_example: \"e.g. If you select a project in the dropown and it has 3 funders, 'a', 'b' and 'c' and the project you are working on also has 'a', 'b', 'c', these will be removed from the working project.\",\n this_will_remove_funders_from_this_project: \"This action will remove {{funders}} funder(s) from this project.\",\n },\n user_menu: {\n profile: 'Profile',\n logout: 'Logout'\n },\n prompt: {\n areYouSure: \"Are you sure?\",\n confirmRemove: \"Confirm Remove\",\n },\n side_menu: {\n administration: 'Administration',\n manage_account: 'Manage Account',\n manage_announcement: 'Announcement',\n manage_subscription_plan: 'Subscription Plan',\n manage_coupons: 'Coupons',\n manage_feedbacks: 'Feedbacks',\n manage_deadlines: 'Deadlines',\n manage_plans: 'Manage Plans',\n account: 'Account',\n user_profile: 'User Profile',\n additional_users: 'Additional Users',\n organization_profile: 'Organization Profile',\n project_manager: 'Project Manager',\n project_list: 'Projects',\n project_archive: 'Archived Projects',\n search_engine: \"Search Engine\",\n search_engine_canada: \"Search Engine - CA (beta)\",\n by_giving_history: 'By Giving History',\n by_name: 'By Name',\n by_director: 'By Director',\n by_year: 'By Year',\n by_deadline: 'By Deadline',\n by_rating: 'By Rating',\n by_custom: 'By Custom',\n document_generator: 'Document Generator',\n inquiry: 'Inquiry',\n proposal: 'Proposal',\n budget: 'Budget',\n custom_letter: 'Custom Letter',\n grant_secretary: 'Grant Secretary - Print',\n manage_funders: 'Manage Funders',\n favorites: 'Favorites',\n blocked_funders: 'Blocked',\n custom_databases: 'Custom Databases',\n by_keyword: 'By Keywords',\n by_international_funding: 'International Funding (PRO)',\n thank_you: 'Thank You',\n impact_report: 'Impact Report',\n previous: \"Previous\"\n },\n buttons: {\n create_account: \"Create account\",\n send: \"Send\",\n reset_password: \"Reset Password\",\n add_user: \"Add User\",\n insert_user: \"Insert User\",\n save_changes: \"Save Changes\",\n update_profile: \"Update Profile\",\n add_email: \"Add E-mail\",\n select_header_file: \"Select header file\",\n select_footer_file: \"Select footer file\",\n update_account: \"Update Account\",\n create: \"Create\",\n create_favorite_list: \"Create Favorite List\",\n add: \"Add\",\n confirm: \"Confirm\",\n confirm_delete:\"Confirm Delete\",\n confirm_remove: \"Confirm Remove\",\n next: \"Next\",\n prev: \"Prev.\",\n add_funder: \"Add Funder\",\n \n },\n input_fields: {\n press_enter: \"Press Enter to add keywords\",\n },\n accountCreated: \"Account created successfully\",\n accountDisabled: \"This account is disabled. For more details contact the administrator.\",\n accountDisabledSuccess: \"Account disabled successfully\",\n accountEnabledSuccess: \"Account enabled successfully\",\n accountNotActivated: \"Your account is not active. Please check your email to activate your account\",\n accountUpdatedSuccess: \"Account updated successfully\",\n additionalEmailNotFound: \"Additional email not found\",\n additionalEmailRemovedSuccess: \"Additional email removed successfully\",\n additionalEmailSavedSuccess: \"Additional email saved successfully\",\n additionalUserInsertSuccess: \"Additional user added successfully\",\n additionalUserUpdateSuccess: \"Additional user updated successfully\",\n addressBillingRequired: \"Address billing is required\",\n alertNotificationSavedSuccess: \"Alert notification saved with success\",\n cityBillingRequired: \"The city billing is required\",\n complementaryAddressBillingRequired: \"Complementary address billing is required\",\n confirmRegisterUserSuccess: \"Thank you for confirming your email\",\n countryBillingRequired: \"The country billing is required\",\n countryNotFound: \"Country not found\",\n emailExists: \"Email address already exists\",\n errorRegistration: \"Model is empty\",\n expirationDateSavedSuccess: \"Expiration date saved with success\",\n footerImageRequired: \"The footer image is required\",\n imageHeightLength: \"Invalid image height\",\n imageWidthLength: \"Invalid image width\",\n invalidEmailAddress: \"Invalid email address\",\n invalidLetterType: \"Invalid letter type\",\n invalidPhoneNumber: \"Invalid phone number\",\n invalidSubscriptionPlan: \"Invalid subscription plan\",\n invalidUserRole: \"Invalid user role\",\n letterheadSavedSuccess: \"Letterhead saved with success\",\n licenseExpired: \"Your license has expired. For more details please contact the administrator\",\n licenseNotFound: \"No sufficient licenses are available. Please contact support@grantadvance.com\",\n loginFailed: \"Invalid user name or password\",\n masterOnly: \"Only master users have access to this resource\",\n notEnoughLicense: \"Your organization don't have any available license. If you want to add licenses please click here to purchase additional licenses\",\n notificationExists: \"Notification already exists\",\n notificationNotFound: \"Notification not found\",\n funderQualifiedSuccess: \"Funder qualified successfully\",\n funderDisqualifiedSuccess: \"Funder disqualified successfully\",\n funderPausedSuccess: \"Funder qualification successfully paused\",\n notificationTypeNotFound: \"Notification type not found\",\n organizationDisabled: \"This organization is disabled. For more details contact the administrator.\",\n organizationMainAddressUpdatedSuccess: \"Organization main address updated with success\",\n organizationNotFound: \"Organization not found\",\n organizationProfileSavedSuccess: \"Organization profile saved with success\",\n passwordModified: \"Password modified successfully\",\n passwordRecovery: \"Please check your email to reset your password.\",\n passwordReset: \"Password reset successfully\",\n postalCodeBillingRequired: \"The zip code is required\",\n profileNotFound: \"Profile not found\",\n provinceOrStateBillingRequired: \"The state is required\",\n help_center:\"Help Center\",\n profile_settings:\"Profile Settings\",\n hi:\"Hi\",\n user_profile:\"User Profile\",\n logout:\"Logout\",\n provinceOrStateNotFound: \"State not found\",\n sendActivationLinkSuccess: \"Activation e-mail has been send successfully\",\n sendPasswordResetSuccess: \"Password reset e-mail has been send successfully\",\n sendSetupPasswordSuccess: \"Password setup e-mail has been send successfully\",\n separatedLicenceExpirationDateError: \"Expiration date of separated licenses cannot be greater than the expiration date of the main license\",\n settingUpAccountSuccess: \"Your account has been activated successfully. You can now login\",\n signatureSavedSuccess: \"Signature saved successfully\",\n subscriptionPlanNotFound: \"Subscription plan not found\",\n userLogoutSuccess: \"User logout successfully\",\n userNameExists: \"This User name is already taken\",\n userNotAllowed: \"User not allowed to login\",\n userNotFound: \"User not found\",\n userProfileSavedSuccess: \"User profile saved with success\",\n wrongCurrentPassword: \"Incorrect current password\",\n additionalUsersRequired: \"The additional users is required\",\n addressRequired: \"The address is required\",\n amountDaysRequired: \"The amount days is required\",\n amountLicensesRequired: \"The amount of licenses is required\",\n planAmountRequired: \"The plan amount is required\",\n amountMonthsRequired: \"The amount of months is required\",\n amountYearsRequired: \"The amount of years is required\",\n billingAddressLine2Required: \"The complementary billing address is required\",\n billingAddressRequired: \"The billing address is required\",\n billingCityRequired: \"The billing city is required\",\n billingCountryRequired: \"The country billing is required\",\n billingPostalCodeRequired: \"The zip code is required\",\n billingProvinceOrStateRequired: \"The billing state is required\",\n cityRequired: \"The city is required\",\n companyNameRequired: \"The company name is required\",\n businessEinRequired: \"BN/EIN is required\",\n compareConfirmPassword: \"The password and confirmation password do not match.\",\n complementaryAddressRequired: \"The complementary address is required\",\n confirmPasswordRequired: \"The confirmation password is required\",\n countryRequired: \"The country is required\",\n displayPlanRequired: \"The display plan is required\",\n emailRequired: \"The email is required\",\n firstNameRequired: \"The first name is required\",\n headerImageRequired: \"The header image is required\",\n invalidEmail: \"This email is invalid\",\n invalidRole: \"Invalid user role\",\n lastNameRequired: \"The last name is required\",\n licenseAmountRange: \"The number of licenses must be greater than zero\",\n licenseRequired: \"The license is required\",\n newPasswordRequired: \"The new password is required\",\n notificationTypeRequired: \"The Notification type is required\",\n oldPasswordRequired: \"The old password is required\",\n organizationIdRequired: \"The organization id is required\",\n passwordLength: \"The {0} must be at least {2} and at max {1} characters long.\",\n passwordRequired: \"The password is required\",\n phoneRequired: \"The phone number is required\",\n planDescriptionRequired: \"The plan description is required\",\n postalCodeRequired: \"The zip code is required\",\n provinceOrStateRequired: \"The state is required\",\n roleRequired: \"The role is required\",\n signatureRequired: \"The signature is required\",\n subscriptionPlanNameRequired: \"The subscription plan is required\",\n tokenRequired: \"The token is required\",\n userIdRequired: \"UserId is required\",\n userNameRequired: \"The login e-mail is required\",\n planNameRequired: \"Internal plan name is required\",\n customLetterRequired: \"The custom letter is required\",\n customLetterSavedSuccess: \"Custom letter saved with success\",\n customTagDeleteSuccess: \"Custom tag removed successfully\",\n customTagInsertSuccess: \"Custom tag created successfully\",\n customTagNotFound: \"Custom tag not found\",\n customTagUpdateSuccess: \"Custom tag updated successfully\",\n documentStateInsertSuccess: \"Document state created successfully\",\n inquiryLetterRequired: \"The inquiry letter is required\",\n inquiryLetterSavedSuccess: \"Inquiry letter saved with success\",\n proposalLetterRequired: \"The proposal letter is required\",\n proposalLetterSavedSuccess: \"Proposal letter saved with success\",\n userProjectRequired: \"The user project is required\",\n customDocumentTypeRequired: \"The document type is required\",\n documentAmountRequired: \"The amount is required\",\n documentFlaggedRequired: \"The date is required\",\n documentStateRequired: \"The document state is required\",\n tagDescriptionRequired: \"The tag description is required\",\n tagNameRequired: \"The tag name is required\",\n blockedFundersDeleteAllSuccess: \"All funders unblocked successfully\",\n blockedFundersDeleteSuccess: \"Funder unblocked successfully\",\n blockedFundersInsertSuccess: \"Funder blocked successfully\",\n blockedFundersNotFound: \"Blocked Funder not found\",\n customDatabaseDeleteSuccess: \"Custom database successfully removed\",\n customDatabaseFieldsMapRequired: \"Please. Configure all the required fields before continue\",\n customDatabaseNotFound: \"Custom database not found\",\n customDatabaseUserFieldsEmpty: \"The list of configuration fields is empty\",\n favoriteDeleteSuccess: \"Favorite deleted successfully\",\n favoriteDuplicateSuccess: \"Favorite duplicated successfully\",\n favoriteFundersDeleteSuccess: \"Favorite funder deleted successfully\",\n favoriteFundersInsertSuccess: \"{{funders}} funders added to {{favCount}} favorites list\",\n favoriteFundersNotFound: \"Favorite funder not found\",\n favoriteFundersUpdateSuccess: \"Favorite funder update successfully\",\n favoriteInsertSuccess: \"Favorite created successfully\",\n favoriteNotFound: \"Favorite not found\",\n favoriteUpdateSuccess: \"Favorite update successfully\",\n fundersListEmpty: \"The funders list is empty\",\n noteDeleteSuccess: \"Note deleted successfully\",\n noteInsertSuccess: \"Note created successfully\",\n noteNotFound: \"Note not found\",\n noteUpdateSuccess: \"Note updated successfully\",\n noteRequired: \"Note is required before attaching any documents\",\n notificationDateRequired: \"The notification date is required\",\n emailListRequired: \"Select the e-mail\",\n customDatabaseFileRequired: \"The excel file is required\",\n favoriteNameRequired: \"The favorite name is required\",\n favoriteRequired: \"The favorite is required\",\n foundationRequired: \"The funder is required\",\n jsonUserFieldsMapRequired: \"Please. Configure all the required fields before continue\",\n labelTypeRequired: \"The type of label is required\",\n letterTypeRequired: \"Select the type of document for print\",\n noteDescriptionRequired: \"The description is required\",\n noteTitleRequired: \"The title is required\",\n bundleInsertSuccess: \"Bundle created successfully\",\n bundleNotFound: \"Bundle not found\",\n bundleTaskCount: \"Enter at least one task\",\n bundleTaskNotFound: \"One or more task cannot be found\",\n flagDateRequired: \"The date is required\",\n flagUpdateSuccess: \"Flag updated successfully\",\n projectBudgetCategoryDescriptionRequired: \"The category description is required\",\n projectBudgetDeleteSuccess: \"Budget removed successfully\",\n projectBudgetDescriptionExists: \"This description already exists\",\n projectBudgetInsertSuccess: \"Budget added successfully\",\n projectBudgetNotFound: \"Budget not found\",\n projectBudgetResetSuccess: \"Budget reseted successfully\",\n projectBudgetUpdateSuccess: \"Budget updated successfully\",\n projectEndDateRequired: \"The end date is required\",\n projectFundersDeleteSuccess: \"Project funders removed successfully\",\n projectFundersEmpty: \"Please select at least one funder before continuing\",\n projectFundersInsertSuccess: \"{{funderAmount}} funders added to {{projectName}}\",\n projectStartDateRequired: \"The start date is required\",\n taskDeleteSuccess: \"Task removed successfully\",\n taskEditSuccess: \"Task updated successfully\",\n taskInsertSuccess: \"Task created successfully\",\n taskListEmpty: \"The task list is empty\",\n taskNotFound: \"Task not found\",\n userProjectArchivedSuccess: \"User project archived successfully\",\n userProjectDeleteSuccess: \"User project deleted successfully\",\n userProjectEndDateRequired: \"The end date is required\",\n userProjectInsertSuccess: \"User project created successfully\",\n userProjectListEmpty: \"Select one or more projects\",\n userProjectNotFound: \"Project not found\",\n userProjectStartDateInvalid: \"The start date is invalid\",\n userProjectStartDateRequired: \"The start date is required\",\n userProjectUnarchivedSuccess: \"User project unarchived successfully\",\n userProjectUpdateSuccess: \"User project updated successfully\",\n budgetTypeInvalid: \"The budget type is invalid\",\n bundleDescriptionRequired: \"The bundle description is required\",\n bundleNameRequired: \"The bundle name is required\",\n bundleTaskRequired: \"The task list is required\",\n flagAmountInvalid: \"The amount is invalid\",\n flagAmountRequired: \"The amount is required\",\n flagStatusRequired: \"The status is required\",\n foundationNameRequired: \"The funder name is required\",\n foundationSourceTypeRequired: \"The funder source is required\",\n profileIdRequired: \"The profile is required\",\n projectBudgetAmountRequired: \"The budget amount is required\",\n projectBudgetDescriptionRequired: \"The budget description is required\",\n projectCostInvalid: \"The project cost is invalid\",\n projectCostRequired: \"The project cost is required\",\n projectDescriptionRequired: \"The project description is required\",\n projectNameRequired: \"The project name is required\",\n projectStatusInvalid: \"The project status is invalid\",\n taskDescriptionRequired: \"The task description is required\",\n taskNameRequired: \"The task name is required\",\n foundationInsertSuccess: \"Funder added successfully\",\n savedSearchDeleteSuccess: \"Search deleted successfully\",\n savedSearchDescriptionExists: \"This description already exists\",\n savedSearchInsertSuccess: \"Search added successfully\",\n savedSearchNotFound: \"Saved search not found\",\n savedSearchTypeInvalid: \"The saved search type is invalid\",\n savedSearchUpdateSuccess: \"Search updated successfully\",\n descriptionRequired: \"The description is required\",\n jsonFieldsRequired: \"The search field is required\",\n searchTypeRequired: \"The search type is required\",\n userProjectCompleted: \"This Project is marked as completed\",\n sendOnlineApplicationSuccess: \"Online application message successfully sent\",\n sendSuggestionSuccess: \"Suggestion successfully sent\",\n urlRequired: \"The url is required\",\n fundersRemovedSuccess: \"Removed {{fundersRemoved}} from other projects\",\n noteSubjectRequired: \"The subject is required\",\n accountDeleted: \"This account was deleted. Contact the administrator\",\n userRemovedSuccess: \"Account removed successfully\",\n userNameOrEmailRequired: \"The User or e-mail name is required\",\n fieldRequired: \"This field is required\",\n pickupNewPassword: \"Please pick up new password\",\n passwordMinCharacter: \"Please enter at least {{minimumCharaters}} characters\",\n enterSameValueAgain: \"Please enter the same value again\",\n feedbackSubmitted: \"Feedback submitted successfully\",\n feedbackInvalidGrantSize: \"The grant size is invalid or too big\",\n feedbackReviewUpdated: \"Feedback review updated\",\n announcementTitleRequired: \"The announcement title is required\",\n announcementDescriptionRequired: \"The announcement description is required\",\n announcementReleaseDateRequired: \"The announcement release date is required\",\n announcementReleaseDateInvalid: \"Past dates are not allowed for the Release date\",\n announcementTypeRequired: \"The announcement type is required\",\n announcementNotFound: \"Announcement not found\",\n announcementInsertSuccess: \"Announcement added successfully\",\n announcementUpdateSuccess: \"Announcement updated successfully\",\n announcementDeleteSuccess: \"Announcement deleted successfully\",\n funderDisqualifiedSuccess: \"Funder disqualified successfully\",\n funderQualifiedSuccess: \"Funder qualified successfully\",\n funderPausedSuccess: \"Funder qualification successfully paused\",\n couponNameRequired: \"The coupon name is required\",\n couponCodeRequired: \"The coupon code is required\",\n couponCodeFormatInvalid: \"The coupon code is invalid\",\n codeLengthInvalid: \"Maximum of 15 characters\",\n couponExpirationDateRequired: \"The coupon expiration date is required\",\n couponExpirationMaxValue: \"The date cannot be more than 6 months from today\",\n couponExpirationDateInvalid: \"Invalid expiration date\",\n couponSubscriptionPlanRequired: \"The coupon subscription plan is required\",\n couponExtraMonthsAmountInvalid: \"The extra month only allow number 1 to 99\",\n couponDiscountAmountInvalid: \"The discount only allow number 1 to 90\",\n couponCodeAlreadyExist: \"The coupon code has already been redeemed\",\n couponSubscriptionNotFound: \"The subscription plan not found\",\n couponNotFound: \"Coupon not found\",\n couponSelectType: \"Please choose between Extra Time or Discount\",\n couponInsertSuccess: \"Coupon added succesfully\",\n couponUpdateSuccess: \"Coupon updated succesfully\",\n couponDeleteSuccess: \"Coupon deleted successfully\",\n couponPauseUpdateSuccess: \"Coupon updated successfully\",\n deadlineEINRequired: \"The EIN is required\",\n deadlineFoundationNameRequired: \"The funder name is required\",\n deadlineCategoryRequired: \"The category is required\",\n deadlineURLRequired: \"The deadline URL is required\",\n deadlineCountryRequired: \"The country is required\",\n deadlineDateInvalid: \"Only allow future dates\",\n deadlineAmountToobig: \"The grant amount too big\",\n deadlineImportSuccess: \"{{fileName}} imported successfully\",\n deadlineImportSuccessWithWarning: \"The file was imported successfully. However, some items have invalid data. Please update them accordingly\",\n deadlineUpdateSuccess: \"Deadline updated successfully\",\n deadlineDeleteSuccess: \"Deadline deleted successfully\",\n deadlineRemovePopupMessage: \"This action will remove this deadline\",\n deadlineReviewCorrectInformation: \"Please review and correct the information\",\n deadlineInvalidFoundationDataField: \"The provided funder data contains an invalid entry for the {{invalidData}} field.\",\n deadlineInvalidFoundationDataFields: \"The provided funder data contains invalid entries for the following fields: {{invalidData}}.\",\n deadlineImportFilePrompt: \"Do you want to import this file?\",\n thankYouLetterSavedSuccess: \"Thank you letter saved with success\",\n impactReportLetterSavedSuccess: \"Impact report letter saved with success\",\n historyTypeRequired: \"The history type is required\",\n startDateRequired: \"Start Date is required\",\n startDateInvalid: \"Please select a date that is later than today\",\n dateMin: \"Please select a date higher than today\",\n referralNameCharityRequired: \"Name charity is required\",\n referralNameContactRequired: \"Name contact is required\",\n referralSubmitted: \"Referral submitted successfully. Refer Another Charity\",\n templateApplying: \"Applying please wait...\",\n templateApplyWarning: \"Applying this may take a few minutes to complete\",\n historyTimeline: {\n fuderAdded: \"Funder added on project\",\n funderRemoved: \"Funder removed on project\",\n noteAdded: \"Note added\",\n foundationProfileView: \"Funder profile viewed on project\",\n customDoc: \"Customized document\",\n masterDoc: \"Master document\",\n createdOnProject: \"created on project\",\n deletedOnProject: \"deleted on project\",\n statusUpdated: \"Status updated to\",\n onProject: \"on project\"\n }\n};\n\n","export const TRANSLATIONS_ES_MX = {\n labels: {\n user_name: \"Nombre de usuario\",\n password: \"Contraseña\",\n reset_password: \"Nueva contraseña\",\n reset_password_confirm: \"Confirmar contraseña\",\n login: \"Iniciar Sesión\",\n sign_up: \"Inscribirse\",\n forgot_password: \"Olvidaste tu contraseña?\",\n go_back: \"Regresa\",\n organization: \"Organización\",\n phone: \"Teléfono\",\n first_name: \"Primer nombre\",\n last_name: \"Apellido\",\n address: \"Dirección\",\n select: \"Seleccione\",\n country: \"País\",\n complementary_address: \"Dirección complementaria\",\n postal_code: \"Código postal\",\n city: \"Ciudad\",\n state: \"Estado\",\n stateOrProvince: \"Estado/Provincia\",\n billing: \"Facturación\",\n use_same_address: \"Usar la misma dirección\",\n loading: \"Cargando...\",\n register: \"Registrarse\",\n message: \"Mensaje\",\n error: \"Error\",\n welcome_back: \"Hola, bienvenido de nuevo\",\n enter_credentials: \"Ingrese sus credenciales para continuar\",\n dont_have_account: \"¿No tienes cuenta?\",\n remember_me: \"Recuérdame\",\n sign_in: \"Registrarse\",\n already_have_account: \"¿Ya tienes una cuenta?\",\n subscription_plan: \"Plan de suscripción\",\n country_billing: \"facturación del país\",\n password_recovery: \"Recuperación de contraseña\",\n password_reset: \"Restablecimiento de contraseña\",\n setting_up_account: \"Configuración de cuenta\",\n current_password: \"Contraseña actual\",\n new_password: \"Nueva contraseña\",\n confirm_password: \"Confirmar contraseña\",\n confirming_account: \"Confirmando cuenta\",\n accounts_created: \"Cuentas creadas\",\n of: \"de\",\n search: \"Búsqueda\",\n clear: \"Limpiar\",\n status: \"Estado\",\n actions: \"Comportamiento\",\n add_new_user: \"Añadir nuevo usuario\",\n edit_user: \"Editar usuario\",\n additional_emails: \"Correos electrónicos adicionales\",\n organization_letterhead: \"Membrete de la organización\",\n company_information: \"Información de la Organización\",\n company_organization: \"Organización\",\n created_at: \"Creado en\",\n change_main_email: \"Cambiar la dirección de correo electrónico principal\",\n main_email: \"Dirección de correo electrónico principal\",\n emails_created: \"Correos electrónicos creados\",\n add_new_additional_email: \"Añadir nuevo e-mail adicional\",\n new_email_address: \"Nueva dirección de correo electrónico\",\n add_digital_letterhead: \"Agregar membrete digital\",\n select_header_style: \"Seleccionar estilo de letra\",\n header_only: \"Solo encabezado\",\n header_and_footer: \"Encabezado y pié de página\",\n email_alert: \"Alerta de correo\",\n signature: \"Firma\",\n user_letterhead: \"Membrete del usuario\",\n user_information: \"Informacion del usuario\",\n position: \"Posición\",\n enable_disable_notifications: \"Activar/Desactivar notificaciones\",\n user_name_or_email: \"Usuario o correo electrónico\",\n avg_grants_Annually: \"Subvenciones promedio anuales\",\n avg_grant_size: \"Tamaño promedio de la subvención\",\n total_assets: \"Activos totales\",\n summary: \"Resumen\",\n notes_taken: \"Notas tomadas\",\n last_report: \"Último informe\",\n not_informed: \"No informado\",\n loading_profile_summary: \"Cargando resumen del perfil\",\n amount: \"Monto\",\n grants: \"Subvenciones\",\n funders: \"Financiadores\",\n funders_selected: \"Financiadores seleccionados\",\n show_grant_details: \"Mostrar detalles de la subvención\",\n profile_summary: \"Resumen del perfil\",\n view_profile: \"Ver perfil\",\n year: \"Año\",\n avg_grants: \"Subvenciones medias\",\n recipient: \"Beneficiario\",\n territories: \"Territorios\",\n giving_int: {\n prefix: \"Interés nacional de donación de\",\n state: \"Estado\",\n territories: \"Territorios\",\n },\n foundation_name: \"Nombre de la fundación\",\n import: \"Importar\",\n year: \"Año\",\n amount: \"Monto\",\n location: \"Ubicación\",\n purpose: \"Propósito\",\n recipient: \"Beneficiario\",\n category: \"Categoría\",\n sector: \"Sector\",\n not_provided_by: \"No proporcionado por\",\n keyword: \"Palabra clave\",\n shared_list:\"Lista compartida\",\n favorite_name:\"Nombre del favorito\",\n select_favorite:\"Seleccionar un favorito\",\n close:\"Cerrar\",\n confirm:\"Confirmar\",\n description:\"Descripción\",\n show_saved_search:\"Mostrar búsqueda guardada\",\n load_selected_saved_search:\"Cargar búsqueda guardada seleccionada\",\n rename:\"Cambiar nombre\",\n remove_save_search:\"Eliminar búsqueda guardada\",\n updated_at:\"Actualizado en\",\n recipient:\"Destinatario\",\n year:\"Año\",\n amt:\"AMT\",\n create_user_account: \"Crear proyecto de usuario\",\n edit_user_account: \"Editar proyecto de usuario\",\n name_project:\"Nombre del proyecto\",\n total_project_cost:\"Costo total del proyecto\",\n start_date:\"Fecha de inicio\",\n end_date: \"Fecha de finalización\",\n delete_project:\"Eliminar proyecto\",\n select_director_from_list: \"Selecciona un director de la lista\",\n enter_custom_director: \"¿No encuentras director? Ingresa uno personalizado\",\n enter_director_name: \"Ingresa el nombre del director\",\n select_director: \"Seleccionar director\",\n salutation: \"Saludo\",\n ask_amount: \"Monto solicitado\",\n total_amount: \"Monto total\",\n application_information: \"Información de la solicitud\",\n instruction: \"Instrucciones\",\n restriction: \"Restricciones\",\n deadline: \"Fecha límite\",\n contact: \"Contacto\",\n largest: \"Más grande\",\n average: \"Promedio\",\n median: \"Mediana\",\n remove_funder: \"Eliminar financiadores\",\n foundation_exists_other_projects: \"Esta fundación existe en otros proyectos dentro de su organización\",\n remove_foundations_other_projects: \"Eliminar financiadores de otros proyectos\",\n application_info: \"Información de la aplicación\",\n average: \"Promedio\",\n median: \"Mediana\",\n largest: \"Más grande\",\n this_action_will_remove: \"Esta acción eliminará\",\n from_this_project: \"de este proyecto\",\n hide_customized_funders: \"Ocultar financiadores personalizados\",\n project_funders: \"Financiadores del proyecto\",\n custom_letter: \"Carta personalizada\",\n change_project: \"Cambiar proyecto\",\n return_grant_secretary: \"Volver a la Secretaría de Subvenciones\",\n impact_report_letter: \"Informe de impacto\",\n project_funders_master_document: \"Financiadores del proyecto / Documento maestro\",\n master_document: \"Documento maestro\",\n letter_of_inquiry: \"Carta de consulta\",\n proposal: \"Propuesta\",\n thank_you_letter: \"Carta de agradecimiento\",\n custom_document: \"Documento personalizado\",\n qualify: \"Calificar\",\n favorites: \"Favoritos\",\n favorite_funders: \"Financiadores favoritos\",\n close: \"Cerrar\",\n add_funders_to_project: \"Agregar financiadores al proyecto\",\n select_one_or_more_projects: \"Seleccione uno o más proyectos\",\n block_funders: \"Bloquear financiadores\",\n print_funder_page: \"Imprimir página de financiadores\",\n move_to_previous_funder: \"Mover al financiador anterior\",\n move_to_next_funder: \"Mover al siguiente financiador\",\n remove_this_funder_from_qualified: \"Eliminar este financiador del estado calificado y excluir de la lista de favoritos.\",\n mark_funder_as_qualified: \"Marcar este financiador como calificado.\",\n block_funder: \"Bloquear financiador\",\n export_funders_to_excel: \"Exportar financiadores a Excel\",\n funder_name: \"Nombre del financiador\",\n prev: \"Previo\",\n next: \"Próximo\",\n previous: \"Previo\",\n visit_website: \"Visitar sitio web\",\n notes: \"Notas\",\n add_note: \"Agregar nota\",\n company: \"Empresa\",\n email: \"Correo electrónico\",\n website: \"Sitio web\",\n contact_infos: \"Información de contacto\",\n other_infos: \"Otra información\",\n help_center:\"Centro de ayuda\",\n profile_settings:\"Configuración del perfil\",\n hi:\"Hola\",\n user_profile:\"Perfil de usuario\",\n logout:\"Cerrar sesión\"\n },\n errors: {\n model_error: \"Compruebe si hay errores y vuelva a intentarlo\",\n general_error: \"Ha ocurrido un error\",\n invalid_token: \"Token inválido\",\n confirming_account_error: \"Lo sentimos, hay un problema al activar su cuenta\",\n invalid_image: \"Imagen inválida\",\n inform_crop_area: \"Ajuste la imagen para adaptarse a las dimensiones requeridas\",\n funder_not_found: \"Financiador no encontrado\",\n select_at_least_one_funder: \"Por favor, seleccione al menos un financiador antes de continuar\",\n select_one_or_more_funders_delete: \"Seleccione uno o más financiadores para eliminar\",\n select_one_or_more_funders_block: \"Seleccione uno o más financiadores para bloquear\",\n },\n success: {\n logout_success: \"Cierre de sesión de usuario con éxito\",\n copied_to_clipboard: \"Copiado al portapapeles\",\n },\n messages: {\n password_recovery_message: \"Para recibir una nueva contraseña, introduzca el nombre de usuario y la dirección de correo electrónico que utilizó para registrarse\",\n inform_new_password_message: \"Por favor, introduzca su nueva contraseña\",\n setting_up_account_message: \"Para activar su cuenta, introduzca la contraseña y confírmela\",\n confirming_account_wait: \"Por favor, espere mientras confirmamos su cuenta\",\n first_letterhead_message: \"- El membrete debe tener aproximadamente 700 x 200 px.\",\n second_letterhead_message: \"- Los formatos compatibles son .GIF, .png, .jpeg y .jpg.\",\n third_letterhead_message: \"- El membrete de su organización aparecerá en la parte superior de todos los documentos.\",\n check_organization_settings_message: \"Por favor, compruebe la configuración del membrete del perfil de su organización o póngase en contacto con el soporte técnico.\",\n funders_not_selected_message: \"Por favor, seleccione al menos un financiador antes de continuar\",\n select_one_favorite_list:'Seleccione al menos una lista de favoritos o cree una nueva',\n create_new_favorite_list: \"Crear nueva lista de favoritos\",\n add_funders_favorite_list: \"Añadir financiador(es) a favoritos\",\n delete_project:\"¿Está seguro de que desea eliminar este proyecto?\",\n are_you_sure: \"¿Está seguro?\",\n this_action_will_remove_document_funder: \"Esta acción eliminará el documento para este financiador\",\n this_action_will_remove_master_document: \"Esta acción eliminará este documento maestro\",\n want_to_remove_the_funder: \"¿Desea eliminar la fundación de esta lista?\",\n this_will_remove_customized_documents: \"Esto eliminará {{documents}} documento(s) personalizado(s) y devolverá el financiador a la lista maestra. Para eliminar financiadores(s) permanentemente, elimínelos de la lista maestra.\",\n remove_the_funders_from_the_projects: \"Elimina las fundaciones de los proyectos que seleccionó del proyecto actual.\",\n select_in_dropdown_example: \"p.ej. Si selecciona un proyecto en el desplegable y tiene 3 fundaciones, 'a', 'b' y 'c' y el proyecto en el que está trabajando también tiene 'a', 'b', 'c', estos serán eliminados del proyecto en curso.\",\n this_will_remove_funders_from_this_project: \"Esta acción eliminará {{funders}} fundación(es) de este proyecto.\",\n },\n user_menu: {\n profile: \"Perfil\",\n logout: \"Cerrar sesión\",\n },\n prompt: {\n areYouSure: \"¿Estás seguro?\",\n confirmRemove: \"Confirmar eliminación\"\n },\n side_menu: {\n administration: \"Administración\",\n manage_account: \"Administrar cuenta\",\n manage_announcement: \"Plan de Suscripción\",\n manage_subscription_plan: \"\",\n manage_coupons: \"Cupones\",\n manage_feedbacks: \"Comentarios\",\n manage_deadlines: \"Plazos\",\n manage_plans: \"Manage Plans\",\n account: \"Cuenta\",\n user_profile: \"Perfil del usuario\",\n additional_users: \"Usuarios adicionales\",\n organization_profile: \"Perfil de la organización\",\n project_manager: \"Gerente de proyecto\",\n project_list: \"Proyectos\",\n project_archive: \"Proyectos archivados\",\n search_engine: \"Buscador\",\n by_giving_history: \"Al dar la historia\",\n by_name: \"Por nombre\",\n by_director: \"Por la directora\",\n by_year: \"Por año\",\n by_deadline: \"By Deadline\",\n by_rating: \"Por calificación\",\n by_custom: \"Por encargo\",\n document_generator: \"Generador de documentos,\",\n inquiry: \"Consulta\",\n proposal: \"Propuesta\",\n budget: \"Presupuesto\",\n custom_letter: \"Carta personalizada\",\n grant_secretary: \"Grant Secretary - Print\",\n manage_funders: \"Administrar financiadores\",\n favorites: \"Favoritos\",\n blocked_funders: \"Obstruido\",\n custom_databases: \"bases de datos personalizadas\",\n by_keyword: \"Por palabras clave\",\n by_internacional_funding: \"Por financiación internacional\",\n thank_you: \"Thank You\",\n impact_report: \"Impact Report\",\n previous: \"Previo\",\n },\n buttons: {\n create_account: \"Crear cuenta\",\n send: \"Enviar\",\n reset_password: \"Restablecer contraseña\",\n add_user: \"Agregar usuario\",\n insert_user: \"Insertar usuario\",\n save_changes: \"Guardar cambios\",\n update_profile: \"Actualizar perfil\",\n add_email: \"Agregar correo electrónico\",\n select_header_file: \"Seleccionar archivo de encabezado\",\n select_footer_file: \"Seleccionar archivo de pie de página\",\n update_account: \"Actualizar cuenta\",\n create: \"Crear\",\n create_favorite_list: \"Crear lista de favoritos\",\n add: \"Añadir\",\n confirm:\"Confirmar\",\n update:\"Actualizar\",\n confirm_delete:\"Confirmar eliminación\",\n confirm_remove: \"Confirmar eliminación\",\n next: \"Siguiente\",\n prev: \"Anterior\",\n add_funder: \"Agregar financiador\",\n },\n input_fields: {\n press_enter: \"Presiona Enter para agregar palabras clave\",\n },\n accountCreated: \"Cuenta creada con éxito\",\n accountDisabled: \"Esta cuenta está deshabilitada. Para obtener más detalles, comuníquese con el administrador.\",\n accountDisabledSuccess: \"Cuenta deshabilitada con éxito\",\n accountEnabledSuccess: \"Cuenta habilitada con éxito\",\n accountNotActivated: \"Su cuenta no está activa. Por favor revise su correo electrónico para activar su cuenta\",\n accountUpdatedSuccess: \"Cuenta actualizada correctamente\",\n additionalEmailNotFound: \"Correo electrónico adicional no encontrado\",\n additionalEmailRemovedSuccess: \"Correo electrónico adicional eliminado con éxito\",\n additionalEmailSavedSuccess: \"Correo electrónico adicional guardado con éxito\",\n additionalUserInsertSuccess: \"Usuario adicional añadido con éxito\",\n additionalUserUpdateSuccess: \"Usuario adicional actualizado correctamente\",\n addressBillingRequired: \"Se requiere dirección de facturación\",\n alertNotificationSavedSuccess: \"Notificación de alerta guardada con éxito\",\n cityBillingRequired: \"Se requiere la facturación de la ciudad\",\n complementaryAddressBillingRequired: \"Se requiere facturación de dirección complementaria\",\n confirmRegisterUserSuccess: \"Gracias por confirmar tu correo electrónico\",\n countryBillingRequired: \"El país de facturación es obligatorio\",\n countryNotFound: \"País no encontrado\",\n emailExists: \"La dirección de correo ya existe\",\n errorRegistration: \"El modelo está vacío\",\n expirationDateSavedSuccess: \"Fecha de caducidad guardada con éxito\",\n footerImageRequired: \"La imagen de pie de página es obligatoria\",\n imageHeightLength: \"Altura de imagen no válida\",\n imageWidthLength: \"Ancho de imagen no válido\",\n invalidEmailAddress: \"Dirección de correo electrónico no válida\",\n invalidLetterType: \"Tipo de letra no válido\",\n invalidPhoneNumber: \"Numero de telefono invalido\",\n invalidSubscriptionPlan: \"Plan de suscripción no válido\",\n invalidUserRole: \"Rol de usuario no válido\",\n letterheadSavedSuccess: \"Membrete guardado con exito\",\n licenseExpired: \"Su licencia ha caducado. Para más detalles, póngase en contacto con el administrador\",\n licenseNotFound: \"No hay suficientes licencias disponibles. Póngase en contacto con support@grantadvance.com\",\n loginFailed: \"Usuario o contraseña invalido\",\n masterOnly: \"Solo los usuarios maestros tienen acceso a este recurso\",\n notEnoughLicense: \"Su organización no tiene ninguna licencia disponible. Si desea agregar licencias, haga clic aquí para comprar licencias adicionales\",\n notificationExists: \"La notificación ya existe\",\n notificationNotFound: \"Notificación no encontrada\",\n notificationTypeNotFound: \"Tipo de notificación no encontrado\",\n organizationDisabled: \"Esta organización está deshabilitada. Para obtener más detalles, comuníquese con el administrador.\",\n organizationMainAddressUpdatedSuccess: \"Dirección principal de la organización actualizada con éxito\",\n organizationNotFound: \"Organización no encontrada\",\n organizationProfileSavedSuccess: \"Perfil de la organización guardado con éxito\",\n passwordModified: \"Contraseña modificada con éxito\",\n passwordRecovery: \"Por favor revise su correo electrónico para restablecer su contraseña.\",\n passwordReset: \"Restablecimiento de contraseña con éxito\",\n postalCodeBillingRequired: \"El código postal es obligatorio\",\n profileNotFound: \"Perfil no encontrado\",\n provinceOrStateBillingRequired: \"Se requiere el estado\",\n provinceOrStateNotFound: \"Estado no encontrado\",\n sendActivationLinkSuccess: \"El correo electrónico de activación se ha enviado con éxito\",\n sendPasswordResetSuccess: \"El correo electrónico de restablecimiento de contraseña se ha enviado correctamente\",\n sendSetupPasswordSuccess: \"El correo electrónico de configuración de la contraseña se ha enviado correctamente\",\n separatedLicenceExpirationDateError: \"La fecha de vencimiento de las licencias separadas no puede ser posterior a la fecha de vencimiento de la licencia principal\",\n settingUpAccountSuccess: \"Su cuenta ha sido activada con éxito. Ahora puede iniciar sesión\",\n signatureSavedSuccess: \"Firma guardada con éxito\",\n subscriptionPlanNotFound: \"Plan de suscripción no encontrado\",\n userLogoutSuccess: \"Cierre de sesión del usuario con éxito\",\n userNameExists: \"Este nombre de usuario ya está en uso\",\n userNotAllowed: \"Usuario no autorizado para iniciar sesión\",\n userNotFound: \"Usuario no encontrado\",\n userProfileSavedSuccess: \"Perfil de usuario guardado con éxito\",\n wrongCurrentPassword: \"Contraseña actual incorrecta\",\n additionalUsersRequired: \"Se requieren los usuarios adicionales\",\n addressRequired: \"La dirección es requerida\",\n amountDaysRequired: \"Se requiere la cantidad de días\",\n amountLicensesRequired: \"La cantidad de licencias es obligatoria\",\n planAmountRequired: \"El monto del plan es obligatorio\",\n amountMonthsRequired: \"Se requiere la cantidad de meses\",\n amountYearsRequired: \"Se requiere la cantidad de años\",\n billingAddressLine2Required: \"Se requiere la dirección de facturación complementaria\",\n billingAddressRequired: \"La dirección de facturación es obligatoria\",\n billingCityRequired: \"La ciudad de facturación es obligatoria\",\n billingCountryRequired: \"El país de facturación es obligatorio\",\n billingPostalCodeRequired: \"El código postal es obligatorio\",\n billingProvinceOrStateRequired: \"Se requiere la provincia/estado de facturación\",\n cityRequired: \"Se requiere la ciudad\",\n companyNameRequired: \"El nombre de la empresa es obligatorio\",\n businessEinRequired: \"BN/EIN es obligatorio\",\n compareConfirmPassword: \"La contraseña y la contraseña de confirmación no coinciden.\",\n complementaryAddressRequired: \"Se requiere la dirección complementaria\",\n confirmPasswordRequired: \"Se requiere la contraseña de confirmación\",\n countryRequired: \"Se requiere el país\",\n displayPlanRequired: \"El plano de visualización es obligatorio\",\n emailRequired: \"El correo electrónico es obligatorio\",\n firstNameRequired: \"El primer nombre es obligatorio\",\n headerImageRequired: \"La imagen del encabezado es obligatoria\",\n invalidEmail: \"Este email es invalido\",\n invalidRole: \"Rol de usuario no válido\",\n lastNameRequired: \"El apellido es obligatorio\",\n licenseAmountRange: \"El número de licencias debe ser mayor que cero\",\n licenseRequired: \"Se requiere la licencia\",\n newPasswordRequired: \"Se requiere la nueva contraseña\",\n notificationTypeRequired: \"Se requiere el tipo de Notificación\",\n oldPasswordRequired: \"Se requiere la contraseña anterior\",\n organizationIdRequired: \"El ID de la organización es obligatorio\",\n passwordLength: \"El {0} debe tener al menos {2} y un máximo de {1} caracteres de longitud.\",\n passwordRequired: \"Se requiere la contraseña\",\n phoneRequired: \"El número de teléfono es obligatorio\",\n planDescriptionRequired: \"La descripción del plan es obligatoria\",\n postalCodeRequired: \"El código postal es obligatorio\",\n provinceOrStateRequired: \"Se requiere el estado\",\n roleRequired: \"El rol es requerido\",\n signatureRequired: \"Se requiere la firma\",\n subscriptionPlanNameRequired: \"Se requiere el plan de suscripción\",\n tokenRequired: \"Se requiere el token\",\n userIdRequired: \"Se requiere ID de usuario\",\n userNameRequired: \"El e-mail es obligatorio\",\n planNameRequired: \"Se requiere el nombre del plan interno\",\n customLetterRequired: \"Se requiere la carta personalizada\",\n customLetterSavedSuccess: \"Carta personalizada guardada con éxito\",\n customTagDeleteSuccess: \"Etiqueta personalizada eliminada con éxito\",\n customTagInsertSuccess: \"Etiqueta personalizada creada con éxito\",\n customTagNotFound: \"Etiqueta personalizada no encontrada\",\n customTagUpdateSuccess: \"Etiqueta personalizada actualizada con éxito\",\n documentStateInsertSuccess: \"Estado del documento creado con éxito\",\n inquiryLetterRequired: \"Se requiere la carta de consulta\",\n inquiryLetterSavedSuccess: \"Carta de consulta guardada con éxito\",\n proposalLetterRequired: \"Se requiere la carta de propuesta\",\n proposalLetterSavedSuccess: \"Carta de propuesta guardada con éxito\",\n userProjectRequired: \"El proyecto de usuario es obligatorio\",\n customDocumentTypeRequired: \"El tipo de documento es obligatorio\",\n documentAmountRequired: \"La cantidad es requerida\",\n documentFlaggedRequired: \"La fecha es requerida\",\n documentStateRequired: \"El estado del documento es obligatorio\",\n tagDescriptionRequired: \"La descripción de la etiqueta es obligatoria\",\n tagNameRequired: \"El nombre de la etiqueta es obligatorio\",\n blockedFundersDeleteAllSuccess: \"Todos los financiadores se desbloquearon con éxito\",\n blockedFundersDeleteSuccess: \"Financiador desbloqueado con éxito\",\n blockedFundersInsertSuccess: \"Financiador bloqueado con éxito\",\n blockedFundersNotFound: \"Financiador bloqueado no encontrado\",\n customDatabaseDeleteSuccess: \"Base de datos personalizada eliminada con éxito\",\n customDatabaseFieldsMapRequired: \"Por favor. Configure todos los campos obligatorios antes de continuar\",\n customDatabaseNotFound: \"Base de datos personalizada no encontrada\",\n customDatabaseUserFieldsEmpty: \"La lista de campos de configuración está vacía\",\n favoriteDeleteSuccess: \"Favorito eliminado con éxito\",\n favoriteDuplicateSuccess: \"Favorito duplicado con éxito\",\n favoriteFundersDeleteSuccess: \"Financiador favorito eliminado con éxito\",\n favoriteFundersInsertSuccess: \"{{fundersAmount}} financiadores agregados a la lista {{favoriteName}}\",\n favoriteFundersNotFound: \"Financiador favorito no encontrado\",\n favoriteFundersUpdateSuccess: \"Actualización de financiador favorito con éxito\",\n favoriteInsertSuccess: \"Favorito creado con éxito\",\n favoriteNotFound: \"Favorito no encontrado\",\n favoriteUpdateSuccess: \"Actualización favorita exitosa\",\n fundersListEmpty: \"La lista de patrocinadores está vacía\",\n noteDeleteSuccess: \"Nota eliminada con éxito\",\n noteInsertSuccess: \"Nota creada con éxito\",\n noteNotFound: \"Nota no encontrada\",\n noteUpdateSuccess: \"Nota actualizada correctamente\",\n noteRequired: \"Se requiere una nota antes de adjuntar cualquier documento\",\n notificationDateRequired: \"La fecha de notificación es obligatoria\",\n emailListRequired: \"Seleccione el e-mail\",\n customDatabaseFileRequired: \"Se requiere el archivo de Excel\",\n favoriteNameRequired: \"El nombre favorito es obligatorio\",\n favoriteRequired: \"Se requiere el favorito\",\n foundationRequired: \"Se requiere la fundación\",\n jsonUserFieldsMapRequired: \"Por favor. Configure todos los campos obligatorios antes de continuar\",\n labelTypeRequired: \"El tipo de etiqueta es obligatorio\",\n letterTypeRequired: \"Seleccione el tipo de documento para imprimir\",\n noteDescriptionRequired: \"La descripción es obligatoria\",\n noteTitleRequired: \"El título es obligatorio\",\n bundleInsertSuccess: \"Paquete creado con éxito\",\n bundleNotFound: \"Paquete no encontrado\",\n bundleTaskCount: \"Ingrese al menos una tarea\",\n bundleTaskNotFound: \"No se pueden encontrar una o más tareas\",\n flagDateRequired: \"La fecha es requerida\",\n flagUpdateSuccess: \"Bandera actualizada con éxito\",\n projectBudgetCategoryDescriptionRequired: \"La descripción de la categoría es obligatoria\",\n projectBudgetDeleteSuccess: \"Presupuesto eliminado con éxito\",\n projectBudgetDescriptionExists: \"Esta descripción ya existe\",\n projectBudgetInsertSuccess: \"Presupuesto añadido con éxito\",\n projectBudgetNotFound: \"Presupuesto no encontrado\",\n projectBudgetResetSuccess: \"Presupuesto restablecido con éxito\",\n projectBudgetUpdateSuccess: \"Presupuesto actualizado correctamente\",\n projectEndDateRequired: \"La fecha de finalización es obligatoria\",\n projectFundersDeleteSuccess: \"El financiador del proyecto se eliminó con éxito\",\n projectFundersEmpty: \"Seleccione al menos un financiador antes de continuar\",\n projectFundersInsertSuccess: \"{{funderAmount}} financiadores agregados al {{projectName}}\",\n projectStartDateRequired: \"La fecha de inicio es obligatoria\",\n taskDeleteSuccess: \"Tarea eliminada con éxito\",\n taskEditSuccess: \"Tarea actualizada correctamente\",\n taskInsertSuccess: \"Tarea creada con éxito\",\n taskListEmpty: \"La lista de tareas está vacía\",\n taskNotFound: \"Tarea no encontrada\",\n userProjectArchivedSuccess: \"Proyecto de usuario archivado con éxito\",\n userProjectDeleteSuccess: \"Proyecto de usuario eliminado con éxito\",\n userProjectEndDateRequired: \"La fecha de finalización es obligatoria\",\n userProjectInsertSuccess: \"Proyecto de usuario creado con éxito\",\n userProjectListEmpty: \"Seleccione uno o más proyectos\",\n userProjectNotFound: \"Proyecto no encontrado\",\n userProjectStartDateInvalid: \"La fecha de inicio no es válida\",\n userProjectStartDateRequired: \"La fecha de inicio es obligatoria\",\n userProjectUnarchivedSuccess: \"Proyecto de usuario desarchivado con éxito\",\n userProjectUpdateSuccess: \"Proyecto de usuario actualizado con éxito\",\n budgetTypeInvalid: \"El tipo de presupuesto no es válido\",\n bundleDescriptionRequired: \"Se requiere la descripción del paquete\",\n bundleNameRequired: \"El nombre del paquete es obligatorio\",\n bundleTaskRequired: \"La lista de tareas es obligatoria\",\n flagAmountInvalid: \"La cantidad no es válida\",\n flagAmountRequired: \"La cantidad es requerida\",\n flagStatusRequired: \"El estado es obligatorio\",\n foundationNameRequired: \"El nombre de la fundación es obligatorio\",\n foundationSourceTypeRequired: \"Se requiere la fuente de la fundación\",\n profileIdRequired: \"El perfil es obligatorio\",\n projectBudgetAmountRequired: \"El importe del presupuesto es obligatorio\",\n projectBudgetDescriptionRequired: \"La descripción del presupuesto es obligatoria\",\n projectCostInvalid: \"El costo del proyecto no es válido\",\n projectCostRequired: \"Se requiere el costo del proyecto\",\n projectDescriptionRequired: \"Se requiere la descripción del proyecto\",\n projectNameRequired: \"El nombre del proyecto es obligatorio\",\n projectStatusInvalid: \"El estado del proyecto no es válido\",\n taskDescriptionRequired: \"La descripción de la tarea es obligatoria\",\n taskNameRequired: \"El nombre de la tarea es obligatorio\",\n foundationInsertSuccess: \"Fundación añadida con éxito\",\n savedSearchDeleteSuccess: \"Búsqueda eliminada con éxito\",\n savedSearchDescriptionExists: \"Esta descripción ya existe\",\n savedSearchInsertSuccess: \"Búsqueda agregada con éxito\",\n savedSearchNotFound: \"Búsqueda guardada no encontrada\",\n savedSearchTypeInvalid: \"El tipo de búsqueda guardada no es válido\",\n savedSearchUpdateSuccess: \"Búsqueda actualizada con éxito\",\n descriptionRequired: \"La descripción es obligatoria\",\n jsonFieldsRequired: \"El campo de búsqueda es obligatorio\",\n searchTypeRequired: \"El tipo de búsqueda es obligatorio\",\n userProjectCompleted: \"Este proyecto está marcado como completado\",\n sendOnlineApplicationSuccess: \"Mensaje de solicitud en línea enviado con éxito\",\n sendSuggestionSuccess: \"Sugerencia enviada con éxito\",\n urlRequired: \"La URL es obligatoria\",\n noteSubjectRequired: \"El tema es obligatorio\",\n accountDeleted: \"Esta cuenta fue eliminada. Contacta con el administrador\",\n userRemovedSuccess: \"Cuenta eliminada con éxito\",\n userNameOrEmailRequired: \"El nombre de usuario o correo electrónico es obligatorio.\",\n fieldRequired: \"Este campo es obligatorio\",\n pickupNewPassword: \"Por favor, recoja la nueva contraseña\",\n passwordMinCharacter: \"Introduce al menos {{minimumCharaters}} caracteres\",\n enterSameValueAgain: \"Por favor, vuelva a introducir el mismo valor\",\n feedbackSubmitted: \"Comentarios enviados correctamente\",\n feedbackInvalidGrantSize: \"El tamaño de la subvención no es válido o es demasiado grande\",\n feedbackReviewUpdated: \"Revisión actualizada de los comentarios\",\n announcementDescriptionRequired: \"La descripción del anuncio es obligatoria.\",\n announcementReleaseDateRequired: \"La fecha de publicación del anuncio es obligatoria.\",\n announcementReleaseDateInvalid: \"No se permiten fechas pasadas para la fecha de lanzamiento.\",\n announcementTypeRequired: \"El tipo de anuncio es obligatorio.\",\n announcementNotFound: \"Anuncio no encontrado\",\n announcementInsertSuccess: \"Anuncio agregado exitosamente\",\n announcementUpdateSuccess: \"Anuncio actualizado exitosamente\",\n announcementDeleteSuccess: \"Anuncio eliminado exitosamente\",\n notificationNotFound: \"Notificación no encontrada\",\n couponNameRequired: \"El nombre del cupón es obligatorio\",\n couponCodeRequired: \"El código de cupón es obligatorio\",\n couponCodeFormatInvalid: \"El código de cupón no es válido\",\n codeLengthInvalid: \"Máximo de 15 caracteres\",\n couponExpirationDateRequired: \"Se requiere la fecha de vencimiento del cupón.\",\n couponExpirationMaxValue: \"La fecha no puede ser mayor a 6 meses a partir de hoy\",\n couponExpirationDateInvalid: \"Fecha de expiracion inválida\",\n couponSubscriptionPlanRequired: \"Se requiere el plan de suscripción de cupones\",\n couponExtraMonthsAmountInvalid: \"El mes extra solo permite del 1 al 99\",\n couponDiscountAmountInvalid: \"El descuento solo permite del número 1 al 90\",\n couponCodeAlreadyExist: \"El código del cupón ya ha sido canjeado\",\n couponSubscriptionNotFound: \"El plan de suscripción no encontrado\",\n couponNotFound: \"Cupón no encontrado\",\n couponSelectType: \"Por favor elija entre Tiempo Extra o Descuento\",\n couponInsertSuccess: \"Cupón agregado exitosamente\",\n couponUpdateSuccess: \"Cupón actualizado exitosamente\",\n couponDeleteSuccess: \"Cupón eliminado exitosamente\",\n couponPauseUpdateSuccess: \"Cupón actualizado exitosamente\",\n deadlineEINRequired: \"El EIN es obligatorio\",\n deadlineFoundationNameRequired: \"El nombre de la fundación es obligatorio\",\n deadlineCategoryRequired: \"La categoría es obligatoria\",\n deadlineURLRequired: \"Se requiere la URL de la fecha límite\",\n deadlineCountryRequired: \"El país debe\",\n deadlineDateInvalid: \"Permitir sólo fechas futuras\",\n deadlineAmountToobig: \"El importe de la subvención es excesivo\",\n deadlineImportSuccess: \"{{fileName}} importado con éxito\",\n deadlineImportSuccessWithWarning: \"El archivo se ha importado correctamente. Sin embargo, algunos elementos tienen ID de perfil no válidos. Por favor, actualícelos\",\n deadlineUpdateSuccess: \"Fecha límite actualizada correctamente\",\n deadlineDeleteSuccess: \"Fecha límite eliminada con éxito\",\n deadlineRemovePopupMessage: \"Esta acción eliminará este plazo\",\n deadlineReviewCorrectInformation: \"Por favor revisa y corrige la información\",\n deadlineInvalidFoundationDataField: \"Los datos proporcionados de la fundación contienen una entrada no válida para el campo {{invalidData}}.\",\n deadlineInvalidFoundationDataFields: \"Los datos proporcionados de la fundación contienen entradas no válidas para los siguientes campos: {{invalidData}}.\",\n deadlineImportFilePrompt: \"¿Quieres importar este archivo?\",\n thankYouLetterSavedSuccess: \"Carta de agradecimiento guardada con éxito.\",\n impactReportLetterSavedSuccess: \"Carta de informe de impacto guardada con éxito\",\n historyTypeRequired: \"El tipo de historial es obligatorio.\",\n startDateRequired: \"La fecha de inicio es obligatoria\",\n startDateInvalid: \"Seleccione una fecha que sea posterior a la de hoy\",\n dateMin: \"Por favor seleccione una fecha mayor a la de hoy\",\n referralNameCharityRequired: \"Nombre de la organización benéfica es obligatoria\",\n referralNameContactRequired: \"Nombre de contacto es obligatoria\",\n referralSubmitted: \"Referencia enviada exitosamente. Recomendar otra organización benéfica\",\n funderQualifiedSuccess: \"Foundation qualified successfully\",\n funderDisqualifiedSuccess: \"Foundation disqualified successfully\",\n funderPausedSuccess: \"La calificación del financiador se detuvo con éxito\",\n templateApplying: \"Aplicando por favor espere...\",\n templateApplyWarning: \"La aplicación puede llevar unos minutos\",\n historyTimeline: {\n fuderAdded: \"Fundación añadida al proyecto\",\n funderRemoved: \"Fundación eliminada del proyecto\",\n noteAdded: \"Nota añadida\",\n foundationProfileView: \"Perfil de la fundación visto en el proyecto\",\n customDoc: \"Documento personalizado\",\n masterDoc: \"Documento maestro\",\n createdOnProject: \"creado en el proyecto\",\n deletedOnProject: \"eliminado en el proyecto\",\n statusUpdated: \"Estado actualizado a\",\n onProject: \"en el proyecto\"\n }\n};\n","export const TRANSLATIONS_FR_CA = {\n labels: {\n user_name: \"Nom d'utilisateur\",\n password: \"Mot de passe\",\n reset_password: \"Nueva contraseña\",\n reset_password_confirm: \"Confirmez le mot de passe\",\n login: \"Connexion\",\n sign_up: \"S'inscrire\",\n forgot_password: \"Mot de passe oublié?\",\n go_back: \"Retourner\",\n organization: \"Organisation\",\n phone: \"Téléphone\",\n first_name: \"Prénom\",\n last_name: \"Nom de famille\",\n address: \"Adresse\",\n select: \"Sélectionner\",\n country: \"Pays\",\n complementary_address: \"Adresse complémentaire\",\n postal_code: \"code postal\",\n city: \"Ville\",\n state: \"État\",\n stateOrProvince: \"État/Province\",\n billing: \"Facturation\",\n use_same_address: \"Utiliser la même adresse\",\n loading: \"Chargement...\",\n register: \"S'inscrire\",\n message: \"Un message\",\n error: \"Erreur\",\n welcome_back: \"Salut, bienvenue à nouveau\",\n enter_credentials: \"Entrez vos identifiants pour continuer\",\n dont_have_account: \"Vous n'avez pas de compte?\",\n remember_me: \"Souviens-toi de moi\",\n sign_in: \"S'identifier\",\n already_have_account: \"Vous avez déjà un compte?\",\n subscription_plan: \"Formule d'abonnement\",\n country_billing: \"facturation par pays\",\n password_recovery: \"Récupération de mot de passe\",\n password_reset: \"Réinitialisation du mot de passe\",\n setting_up_account: \"Configuration du compte\",\n current_password: \"mot de passe actuel\",\n new_password: \"Nouveau mot de passe\",\n confirm_password: \"Confirmez le mot de passe\",\n confirming_account: \"Confirmation de compte\",\n accounts_created: \"Comptes créés\",\n of: \"de\",\n search: \"Chercher\",\n clear: \"Effacer\",\n status: \"Statut\",\n actions: \"Actions\",\n add_new_user: \"Ajouter un nouvel utilisateur\",\n edit_user: \"Modifier l'utilisateur\",\n additional_emails: \"Courriels supplémentaires\",\n organization_letterhead: \"Papier à en-tête de l'organisation\",\n company_information: \"Informations sur la Organisation\",\n company_organization: \"Organisation\",\n created_at: \"Créé à\",\n change_main_email: \"Modifier l'adresse e-mail principale\",\n main_email: \"Adresse e-mail principale\",\n emails_created: \"E-mails créés\",\n add_new_additional_email: \"Ajouter un nouvel e-mail supplémentaire\",\n new_email_address: \"Nouvelle adresse courriel\",\n add_digital_letterhead: \"Ajouter du papier à en-tête numérique\",\n select_header_style: \"Sélectionnez le style de lettre\",\n header_only: \"En-tête uniquement\",\n header_and_footer: \"En-tête et pied de page\",\n email_alert: \"Alerte mail\",\n signature: \"Signature\",\n user_letterhead: \"En-tête de l'utilisateur\",\n user_information: \"Informations de l'utilisateur\",\n position: \"Position\",\n enable_disable_notifications: \"Activer / Désactiver les notifications\",\n user_name_or_email: \"Nom d'utilisateur ou e-mail\",\n avg_grants_Annually: \"Subventions moyennes annuelles\",\n avg_grant_size: \"Taille moyenne de la subvention\",\n total_assets: \"Total des actifs\",\n summary: \"Résumé\",\n notes_taken: \"Notes prises\",\n last_report: \"Dernier rapport\",\n not_informed: \"Non informé\",\n loading_profile_summary: \"Chargement du résumé du profil\",\n amount: \"Montant\",\n grants: \"Subventions\",\n funders: \"Bailleurs de fonds\",\n funders_selected: \"Bailleurs de fonds sélectionnés\",\n show_grant_details: \"Afficher les détails de la subvention\",\n profile_summary: \"Résumé du profil\",\n view_profile: \"Voir le profil\",\n year: \"Année\",\n avg_grants: \"Subventions moyennes\",\n recipient: \"Bénéficiaire\",\n territories: \"Territoires\",\n giving_int: {\n prefix: \"Intérêt national de don pour\",\n state: \"État\",\n territories: \"Territoires\"\n },\n foundation_name: \"Nom de la fondation\",\n import: \"Importer\",\n year: \"Année\",\n amount: \"Montant\",\n location: \"Emplacement\",\n purpose: \"Objectif\",\n recipient: \"Bénéficiaire\",\n category: \"Catégorie\",\n sector: \"Secteur\",\n not_provided_by: \"Non fourni par\",\n keyword: \"Mot-clé\",\n my_list:\"Ma liste\",\n shared_list:\"Liste partagée\",\n favorite_name:\"Nom du favori\",\n select_favorite:\"Sélectionnez un favori\",\n close:\"Fermer\",\n confirm:\"Confirmer\",\n description:\"Description\",\n show_saved_search:\"Afficher la recherche enregistrée\",\n load_selected_saved_search:\"Charger la recherche enregistrée sélectionnée\",\n rename:\"Renommer\",\n remove_save_search:\"Supprimer la recherche enregistrée\",\n updated_at:\"Mis à jour à\",\n recipient:\"Destinataire\",\n year:\"Année\",\n amt:\"AMT\",\n create_user_account:\"Créer un projet utilisateur\",\n edit_user_account: \"Modifier un projet utilisateur\",\n name_project:\"Nom du projet\",\n total_project_cost:\"Coût total du projet\",\n start_date:\"Date de début\",\n end_date:\"Date de fin\",\n update:\"Mise à jour\",\n delete_project:\"Supprimer le projet\",\n select_director_from_list: \"Sélectionnez un directeur dans la liste\",\n enter_custom_director: \"Directeur introuvable ? Ajoutez-en un personnalisé\",\n enter_director_name: \"Entrez le nom du directeur\",\n select_director: \"Sélectionner un directeur\",\n salutation: \"Salutation\",\n ask_amount: \"Montant demandé\",\n total_amount: \"Montant total\",\n application_information: \"Informations sur la demande\",\n instruction: \"Instructions\",\n restriction: \"Restrictions\",\n deadline: \"Date limite\",\n contact: \"Contact\",\n largest: \"Le plus grand\",\n average: \"Moyenne\",\n median: \"Médiane\",\n remove_funder: \"Supprimer les financeurs\",\n foundation_exists_other_projects: \"Cette fondation existe dans d'autres projets au sein de votre organisation\",\n remove_foundations_other_projects: \"Supprimer les financeurs d'autres projets\",\n application_info: \"Informations sur l'application\",\n average: \"Moyenne\",\n median: \"Médiane\",\n largest: \"Plus grand\",\n this_action_will_remove: \"Cette action supprimera\",\n from_this_project: \"de ce projet\",\n hide_customized_funders: \"Masquer les financeurs personnalisés\",\n project_funders: \"Financeurs du projet\",\n custom_letter: \"Lettre personnalisée\",\n change_project: \"Changer le projet\",\n return_grant_secretary: \"Retourner au secrétaire des subventions\",\n impact_report_letter: \"Lettre de rapport d'impact\",\n project_funders_master_document: \"Financeurs du projet / Document principal\",\n master_document: \"Document principal\",\n letter_of_inquiry: \"Lettre de demande\",\n proposal: \"Proposition\",\n thank_you_letter: \"Lettre de remerciement\",\n custom_document: \"Document personnalisé\",\n qualify: \"Qualifié\",\n favorites: \"Favoris\",\n favorite_funders: \"Financeurs favoris\",\n close: \"Fermer\",\n add_funders_to_project: \"Ajouter des financeurs au projet\",\n select_one_or_more_projects: \"Sélectionnez un ou plusieurs projets\",\n block_funders: \"Bloquer les financeurs\",\n print_funder_page: \"Imprimer la page du financeur\",\n move_to_previous_funder: \"Passer au financeur précédent\",\n move_to_next_funder: \"Passer au financeur suivant\",\n remove_this_funder_from_qualified: \"Supprimer ce financeur du statut qualifié et l'exclure de la liste des favoris.\",\n mark_funder_as_qualified: \"Marquer ce financeur comme qualifié.\",\n block_funder: \"Bloquer le financeur\",\n export_funders_to_excel: \"Exporter les financeurs vers Excel\",\n funder_name: \"Nom du financeur\",\n prev: \"Previo\",\n next: \"Précédent\",\n previous: \"Previo\",\n previous: \"Précédent\",\n visit_website: \"Visiter le site web\",\n notes: \"Notes\",\n add_note: \"Ajouter une note\",\n company: \"Entreprise\",\n email: \"Courriel\",\n website: \"Site web\",\n contact_infos: \"Informations de contact\",\n other_infos: \"Autres informations\",\n help_center:\"Centre d'aide\",\n profile_settings:\"Paramètres du profil\",\n hi:\"Salut\",\n user_profile:\"Profil utilisateur\",\n logout:\"Déconnexion\"\n },\n errors: {\n model_error: \"Vérifiez les erreurs et réessayez\",\n general_error: \"Une erreur s'est produite\",\n invalid_token: \"Jeton invalide\",\n confirming_account_error: \"Désolé, il y a un problème pour activer votre compte\",\n invalid_image: \"Image invalide\",\n inform_crop_area: \"Redimensionnez l'image pour qu'elle soit conforme aux dimensions requises\",\n funder_not_found: \"Financeur non trouvé\",\n select_at_least_one_funder: \"Veuillez sélectionner au moins un financeur avant de continuer\",\n select_one_or_more_funders_delete: \"Sélectionnez un ou plusieurs financeurs à supprimer\",\n select_one_or_more_funders_block: \"Sélectionnez un ou plusieurs financeurs à bloquer\",\n },\n success: {\n logout_success: \"Déconnexion de l'utilisateur réussie\",\n copied_to_clipboard: \"Copié dans le presse-papiers\",\n },\n messages: {\n password_recovery_message: \"Pour recevoir un nouveau mot de passe, entrez le nom d'utilisateur et l'adresse e-mail que vous avez utilisés pour vous inscrire\",\n inform_new_password_message: \"Veuillez entrer votre nouveau mot de passe\",\n setting_up_account_message: \"Pour activer votre compte, veuillez entrer le mot de passe et confirmer\",\n confirming_account_wait: \"Veuillez patienter pendant que nous confirmons votre compte\",\n first_letterhead_message: \"- L'en-tête doit mesurer environ 700 x 200 px.\",\n second_letterhead_message: \"- Les formats pris en charge sont .GIF, .png, .jpeg et .jpg.\",\n third_letterhead_message: \"- L'en-tête de votre organisation apparaîtra en haut de tous les documents.\",\n check_organization_settings_message: \"Veuillez vérifier les paramètres de l'en-tête du profil de votre organisation ou contacter le support.\",\n funders_not_selected_message: \"Veuillez sélectionner au moins un financeur avant de continuer\",\n select_one_favorite_list:'Veuillez sélectionner au moins une liste de favoris ou en créer une nouvelle',\n create_new_favorite_list:\"Créer une nouvelle liste de favoris\",\n add_funders_favorite_list:\"Ajouter un ou plusieurs bailleurs de fonds aux favoris\",\n delete_project:\"Êtes-vous sûr de vouloir supprimer ce projet?\",\n are_you_sure: \"Êtes-vous sûr?\",\n this_action_will_remove_document_funder: \"Cette action supprimera le document pour ce financeur\",\n this_action_will_remove_master_document: \"Cette action supprimera ce document principal\",\n want_to_remove_the_funder: \"Voulez-vous retirer la fondation de cette liste?\",\n this_will_remove_customized_documents: \"Cela supprimera {{documents}} document(s) personnalisé(s) et renverra le financeur à la liste principale. Pour supprimer définitivement les financeurs, supprimez-les de la liste principale.\",\n remove_the_funders_from_the_projects: \"Supprime les fondations des projets sélectionnés du projet actuel.\",\n select_in_dropdown_example: \"Par exemple, si vous sélectionnez un projet dans la liste déroulante et qu'il a 3 fondations, 'a', 'b' et 'c' et que le projet sur lequel vous travaillez a également 'a', 'b', 'c', celles-ci seront retirées du projet en cours.\",\n this_will_remove_funders_from_this_project: \"Cette action retirera {{funders}} fondation(s) de ce projet.\",\n },\n user_menu: {\n profile: \"Profil\",\n logout: \"Se déconnecter\",\n },\n side_menu: {\n administration: \"Administration\",\n manage_account: \"Gérer son compte\",\n manage_plans: \"Gérer les forfaits\",\n manage_coupons: \"Coupons\",\n manage_feedbacks: \"Rétroactions\",\n manage_deadlines: \"Délais\",\n account: \"Compte\",\n user_profile: \"Profil de l'utilisateur\",\n additional_users: \"Utilisateurs supplémentaires\",\n organization_profile: \"Profil de l'organisation\",\n project_manager: \"Chef de projet\",\n project_list: \"Projets\",\n project_archive: \"Projets archivés\",\n search_engine: \"Moteur de recherche\",\n by_giving_history: \"En donnant l'histoire\",\n by_name: \"De nom\",\n by_director: \"Par réalisateur\",\n by_year: \"Par année\",\n by_rating: \"Par note\",\n by_custom: \"Par personnalisé\",\n document_generator: \"Générateur de documents\",\n inquiry: \"Enquête\",\n proposal: \"Proposition\",\n budget: \"Budget\",\n custom_letter: \"Lettre personnalisée\",\n grant_secretary: \"Grant Secretary - Print\",\n manage_funders: \"Gérer les bailleurs de fonds\",\n favorites: \"Favoris\",\n blocked_funders: \"Bloqué\",\n custom_databases: \"bases de données personnalisées\",\n by_keyword: \"Par mots clés\",\n by_international_funding: \"Par financement international\",\n thank_you: \"Thank You\",\n impact_report: \"Impact Report\",\n previous: \"Précédent\",\n },\n buttons: {\n create_account: \"Créer un compte\",\n send: \"Envoyer\",\n reset_password: \"Réinitialiser le mot de passe\",\n add_user: \"Ajouter un utilisateur\",\n insert_user: \"Insérer un utilisateur\",\n save_changes: \"Enregistrer les modifications\",\n update_profile: \"Mettre à jour le profil\",\n add_email: \"Ajouter un e-mail\",\n select_header_file: \"Sélectionner le fichier d'en-tête\",\n select_footer_file: \"Sélectionner le fichier de pied de page\",\n update_account: \"Mettre à jour le compte\",\n create:\"Créer\",\n create_favorite_list:\"Créer une liste de favoris\",\n add:\"Ajouter\",\n confirm: \"Confirmer\",\n confirm_delete:\"Confirmer la suppression\",\n confirm_remove: \"Confirmer la suppression\",\n next: \"Suivant\",\n prev: \"Précédent\",\n add_funder: \"Ajouter un financeur\",\n },\n input_fields: {\n press_enter: \"Appuyez sur Entrée pour ajouter des mots-clés\",\n },\n accountCreated: \"Compte créé avec succès\",\n accountDisabled: \"Ce compte est désactivé. Pour plus de détails, contactez l'administrateur.\",\n accountDisabledSuccess: \"Compte désactivé avec succès\",\n accountEnabledSuccess: \"Compte activé avec succès\",\n accountNotActivated: \"Votre compte n'est pas actif. Veuillez vérifier votre e-mail pour activer votre compte\",\n accountUpdatedSuccess: \"Compte mis à jour avec succès\",\n additionalEmailNotFound: \"E-mail supplémentaire introuvable\",\n additionalEmailRemovedSuccess: \"E-mail supplémentaire supprimé avec succès\",\n additionalEmailSavedSuccess: \"E-mail supplémentaire enregistré avec succès\",\n additionalUserInsertSuccess: \"Utilisateur supplémentaire ajouté avec succès\",\n additionalUserUpdateSuccess: \"Utilisateur supplémentaire mis à jour avec succès\",\n addressBillingRequired: \"La facturation de l'adresse est obligatoire\",\n alertNotificationSavedSuccess: \"Notification d'alerte enregistrée avec succès\",\n cityBillingRequired: \"La facturation de la ville est obligatoire\",\n complementaryAddressBillingRequired: \"Une facturation d'adresse complémentaire est requise\",\n confirmRegisterUserSuccess: \"Merci d'avoir confirmé votre email\",\n countryBillingRequired: \"La facturation du pays est obligatoire\",\n countryNotFound: \"Pays introuvable\",\n emailExists: \"L'adresse mail existe déjà\",\n errorRegistration: \"Le modèle est vide\",\n expirationDateSavedSuccess: \"Date d'expiration enregistrée avec succès\",\n footerImageRequired: \"L'image de pied de page est obligatoire\",\n imageHeightLength: \"Hauteur d'image invalide\",\n imageWidthLength: \"Largeur d'image invalide\",\n invalidEmailAddress: \"Adresse e-mail invalide\",\n invalidLetterType: \"Type de lettre invalide\",\n invalidPhoneNumber: \"Numéro de téléphone invalide\",\n invalidSubscriptionPlan: \"Plan d'abonnement invalide\",\n invalidUserRole: \"Rôle d'utilisateur invalide\",\n letterheadSavedSuccess: \"En-tête enregistré avec succès\",\n licenseExpired: \"Votre licence a expiré. Pour plus de détails, veuillez contacter l'administrateur\",\n licenseNotFound: \"Aucune licence suffisante n'est disponible. Veuillez contacter support@grantadvance.com\",\n loginFailed: \"Nom d'utilisateur ou mot de passe invalide\",\n masterOnly: \"Seuls les utilisateurs maîtres ont accès à cette ressource\",\n notEnoughLicense: \"Votre organisation n'a pas de licence disponible. Si vous souhaitez ajouter des licences, veuillez cliquer ici pour acheter des licences supplémentaires\",\n notificationExists: \"La notification existe déjà\",\n notificationNotFound: \"Notification introuvable\",\n notificationTypeNotFound: \"Type de notification introuvable\",\n organizationDisabled: \"Cette organisation est désactivée. Pour plus de détails, contactez l'administrateur.\",\n organizationMainAddressUpdatedSuccess: \"Adresse principale de l'organisation mise à jour avec succès\",\n organizationNotFound: \"Organisation introuvable\",\n organizationProfileSavedSuccess: \"Profil d'organisation enregistré avec succès\",\n passwordModified: \"Mot de passe modifié avec succès\",\n passwordRecovery: \"Veuillez vérifier votre messagerie pour réinitialiser votre mot de passe.\",\n passwordReset: \"Réinitialisation du mot de passe réussie\",\n postalCodeBillingRequired: \"Le code postal est obligatoire\",\n profileNotFound: \"Profil non trouvé\",\n provinceOrStateBillingRequired: \"L'état s'impose\",\n provinceOrStateNotFound: \"Etat introuvable\",\n sendActivationLinkSuccess: \"L'e-mail d'activation a été envoyé avec succès\",\n sendPasswordResetSuccess: \"L'e-mail de réinitialisation du mot de passe a été envoyé avec succès\",\n sendSetupPasswordSuccess: \"L'e-mail de configuration du mot de passe a été envoyé avec succès\",\n separatedLicenceExpirationDateError: \"La date d'expiration des licences séparées ne peut pas être supérieure à la date d'expiration de la licence principale\",\n settingUpAccountSuccess: \"Votre compte a été activé avec succès. Vous pouvez maintenant vous connecter\",\n signatureSavedSuccess: \"Signature enregistrée avec succès\",\n subscriptionPlanNotFound: \"Plan d'abonnement introuvable\",\n userLogoutSuccess: \"Déconnexion de l'utilisateur réussie\",\n userNameExists: \"Ce nom d'utilisateur est déjà pris\",\n userNotAllowed: \"L'utilisateur n'est pas autorisé à se connecter\",\n userNotFound: \"Utilisateur non trouvé\",\n userProfileSavedSuccess: \"Profil utilisateur enregistré avec succès\",\n wrongCurrentPassword: \"Mot de passe actuel incorrect\",\n additionalUsersRequired: \"Les utilisateurs supplémentaires sont requis\",\n addressRequired: \"L'adresse est obligatoire\",\n amountDaysRequired: \"Le nombre de jours est obligatoire\",\n amountLicensesRequired: \"Le nombre de licences est requis\",\n amountMonthsRequired: \"Le nombre de mois est requis\",\n amountYearsRequired: \"Le nombre d'années est requis\",\n planAmountRequired: \"Le montant du plan est requis\",\n billingAddressLine2Required: \"L'adresse de facturation complémentaire est obligatoire\",\n billingAddressRequired: \"L'adresse de facturation est obligatoire\",\n billingCityRequired: \"La ville de facturation est obligatoire\",\n billingCountryRequired: \"La facturation du pays est obligatoire\",\n billingPostalCodeRequired: \"Le code postal est obligatoire\",\n billingProvinceOrStateRequired: \"La province/l'état de facturation est obligatoire\",\n cityRequired: \"La ville s'impose\",\n companyNameRequired: \"Le nom de l'entreprise est obligatoire\",\n businessEinRequired: \"BN/EIN est obligatoire\",\n compareConfirmPassword: \"Le mot de passe et le mot de passe de confirmation ne correspondent pas.\",\n complementaryAddressRequired: \"L'adresse complémentaire est obligatoire\",\n confirmPasswordRequired: \"Le mot de passe de confirmation est requis\",\n countryRequired: \"Le pays est requis\",\n displayPlanRequired: \"Le plan d'affichage est obligatoire\",\n emailRequired: \"L'e-mail est obligatoire\",\n firstNameRequired: \"Le prénom est obligatoire\",\n headerImageRequired: \"L'image d'en-tête est obligatoire\",\n invalidEmail: \"Cette adresse email est invalide\",\n invalidRole: \"Rôle d'utilisateur invalide\",\n lastNameRequired: \"Le nom de famille est obligatoire\",\n licenseAmountRange: \"Le nombre de licences doit être supérieur à zéro\",\n licenseRequired: \"La licence est obligatoire\",\n newPasswordRequired: \"Le nouveau mot de passe est requis\",\n notificationTypeRequired: \"Le type de notification est requis\",\n oldPasswordRequired: \"L'ancien mot de passe est requis\",\n organizationIdRequired: \"L'identifiant de l'organisation est requis\",\n passwordLength: \"Le {0} doit contenir au moins {2} et au maximum {1} caractères.\",\n passwordRequired: \"Le mot de passe est obligatoire\",\n phoneRequired: \"Le numéro de téléphone est obligatoire\",\n planDescriptionRequired: \"La description du plan est obligatoire\",\n postalCodeRequired: \"Le code postal est obligatoire\",\n provinceOrStateRequired: \"L'état s'impose\",\n roleRequired: \"Le rôle est requis\",\n signatureRequired: \"La signature est obligatoire\",\n subscriptionPlanNameRequired: \"Le plan d'abonnement est obligatoire\",\n tokenRequired: \"Le jeton est requis\",\n userIdRequired: \"L'ID utilisateur est requis\",\n userNameRequired: \"Le e-mail est requis\",\n planNameRequired: \"Le nom du plan interne est requis\",\n customLetterRequired: \"La lettre personnalisée est obligatoire\",\n customLetterSavedSuccess: \"Lettre personnalisée enregistrée avec succès\",\n customTagDeleteSuccess: \"Balise personnalisée supprimée avec succès\",\n customTagInsertSuccess: \"Balise personnalisée créée avec succès\",\n customTagNotFound: \"Tag personnalisé introuvable\",\n customTagUpdateSuccess: \"Balise personnalisée mise à jour avec succès\",\n documentStateInsertSuccess: \"État du document créé avec succès\",\n inquiryLetterRequired: \"La lettre de demande est obligatoire\",\n inquiryLetterSavedSuccess: \"Lettre de demande enregistrée avec succès\",\n proposalLetterRequired: \"La lettre de proposition est obligatoire\",\n proposalLetterSavedSuccess: \"Lettre de proposition enregistrée avec succès\",\n userProjectRequired: \"Le projet utilisateur est obligatoire\",\n customDocumentTypeRequired: \"Le type de document est obligatoire\",\n documentAmountRequired: \"Le montant est requis\",\n documentFlaggedRequired: \"La date est obligatoire\",\n documentStateRequired: \"L'état du document est obligatoire\",\n tagDescriptionRequired: \"La description de la balise est obligatoire\",\n tagNameRequired: \"Le nom de la balise est obligatoire\",\n blockedFundersDeleteAllSuccess: \"Tous les bailleurs de fonds ont été débloqués avec succès\",\n blockedFundersDeleteSuccess: \"Fondateur débloqué avec succès\",\n blockedFundersInsertSuccess: \"Fondateur bloqué avec succès\",\n blockedFundersNotFound: \"Bailleur de fonds bloqué introuvable\",\n customDatabaseDeleteSuccess: \"Base de données personnalisée supprimée avec succès\",\n customDatabaseFieldsMapRequired: \"S'il vous plaît. Configurez tous les champs obligatoires avant de continuer\",\n customDatabaseNotFound: \"Base de données personnalisée introuvable\",\n customDatabaseUserFieldsEmpty: \"La liste des champs de configuration est vide\",\n favoriteDeleteSuccess: \"Favori supprimé avec succès\",\n favoriteDuplicateSuccess: \"Favori dupliqué avec succès\",\n favoriteFundersDeleteSuccess: \"Le bailleur de fonds préféré a été supprimé avec succès\",\n favoriteFundersInsertSuccess: \"{{fundersAmount}} bailleurs de fonds ajoutés à la liste des bailleurs de fonds {{favoriteName}}\",\n favoriteFundersNotFound: \"Bailleur de fonds préféré introuvable\",\n favoriteFundersUpdateSuccess: \"Mise à jour du bailleur de fonds préféré avec succès\",\n favoriteInsertSuccess: \"Favori créé avec succès\",\n favoriteNotFound: \"Favori introuvable\",\n favoriteUpdateSuccess: \"Mise à jour favorite réussie\",\n fundersListEmpty: \"La liste des bailleurs de fonds est vide\",\n noteDeleteSuccess: \"Note supprimée avec succès\",\n noteInsertSuccess: \"Note créée avec succès\",\n noteNotFound: \"Note introuvable\",\n noteUpdateSuccess: \"Note mise à jour avec succès\",\n noteRequired: \"Une note est requise avant de joindre des documents\",\n notificationDateRequired: \"La date de notification est obligatoire\",\n emailListRequired: \"Sélectionnez l'e-mail\",\n customDatabaseFileRequired: \"Le fichier excel est obligatoire\",\n favoriteNameRequired: \"Le nom du favori est requis\",\n favoriteRequired: \"Le favori est obligatoire\",\n foundationRequired: \"La fondation s'impose\",\n jsonUserFieldsMapRequired: \"S'il vous plaît. Configurez tous les champs obligatoires avant de continuer\",\n labelTypeRequired: \"Le type d'étiquette est obligatoire\",\n letterTypeRequired: \"Sélectionner le type de document à imprimer\",\n noteDescriptionRequired: \"Le descriptif est obligatoire\",\n noteTitleRequired: \"Le titre est obligatoire\",\n bundleInsertSuccess: \"Bundle créé avec succès\",\n bundleNotFound: \"Groupe introuvable\",\n bundleTaskCount: \"Entrez au moins une tâche\",\n bundleTaskNotFound: \"Une ou plusieurs tâches sont introuvables\",\n flagDateRequired: \"La date est obligatoire\",\n flagUpdateSuccess: \"Drapeau mis à jour avec succès\",\n projectBudgetCategoryDescriptionRequired: \"La description de la catégorie est obligatoire\",\n projectBudgetDeleteSuccess: \"Budget supprimé avec succès\",\n projectBudgetDescriptionExists: \"Cette description existe déjà\",\n projectBudgetInsertSuccess: \"Budget ajouté avec succès\",\n projectBudgetNotFound: \"Budget introuvable\",\n projectBudgetResetSuccess: \"Budget réinitialisé avec succès\",\n projectBudgetUpdateSuccess: \"Budget mis à jour avec succès\",\n projectEndDateRequired: \"La date de fin est obligatoire\",\n projectFundersDeleteSuccess: \"Project Funder supprimé avec succès\",\n projectFundersEmpty: \"Veuillez sélectionner au moins un bailleur de fonds avant de continuer\",\n projectFundersInsertSuccess: \"{{funderAmount}} bailleurs de fonds ajoutés au {{projectName}}\",\n projectStartDateRequired: \"La date de début est obligatoire\",\n taskDeleteSuccess: \"Tâche supprimée avec succès\",\n taskEditSuccess: \"Tâche mise à jour avec succès\",\n taskInsertSuccess: \"Tâche créée avec succès\",\n taskListEmpty: \"La liste des tâches est vide\",\n taskNotFound: \"Tâche introuvable\",\n userProjectArchivedSuccess: \"Projet utilisateur archivé avec succès\",\n userProjectDeleteSuccess: \"Projet utilisateur supprimé avec succès\",\n userProjectEndDateRequired: \"La date de fin est obligatoire\",\n userProjectInsertSuccess: \"Projet utilisateur créé avec succès\",\n userProjectListEmpty: \"Sélectionner un ou plusieurs projets\",\n userProjectNotFound: \"Projet introuvable\",\n userProjectStartDateInvalid: \"La date de début est invalide\",\n userProjectStartDateRequired: \"La date de début est obligatoire\",\n userProjectUnarchivedSuccess: \"Projet utilisateur désarchivé avec succès\",\n userProjectUpdateSuccess: \"Projet utilisateur mis à jour avec succès\",\n budgetTypeInvalid: \"Le type de budget n'est pas valide\",\n bundleDescriptionRequired: \"La description du bundle est obligatoire\",\n bundleNameRequired: \"Le nom du bundle est requis\",\n bundleTaskRequired: \"La liste des tâches est obligatoire\",\n flagAmountInvalid: \"Le montant est invalide\",\n flagAmountRequired: \"Le montant est requis\",\n flagStatusRequired: \"Le statut est requis\",\n foundationNameRequired: \"Le nom de la fondation est obligatoire\",\n foundationSourceTypeRequired: \"La source de la fondation est obligatoire\",\n profileIdRequired: \"Le profil est obligatoire\",\n projectBudgetAmountRequired: \"Le montant du budget est requis\",\n projectBudgetDescriptionRequired: \"La description du budget est obligatoire\",\n projectCostInvalid: \"Le coût du projet est invalide\",\n projectCostRequired: \"Le coût du projet est obligatoire\",\n projectDescriptionRequired: \"La description du projet est obligatoire\",\n projectNameRequired: \"Le nom du projet est obligatoire\",\n projectStatusInvalid: \"Le statut du projet est invalide\",\n taskDescriptionRequired: \"La description de la tâche est obligatoire\",\n taskNameRequired: \"Le nom de la tâche est obligatoire\",\n foundationInsertSuccess: \"Fondation ajoutée avec succès\",\n savedSearchDeleteSuccess: \"Recherche supprimée avec succès\",\n savedSearchDescriptionExists: \"Cette description existe déjà\",\n savedSearchInsertSuccess: \"Recherche ajoutée avec succès\",\n savedSearchNotFound: \"Recherche enregistrée introuvable\",\n savedSearchTypeInvalid: \"Le type de recherche enregistré n'est pas valide\",\n savedSearchUpdateSuccess: \"Recherche mise à jour avec succès\",\n descriptionRequired: \"Le descriptif est obligatoire\",\n jsonFieldsRequired: \"Le champ de recherche est obligatoire\",\n searchTypeRequired: \"Le type de recherche est obligatoire\",\n userProjectCompleted: \"Ce projet est marqué comme terminé\",\n sendOnlineApplicationSuccess: \"Message de candidature en ligne envoyé avec succès\",\n sendSuggestionSuccess: \"Suggestion envoyée avec succès\",\n urlRequired: \"L'url est obligatoire\",\n noteSubjectRequired: \"Le sujet est obligatoire\",\n accountDeleted: \"Ce compte a été supprimé. Contactez l'administrateur\",\n userRemovedSuccess: \"Compte supprimé avec succès\",\n userNameOrEmailRequired: \"The User or e-mail name is required\",\n fieldRequired: \"Ce champ est obligatoire\",\n pickupNewPassword: \"Veuillez prendre un nouveau mot de passe\",\n passwordMinCharacter: \"Veuillez saisir au moins {{minimumCharaters}} caractères\",\n enterSameValueAgain: \"Veuillez saisir à nouveau la même valeur\",\n feedbackSubmitted: \"Commentaires soumis avec succès\",\n feedbackInvalidGrantSize: \"Le montant de la subvention n’est pas valide ou trop important\",\n feedbackReviewUpdated: \"Mise à jour de l’avis\",\n announcementDescriptionRequired: \"La description de l'annonce est obligatoire\",\n announcementReleaseDateRequired: \"La date de sortie de l'annonce est requise\",\n announcementReleaseDateInvalid: \"Past dates are not allowed for the Release date\",\n announcementTypeRequired: \"Le type d'annonce est obligatoire\",\n announcementNotFound: \"Annonce introuvable\",\n announcementInsertSuccess: \"Annonce ajoutée avec succès\",\n announcementUpdateSuccess: \"Annonce mise à jour avec succès\",\n announcementDeleteSuccess: \"Annonce supprimée avec succès\",\n notificationNotFound: \"Notification not found\",\n couponNameRequired: \"Le nom du coupon est obligatoire\",\n couponCodeRequired: \"Le code promo est requis\",\n couponCodeFormatInvalid: \"Le code promo n’est pas valide\",\n codeLengthInvalid: \"Maximum de 15 caractères\",\n couponExpirationDateRequired: \"La date ne peut pas être postérieure à plus de 6 mois.\",\n couponExpirationMaxValue: \"La fecha no puede ser mayor a 6 meses a partir de hoy\",\n couponExpirationDateInvalid: \"Date d’expiration non valide\",\n couponSubscriptionPlanRequired: \"Le plan d’abonnement au coupon est requis\",\n couponExtraMonthsAmountInvalid: \"Le mois supplémentaire ne permet que le numéro 1 à 99\",\n couponDiscountAmountInvalid: \"La réduction ne permet que le numéro 1 à 90\",\n couponCodeAlreadyExist: \"Le code promo a déjà été utilisé\",\n couponSubscriptionNotFound: \"La formule d’abonnement est introuvable\",\n couponNotFound: \"Coupon introuvable\",\n couponSelectType: \"Veuillez choisir entre le temps supplémentaire ou la réduction\",\n couponInsertSuccess: \"Coupon ajouté avec succès\",\n couponUpdateSuccess: \"Coupon mis à jour avec succès\",\n couponDeleteSuccess: \"Le coupon a été supprimé avec succès\",\n couponPauseUpdateSuccess: \"Coupon mis à jour avec succès\",\n deadlineEINRequired: \"L’EIN est requis\",\n deadlineFoundationNameRequired: \"Le nom de la fondation est obligatoire\",\n deadlineCategoryRequired: \"La catégorie est obligatoire\",\n deadlineURLRequired: \"L’URL de la date limite est requise\",\n deadlineCountryRequired: \"Le pays est requis\",\n deadlineDateInvalid: \"Permettre uniquement les dates futures\",\n deadlineAmountToobig: \"Le montant de la subvention est trop élevé\",\n deadlineImportSuccess: \"{{fileName}} importé avec succès\",\n deadlineImportSuccessWithWarning: \"Le fichier a été importé avec succès. Cependant, certains éléments ont des ID de profil non valides. Veuillez les mettre à jour en conséquence\",\n deadlineUpdateSuccess: \"Date limite mise à jour avec succès\",\n deadlineDeleteSuccess: \"Fecha límite eliminada con éxito\",\n deadlineRemovePopupMessage: \"Cette action supprimera cette échéance\",\n deadlineReviewCorrectInformation: \"Veuillez vérifier et corriger les informations\",\n deadlineInvalidFoundationDataField: \"Les données fournies par la fondation contiennent une entrée invalide pour le champ {{invalidData}}.\",\n deadlineInvalidFoundationDataFields: \"Les données fournies par la fondation contiennent des entrées non valides pour les champs suivants : {{invalidData}}.\",\n deadlineImportFilePrompt: \"Voulez-vous importer ce fichier ?\",\n thankYouLetterSavedSuccess: \"Lettre de remerciement enregistrée avec succès\",\n impactReportLetterSavedSuccess: \"Lettre de rapport d'impact enregistrée avec succès\",\n historyTypeRequired: \"Le type d'historique est requis\",\n startDateRequired: \"La date de début est obligatoire\",\n startDateInvalid: \"Veuillez sélectionner une date postérieure à aujourd'hui\",\n dateMin: \"Veuillez sélectionner une date ultérieure à aujourd'hui\",\n referralNameCharityRequired: \"Nom de l'organisme de bienfaisance est obligatoire\",\n referralNameContactRequired: \"Nom du contact est obligatoire\",\n referralSubmitted: \"Référence soumise avec succès. Parrainer une autre association caritative\",\n funderQualifiedSuccess: \"Foundation qualified successfully\",\n funderDisqualifiedSuccess: \"Foundation disqualified successfully\",\n templateApplying: \"Pour postuler, veuillez patienter...\",\n templateApplyWarning: \"L’application de cette méthode peut prendre quelques minutes\",\n historyTimeline: {\n fuderAdded: \"Fondation ajoutée au projet\",\n funderRemoved: \"Fondation retirée du projet\",\n noteAdded: \"Note ajoutée\",\n foundationProfileView: \"Profil de la fondation consulté sur le projet\",\n customDoc: \"Document personnalisé\",\n masterDoc: \"Document principal\",\n createdOnProject: \"créé sur le projet\",\n deletedOnProject: \"supprimé sur le projet\",\n statusUpdated: \"Statut mis à jour à\",\n onProject: \"sur le projet\"\n }\n};\n","import ReactDOM from 'react-dom';\n\n// third party\nimport { BrowserRouter } from 'react-router-dom';\nimport { Provider } from 'react-redux';\n\n// project imports\nimport * as serviceWorker from 'serviceWorker';\nimport App from 'App';\nimport Store from 'store';\n\n// style + assets\nimport 'assets/scss/style.scss';\nimport 'App.scss';\n// i18n translations\nimport \"translations/i18n\";\n\n// ==============================|| REACT DOM RENDER ||============================== //\n\nReactDOM.render(\n \n \n \n \n ,\n document.getElementById('root')\n);\n\n// If you want your app to work offline and load faster, you can change\n// unregister() to register() below. Note this comes with some pitfalls.\n// Learn more about service workers: https://bit.ly/CRA-PWA\nserviceWorker.unregister();\n","// theme constant\nexport const gridSpacing = 3;\nexport const drawerWidth = 260;\nexport const appDrawerWidth = 320;\n","import { emptySplitApi } from './index'\n\nexport const searchEngineApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n searchBySearchType: builder.mutation({\n query: ({ searchType, ...model }) => ({\n url: `api/v1/search-engine-service/search/${searchType}`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByGivingHistory: builder.mutation({\n query: ({ searchType, ...model }) => ({\n url: `api/v1/search-engine-service/search/by-giving-history`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByGivingHistoryV2: builder.mutation({\n query: ({ searchType, ...model }) => ({\n url: `api/v2/search-engine-service/search/by-giving-history`,\n method: \"POST\",\n body: model\n }),\n }),\n getGrantDetails: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/grant-details/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n getGrantDetailsV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/grant-details/${model.profileId}`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByName: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-name`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByNameV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/by-name`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByDirector: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-director`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByDirectorV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/by-director`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByYear: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-year`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByRating: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-rating`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByCustom: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-custom`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByCustomV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/by-custom`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByKeyword: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-keywords`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByKeywordV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/by-keywords`,\n method: \"POST\",\n body: model\n }),\n }),\n getCountries: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/country`,\n method: \"GET\",\n }),\n }),\n getInternacionalCountries: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/country/internacional`,\n method: \"GET\",\n }),\n }),\n getCounties: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/country/counties`,\n method: \"POST\",\n body: model\n }),\n }),\n getCitiesByCounties: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/country/cities-by-counties`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByInternacionalFunding: builder.mutation({\n query: (model) => ({\n url: `api/v1/search-engine-service/search/by-internacional-funding`,\n method: \"POST\",\n body: model\n }),\n }),\n searchByInternacionalFundingV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/by-internacional-funding`,\n method: \"POST\",\n body: model\n }),\n }),\n getEnhancedWordsV2: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/enhancement-words`,\n method: \"POST\",\n body: model\n }),\n }),\n searchDeadlines: builder.mutation({\n query: (model) => ({\n url: `api/v2/search-engine-service/search/deadlines`,\n method: \"POST\",\n body: model\n }),\n }),\n getFoundationApplicationByProfileId: builder.mutation({\n query: (profileId) => ({\n url: `api/v2/search-engine-service/search/application-foundation/${profileId}`,\n method: \"GET\",\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const {\n useSearchBySearchTypeMutation,\n useSearchByGivingHistoryMutation,\n useSearchByGivingHistoryV2Mutation,\n useGetGrantDetailsMutation,\n useGetGrantDetailsV2Mutation,\n useSearchByNameMutation,\n useSearchByDirectorMutation,\n useSearchByYearMutation,\n useSearchByRatingMutation,\n useSearchByCustomMutation,\n useSearchByCustomV2Mutation,\n useSearchByKeywordMutation,\n useGetCountriesMutation,\n useGetCountiesMutation,\n useGetCitiesByCountiesMutation,\n useGetInternacionalCountriesMutation,\n useSearchByInternacionalFundingMutation,\n useSearchByInternacionalFundingV2Mutation,\n useGetEnhancedWordsV2Mutation,\n useSearchByNameV2Mutation,\n useSearchByDirectorV2Mutation,\n useSearchByKeywordV2Mutation,\n useSearchDeadlinesMutation,\n useGetFoundationApplicationByProfileIdMutation\n} = searchEngineApi;\n","import PropTypes from 'prop-types';\nimport { forwardRef } from 'react';\n\n// material-ui\nimport { useTheme } from '@mui/material/styles';\nimport { Card, CardContent, CardHeader, Divider, Typography, Grid } from '@mui/material';\n\n// ==============================|| CUSTOM SUB CARD ||============================== //\n\nconst SubCard = forwardRef(({ children, content, contentClass, darkTitle, secondary, sx = {}, contentSX = {}, title, extra, ...others }, ref) => {\n const theme = useTheme();\n return (\n \n {/* card header and action */}\n { extra.length === 0 ? \n ( \n !darkTitle && title && \n {title}} action={secondary} />\n )\n : ( \n !darkTitle && title && (\n \n \n {title} \n \n {extra && (\n \n \n {extra.map((item, index) => (\n 0 ? theme.spacing(2) : 0 }}>\n {item}\n \n ))}\n \n \n )}\n \n }\n action={secondary}\n />\n )\n )}\n\n { extra.length === 0 ? \n ( \n darkTitle && title && \n {title}} action={secondary} />\n )\n : (\n darkTitle && title && (\n \n \n {title} \n \n {extra && (\n \n \n {extra.map((item, index) => (\n 0 ? theme.spacing(2) : 0 }}>\n {item}\n \n ))}\n \n \n )}\n \n }\n action={secondary}\n />\n )\n )}\n\n {/* content & header divider */}\n {title && (\n \n )}\n\n {/* card content */}\n {content && (\n \n {children}\n \n )}\n {!content && children}\n \n );\n});\n\nSubCard.propTypes = {\n children: PropTypes.node,\n content: PropTypes.bool,\n contentClass: PropTypes.string,\n darkTitle: PropTypes.bool,\n secondary: PropTypes.oneOfType([PropTypes.node, PropTypes.string, PropTypes.object]),\n sx: PropTypes.object,\n contentSX: PropTypes.object,\n title: PropTypes.oneOfType([PropTypes.node, PropTypes.string, PropTypes.object]),\n extra: PropTypes.arrayOf(PropTypes.node)\n};\n\nSubCard.defaultProps = {\n content: true,\n extra: []\n};\n\nexport default SubCard;\n","import { emptySplitApi } from './index'\n\nexport const subscriptionPlanApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getPublicPlans: builder.query({\n query: () => `api/v1/auth-service/plan/public` ,\n }),\n getPlans: builder.query({\n query: () => `api/v1/auth-service/plan` ,\n }),\n createSubscriptionPlan : builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/plan/create-subscription-plan`,\n method: \"POST\",\n body: model\n })\n }),\n getSubscriptionPlan: builder.mutation({\n query: (subscriptionPlanId) => ({\n url: `api/v1/auth-service/plan/subscription-plan/${subscriptionPlanId}`,\n method: \"GET\",\n }),\n }),\n getSubscriptionPlanFormatted: builder.mutation({\n query: (subscriptionPlanId) => ({\n url: `api/v1/auth-service/plan/subscription-plan-formatted/${subscriptionPlanId}`,\n method: \"GET\",\n }),\n }),\n updateSubscriptionPlan: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/plan/edit-subscription-plan/`,\n method: \"PATCH\",\n body: model\n }),\n }),\n getAllSubscriptionPlansPagedList: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/plan/all-subscription-plan?`\n + `searchTerm=${model?.searchTerm || ''}`\n + `&status=${model?.status}`\n + `&pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'subscriptionPlanName'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`,\n method: \"GET\"\n }),\n }),\n deleteSubscriptionPlan: builder.mutation({\n query: (subscriptionPlanId) => ({\n url: `api/v1/auth-service/plan/${subscriptionPlanId}`,\n method: \"DELETE\",\n }),\n }),\n applySubscriptionPlanTax: builder.mutation({\n query: (model) => ({\n url: `api/v1/auth-service/plan/apply-subscription-plan-tax`,\n method: \"POST\",\n body: model\n }),\n }),\n\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetPublicPlansQuery, \n useGetPlansQuery, \n useCreateSubscriptionPlanMutation,\n useGetSubscriptionPlanMutation,\n useGetSubscriptionPlanFormattedMutation,\n useUpdateSubscriptionPlanMutation,\n useGetAllSubscriptionPlansPagedListMutation,\n useDeleteSubscriptionPlanMutation,\n useApplySubscriptionPlanTaxMutation\n} = subscriptionPlanApi;\n","import { nonUserApi } from './index'\n\nconst getSEPath = (string) => {\n if (!string) {\n return \"search-engine-service\";\n }\n return string?.length > 10 ? \"search-engine-ca-service\" : \"search-engine-service\";\n}\n\nconst getSEPathFromCountryCode = (countryCode) => {\n return countryCode === \"CA\" ? \"search-engine-ca-service\" : \"search-engine-service\";\n}\n\nexport const publicProfileApi = nonUserApi.injectEndpoints({\n endpoints: (builder) => ({\n getPublicProfile: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile`,\n method: \"GET\",\n params: { profileId }\n }),\n }),\n getPublicFinancialList: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/financial-list`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicApplication: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/applications`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicGiftsPagedList: builder.query({\n query: (filters) => ({\n url: `api/v2/${getSEPath(filters.profileId)}/public-foundation-profile/gifts/${filters.profileId}`,\n method: \"POST\",\n body: { ...filters },\n }),\n }),\n getPublicCounties: builder.mutation({\n query: (params) => ({\n url: `api/v1/${getSEPathFromCountryCode(params.country)}/public-foundation-profile/counties`,\n method: \"POST\",\n body: params.codes,\n }),\n }),\n getPublicDirectorsPagedList: builder.query({\n query: (filters) => ({\n url: `api/v1/${getSEPath(filters.profileId)}/public-foundation-profile/directors/${filters.profileId}`,\n method: \"GET\",\n params: { ...filters },\n }),\n }),\n getPublicTaxReturn: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/tax-return`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicChartProvinceList: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/charts/province-list`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicRangeAmountList: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/charts/range-amount`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicRangeSectorList: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/charts/range-sector`,\n method: \"GET\",\n params: { profileId },\n }),\n }),\n getPublicSector: builder.query({\n query: (profileId) => ({\n url: `api/v1/${getSEPath(profileId)}/public-foundation-profile/sector`,\n method: \"GET\",\n }),\n }),\n }),\n overrideExisting: false,\n});\n\nexport const {\n useGetPublicProfileQuery,\n useGetPublicFinancialListQuery,\n useGetPublicApplicationQuery,\n useGetPublicGiftsPagedListQuery,\n useGetPublicCountiesMutation,\n useGetPublicDirectorsPagedListQuery,\n useGetPublicTaxReturnQuery,\n useGetPublicChartProvinceListQuery,\n useGetPublicSectorQuery,\n useGetPublicRangeAmountListQuery,\n useGetPublicRangeSectorListQuery,\n} = publicProfileApi;","import { emptySplitApi } from './index'\n\nexport const projectFundersApi = emptySplitApi.injectEndpoints({\n endpoints: (builder) => ({\n getAllProjectFunders: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'userName'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`\n + `&userProjectId=${model?.userProjectId}`\n + `&letterType=${model?.letterType}`\n + `&withCustomDocument=${false}`,\n method: \"GET\"\n }),\n }),\n getAllProjectFundersCustomDocument: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'userName'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`\n + `&userProjectId=${model?.userProjectId}`\n + `&letterType=${model?.letterType}`\n + `&flagFilter=${model?.flagFilter}`\n + `&withCustomDocument=${true}`,\n method: \"GET\"\n }),\n }),\n getAllProjectFundersDocument: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/v2?`\n + `pageNumber=${model?.pageNumber || 0}`\n + `&pageSize=${model?.pageSize || ''}`\n + `&orderField=${model?.orderField || 'userName'}`\n + `&orderDirection=${model?.orderDirection || 'asc'}`\n + `&userProjectId=${model?.userProjectId}`\n + `&flagFilter=${model?.flagFilter}`\n + `&documentType=${model?.documentType || 'All'}`\n + `&foundationStatus=${model?.foundationStatus || 'All'}`,\n method: \"GET\"\n }),\n }),\n getProjectFundersList: builder.mutation({\n query: ({ userProjectId }) => ({\n url: `api/v1/project-service/project-funders/list/${userProjectId}`,\n method: \"GET\"\n })\n }),\n getFunderProjects: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/funder-projects?`\n + `funderId=${model.funderId}`\n + `¤tProjectId=${model.currentProjectId}`,\n method: \"GET\",\n }),\n }),\n insertProjectFunders: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders`,\n method: \"POST\",\n body: model\n }),\n }),\n getAllProjectFundersProfileId: builder.mutation({\n query: (userProjectId) => ({\n url: `api/v1/project-service/project-funders/${userProjectId}`,\n method: \"GET\",\n }),\n }),\n insertFunderToProjects: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/projects`,\n method: \"POST\",\n body: model\n }),\n }),\n getProjectFundersCustomDocument: builder.mutation({\n query: ({userProjectId, letterType}) => ({\n url: `api/v1/project-service/project-funders/custom-document/${userProjectId}/${letterType}`,\n method: \"POST\"\n }),\n }),\n updateFlag: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/flag-update`,\n method: \"POST\",\n body: model\n }),\n }),\n bulkUpdateFlag: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/bulk-flag-update`,\n method: \"POST\",\n body: model\n }),\n }),\n removeManyProjectFunders: builder.mutation({\n query: ({ userProjectId, profileIdList }) => ({\n url: `api/v1/project-service/project-funders/remove-many/${userProjectId}`,\n method: \"DELETE\",\n body: [...profileIdList]\n }),\n }),\n removeCurrentFundersFromOtherProjects: builder.mutation({\n query: ({ userProjectId, selectedProjectIdList }) => ({\n url: `api/v1/project-service/project-funders/remove-from-projects/${userProjectId}`,\n method: \"DELETE\",\n body: [...selectedProjectIdList]\n }),\n }),\n removeFundersFromProjects: builder.mutation({\n query: (model) => ({\n url: `api/v1/project-service/project-funders/remove-funders-from-projects`,\n method: \"DELETE\",\n body: model\n }),\n }),\n\n }),\n overrideExisting: false,\n});\n\nexport const { \n useGetAllProjectFundersMutation,\n useGetAllProjectFundersCustomDocumentMutation,\n useGetProjectFundersListMutation,\n useGetFunderProjectsMutation,\n useInsertProjectFundersMutation,\n useGetAllProjectFundersProfileIdMutation,\n useInsertFunderToProjectsMutation,\n useGetProjectFundersCustomDocumentMutation,\n useUpdateFlagMutation,\n useBulkUpdateFlagMutation,\n useRemoveManyProjectFundersMutation,\n useRemoveCurrentFundersFromOtherProjectsMutation,\n useRemoveFundersFromProjectsMutation,\n useGetAllProjectFundersDocumentMutation,\n} = projectFundersApi;\n","\nconst startcase = (str, force = true) => {\n if(!str) return null;\n \n if(force === true)\n str = str.toLowerCase();\n\n return str.replace(/\\b\\w/g, match => match.toUpperCase());\n}\n\nexport default startcase;"],"sourceRoot":""}