Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

admin/donation: Allow to sync donation amount with payment amount #1738

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 119 additions & 11 deletions src/components/admin/donations/grid/Grid.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React, { useState } from 'react'
import { UseQueryResult } from '@tanstack/react-query'
import { UseQueryResult, useMutation, useQueryClient } from '@tanstack/react-query'
import { useTranslation } from 'next-i18next'
import { Box, Tooltip } from '@mui/material'
import { Edit } from '@mui/icons-material'
import { Box, IconButton, Tooltip } from '@mui/material'

import { Autorenew, Edit } from '@mui/icons-material'
import {
DataGrid,
GridColDef,
Expand All @@ -23,6 +24,11 @@ import RenderEditPersonCell from './RenderEditPersonCell'
import { useStores } from '../../../../common/hooks/useStores'

import Link from 'next/link'
import { useSession } from 'next-auth/react'
import { endpoints } from 'service/apiEndpoints'
import { apiClient } from 'service/apiClient'
import { authConfig } from 'service/restRequests'
import { AlertStore } from 'stores/AlertStore'

interface RenderCellProps {
params: GridRenderCellParams
Expand All @@ -36,6 +42,7 @@ const addIconStyles = {
}
export default observer(function Grid() {
const { donationStore } = useStores()
const queryClient = useQueryClient()

const [paginationModel, setPaginationModel] = useState({
pageSize: 10,
Expand All @@ -48,9 +55,48 @@ export default observer(function Grid() {
const campaignId = router.query.campaignId as string | undefined
const paymentId = router.query.paymentId as string | undefined

const syncMutation = useMutation({
mutationFn: async (id: string) => {
return await apiClient.patch(
endpoints.donation.synchronizeWithPayment(id).url,
null,
authConfig(session?.accessToken),
)
},
onError: () => {
AlertStore.show(t('common:alerts.error'), 'error')
queryClient.invalidateQueries([
endpoints.donation.donationsList(
paymentId,
campaignId,
{ pageIndex: paginationModel.page, pageSize: paginationModel.pageSize },
donationStore.donationFilters,
donationStore.donationSearch ?? '',
).url,
])
},
onSuccess: () => {
AlertStore.show(t('common:alerts.message-sent'), 'success')
queryClient.invalidateQueries([
endpoints.donation.donationsList(
paymentId,
campaignId,
{ pageIndex: paginationModel.page, pageSize: paginationModel.pageSize },
donationStore.donationFilters,
donationStore.donationSearch ?? '',
).url,
])
},
})
const { data: session } = useSession()

const canEditFinancials = session?.user?.realm_access?.roles.includes(
'account-edit-financials-requests',
)

const {
data: { items: donations, total: allDonationsCount } = { items: [], total: 0 },
// error: donationHistoryError,
error: donationHistoryError,
isLoading: isDonationHistoryLoading,
refetch,
}: UseQueryResult<CampaignDonationHistoryResponse> = useDonationsList(
Expand Down Expand Up @@ -109,24 +155,56 @@ export default observer(function Grid() {
}

const columns: GridColDef[] = [
{
field: 'actions',
headerName: 'Actions',
type: 'actions',
width: 120,
resizable: false,
renderCell: (params: GridRenderCellParams) => {
if (!canEditFinancials) {
return ''
}

return (
<>
<Tooltip title={t('Синхронизиране на дарение с плащане')}>
<IconButton
size="small"
color="primary"
onClick={() => syncMutation.mutate(params.row.id)}>
<Autorenew color="primary" />
</IconButton>
</Tooltip>
</>
)
},
},
{
field: 'paymentId',
//TODO:Ttranslate
headerName: 'Плащане номер',
width: 300,
width: 150,
renderCell: (params: GridRenderCellParams) => {
return (
<Link href={`/admin/payments?id=${params.row.paymentId}`}>{params.row.paymentId}</Link>
)
},
},
{
field: 'createdAt',
headerName: t('donations:date'),
...commonProps,
width: 250,
renderCell: (params: GridRenderCellParams) => {
return getExactDateTime(params?.row.createdAt)
field: 'payment.status',
//TODO:Ttranslate
headerName: 'Статус на плащане',
renderCell(params) {
return params.row.payment?.status
},
},
{
field: 'payment.provider',
//TODO:Ttranslate
headerName: 'Разплащателна система',
renderCell(params) {
return params.row.payment?.provider
},
},
{
Expand All @@ -136,11 +214,41 @@ export default observer(function Grid() {
return <RenderMoneyCell params={params} />
},
},
{
field: 'payment.billingName',
//TODO:Ttranslate
headerName: 'billingName',
width: 250,
renderCell(params) {
return params.row.payment?.billingName
},
},
{
field: 'payment.billingEmail',
//TODO:Ttranslate
headerName: 'billingEmail',
width: 300,
renderCell(params) {
return params.row.payment?.billingEmail
},
},
{
field: 'createdAt',
headerName: t('donations:date'),
...commonProps,
width: 250,
renderCell: (params: GridRenderCellParams) => {
return getExactDateTime(params?.row.createdAt)
},
},
{
field: 'currency',
headerName: t('donations:currency'),
...commonProps,
width: 100,
renderCell(params) {
return params.row.payment?.currency
},
},
{
field: 'person',
Expand Down
2 changes: 2 additions & 0 deletions src/service/apiEndpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ export const endpoints = {
createCheckoutSession: <Endpoint>{ url: '/donation/create-checkout-session', method: 'POST' },
createPaymentIntent: <Endpoint>{ url: '/donation/create-payment-intent', method: 'POST' },
createBankDonation: <Endpoint>{ url: '/donation/create-bank-payment', method: 'POST' },
synchronizeWithPayment: (id: string) =>
<Endpoint>{ url: `/donation/${id}/sync-with-payment`, method: 'PATCH' },
refundStripePayment: (id: string) =>
<Endpoint>{ url: `/donation/refund-stripe-payment/${id}`, method: 'POST' },
invalidateStripePayment: (id: string) =>
Expand Down
Loading