-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1366 from brave/master
Production Release 2024-10-08
- Loading branch information
Showing
19 changed files
with
1,343 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
import { graphql } from "@/graphql-client/index"; | ||
import { Box, Button, Modal, Stack, Typography } from "@mui/material"; | ||
import { useContext, useState } from "react"; | ||
import { modalStyles } from "@/theme"; | ||
import { useAdvertiser } from "@/auth/hooks/queries/useAdvertiser"; | ||
import { useMutation } from "@apollo/client"; | ||
import BigNumber from "bignumber.js"; | ||
import { Trans } from "@lingui/macro"; | ||
import { useHistory } from "react-router-dom"; | ||
import { FilterContext } from "@/state/context"; | ||
import { | ||
AdvertiserCampaignsDocument, | ||
CampaignSummaryFragment, | ||
} from "@/graphql-client/graphql"; | ||
import CancelIcon from "@mui/icons-material/Cancel"; | ||
|
||
const ForceCampaignComplete = graphql(` | ||
mutation ForceCampaignComplete($id: String!) { | ||
forceCampaignCompletionAndTransferFunds(id: $id) | ||
} | ||
`); | ||
|
||
interface Props { | ||
campaign?: Pick< | ||
CampaignSummaryFragment, | ||
"id" | "hasInProcessOrCompleteTransfer" | "adsManagerCurrentBalance" | ||
>; | ||
type: "form" | "inline"; | ||
disabled?: boolean; | ||
} | ||
|
||
export function CloseCampaignModal({ campaign, type, disabled }: Props) { | ||
const history = useHistory(); | ||
const [open, setOpen] = useState(false); | ||
const { advertiser } = useAdvertiser(); | ||
const { fromDate } = useContext(FilterContext); | ||
|
||
const [mutate, { loading: mutating }] = useMutation(ForceCampaignComplete, { | ||
variables: { id: campaign?.id ?? "" }, | ||
}); | ||
|
||
const isInline = type === "inline"; | ||
const currentBalance = BigNumber(campaign?.adsManagerCurrentBalance ?? 0); | ||
const hasNoBalance = currentBalance.lte(0); | ||
if (!isInline && hasNoBalance) return null; | ||
const hasInProcessOrCompleteTransfer = | ||
campaign?.hasInProcessOrCompleteTransfer ?? false; | ||
|
||
const doMutate = () => { | ||
mutate({ | ||
refetchQueries: [ | ||
{ | ||
query: AdvertiserCampaignsDocument, | ||
variables: { | ||
id: advertiser.id, | ||
filter: { from: fromDate?.toISOString() }, | ||
}, | ||
}, | ||
], | ||
onCompleted: (data) => { | ||
if (window.confirm(data.forceCampaignCompletionAndTransferFunds)) { | ||
history.replace("/user/main/campaign"); | ||
} else { | ||
window.location.reload(); | ||
} | ||
}, | ||
}); | ||
}; | ||
|
||
return ( | ||
<> | ||
<Button | ||
variant={isInline ? "text" : "outlined"} | ||
color="error" | ||
size={isInline ? "small" : "medium"} | ||
disabled={ | ||
mutating || | ||
hasInProcessOrCompleteTransfer || | ||
(isInline && hasNoBalance) || | ||
disabled | ||
} | ||
sx={{ borderRadius: "12px" }} | ||
startIcon={isInline ? <CancelIcon /> : undefined} | ||
onClick={() => { | ||
setOpen(true); | ||
}} | ||
> | ||
{isInline && <Trans>Close</Trans>} | ||
{!isInline && <Trans>Close Campaign</Trans>} | ||
</Button> | ||
<Modal open={open} onClose={() => setOpen(false)}> | ||
<Box | ||
sx={{ | ||
...modalStyles, | ||
maxWidth: 600, | ||
}} | ||
> | ||
<Typography variant="h4" mb={2}> | ||
<Trans>You are about to close this campaign.</Trans> | ||
</Typography> | ||
|
||
<Typography variant="subtitle1" mb={2}> | ||
<Trans> | ||
Closing a campaign will immediately stop it from running. Once it | ||
has stopped running, any remaining funds will be transferred back | ||
to your account in 24-48 hours. | ||
</Trans> | ||
</Typography> | ||
|
||
<Stack direction="row" mt={2} spacing={2}> | ||
<Button | ||
variant="outlined" | ||
size="medium" | ||
onClick={() => { | ||
setOpen(false); | ||
}} | ||
> | ||
<Trans>Cancel</Trans> | ||
</Button> | ||
<Button | ||
variant="contained" | ||
size="medium" | ||
onClick={() => { | ||
doMutate(); | ||
}} | ||
> | ||
<Trans>Continue</Trans> | ||
</Button> | ||
</Stack> | ||
</Box> | ||
</Modal> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { graphql } from "@/graphql-client/index"; | ||
import { useAdvertiser } from "@/auth/hooks/queries/useAdvertiser"; | ||
import { useQuery } from "@apollo/client"; | ||
import { useField } from "formik"; | ||
import { CloseCampaignModal } from "@/components/Campaigns/CloseCampaignModal"; | ||
|
||
const CampaignTransferStatus = graphql(` | ||
query CampaignTransferStatus($id: String!) { | ||
campaign(id: $id) { | ||
id | ||
adsManagerCurrentBalance | ||
hasInProcessOrCompleteTransfer | ||
} | ||
} | ||
`); | ||
|
||
export function CloseCampaignSidebar() { | ||
const [, meta] = useField<string | undefined>("id"); | ||
const { advertiser } = useAdvertiser(); | ||
|
||
const { data, loading } = useQuery(CampaignTransferStatus, { | ||
variables: { id: meta.value ?? "" }, | ||
skip: | ||
!meta.value || | ||
(!advertiser.selfServiceManageCampaign && advertiser.selfServiceSetPrice), | ||
fetchPolicy: "cache-and-network", | ||
}); | ||
|
||
if (!data || !data?.campaign || loading) return null; | ||
const campaign = data.campaign; | ||
|
||
return ( | ||
<CloseCampaignModal campaign={campaign} type="form" disabled={loading} /> | ||
); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.