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

Fix: Prevent page refresh when opening the Create Campaign Modal #7608

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,24 @@ import {CampaignsRowActions} from './CampaignsRowActions';
import styles from './CampaignsListTable.module.scss';
import {GiveCampaignsListTable} from './types';
import CreateCampaignModal from '../CreateCampaignModal';
import {useState} from "react";

declare const window: {
GiveCampaignsListTable: GiveCampaignsListTable;
} & Window;

/**
* Auto open modal if the URL has the query parameter id as new
*
* @unreleased
*/
const autoOpenModal = () => {
kjohnson marked this conversation as resolved.
Show resolved Hide resolved
const queryParams = new URLSearchParams(window.location.search);
const newParam = queryParams.get('new');

return newParam === 'campaign';
};

export function getGiveCampaignsListTableWindowData() {
return window.GiveCampaignsListTable;
}
Expand Down Expand Up @@ -92,35 +105,36 @@ const bulkActions: Array<BulkActionsConfig> = [
},
];

/**
* Displays a blank slate for the Campaigns table.
*
* @unreleased
*/
const ListTableBlankSlate = () => {
const imagePath = `${
getGiveCampaignsListTableWindowData().pluginUrl
}/assets/dist/images/list-table/blank-slate-donation-forms-icon.svg`;
return (
<div className={styles.container}>
<img src={imagePath} alt={__('No campaign created yet', 'give')} />
<h3>{__('No campaign created yet', 'give')}</h3>
<p className={styles.helpMessage}>{__('Don’t worry, let’s help you setup your first campaign.', 'give')}</p>
<p>
<a
href={`${
getGiveCampaignsListTableWindowData().adminUrl
}edit.php?post_type=give_forms&page=give-campaigns&new=campaign`}
className={`button button-primary ${styles.button}`}
>
{__('Create campaign', 'give')}
</a>
</p>
</div>
);
};

export default function CampaignsListTable() {

const [isOpen, setOpen] = useState<boolean>(autoOpenModal());

/**
* Displays a blank slate for the Campaigns table.
*
* @unreleased
*/
const ListTableBlankSlate = () => {
const imagePath = `${
getGiveCampaignsListTableWindowData().pluginUrl
}/assets/dist/images/list-table/blank-slate-donation-forms-icon.svg`;
return (
<div className={styles.container}>
<img src={imagePath} alt={__('No campaign created yet', 'give')} />
<h3>{__('No campaign created yet', 'give')}</h3>
<p className={styles.helpMessage}>{__('Don’t worry, let’s help you setup your first campaign.', 'give')}</p>
<p>
<a
onClick={() => setOpen(true)}
className={`button button-primary ${styles.button}`}
>
{__('Create campaign', 'give')}
</a>
</p>
</div>
);
};

return (
<>
<ListTablePage
Expand All @@ -133,7 +147,7 @@ export default function CampaignsListTable() {
rowActions={CampaignsRowActions}
listTableBlankSlate={ListTableBlankSlate()}
>
<CreateCampaignModal />
<CreateCampaignModal isOpen={isOpen} setOpen={setOpen} />
</ListTablePage>
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,13 @@ import styles from './CreateCampaignModal.module.scss';
import CampaignFormModal from '../CampaignFormModal';
import {getGiveCampaignsListTableWindowData} from '../CampaignsListTable';

/**
* Auto open modal if the URL has the query parameter id as new
*
* @unreleased
*/
const autoOpenModal = () => {
const queryParams = new URLSearchParams(window.location.search);
const newParam = queryParams.get('new');

return newParam === 'campaign';
};

/**
* Create Campaign Modal component
*
* @unreleased
*/
export default function CreateCampaignModal() {
const [isOpen, setOpen] = useState<boolean>(autoOpenModal());
export default function CreateCampaignModal({isOpen, setOpen}) {

const openModal = () => setOpen(true);
const closeModal = (response: ResponseProps = {}) => {
setOpen(false);
Expand Down
Loading