-
Notifications
You must be signed in to change notification settings - Fork 0
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 #244 from Codeinwp/feat/redirection-cf-notice
Added redirection for cf7 plugin promo notice
- Loading branch information
Showing
7 changed files
with
576 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
import {useState} from '@wordpress/element'; | ||
import {Button} from '@wordpress/components'; | ||
|
||
import './style.scss'; | ||
import {activatePlugin, installPluginOrTheme} from "../common/utils"; | ||
import useSettings from "../common/useSettings"; | ||
|
||
export default function RedirectionForCF7({stacked = false, noImage = false, type, onDismiss, onSuccess, initialStatus = null }) { | ||
const { | ||
assets, | ||
title, | ||
email: initialEmail, | ||
option, | ||
optionKey, | ||
labels, | ||
rfCF7ActivationUrl, | ||
cf7Dash, | ||
} = window.themeisleSDKPromotions; | ||
|
||
const [showStatus, setShowStatus] = useState(false); | ||
const [email, setEmail] = useState(initialEmail || ''); | ||
const [dismissed, setDismissed] = useState(false); | ||
const [progress, setProgress] = useState( initialStatus ); | ||
const [getOption, updateOption] = useSettings(); | ||
|
||
const dismissNotice = async () => { | ||
setDismissed(true); | ||
const newValue = {...option}; | ||
newValue[type] = new Date().getTime() / 1000 | 0; | ||
window.themeisleSDKPromotions.option = newValue; | ||
await updateOption(optionKey, JSON.stringify(newValue)); | ||
|
||
if (onDismiss) { | ||
onDismiss(); | ||
} | ||
}; | ||
|
||
const installPluginRequest = async (e) => { | ||
e.preventDefault(); | ||
setShowStatus(true); | ||
setProgress('installing'); | ||
await installPluginOrTheme('wpcf7-redirect'); | ||
|
||
setProgress('activating'); | ||
await activatePlugin(rfCF7ActivationUrl); | ||
|
||
updateOption('themeisle_sdk_promotions_redirection_cf7_installed', !Boolean(getOption('themeisle_sdk_promotions_redirection_cf7_installed'))); | ||
|
||
setProgress('done'); | ||
|
||
} | ||
|
||
if (dismissed) { | ||
return null; | ||
} | ||
|
||
const installPluginRequestStatus = () => { | ||
if (progress === 'done') { | ||
return ( | ||
<div className={"done"}> | ||
<p> {labels.redirectionCF7.all_set}</p> | ||
<Button icon={'external'} isPrimary href={cf7Dash} target="_blank"> | ||
{labels.redirectionCF7.gotodash} | ||
</Button> | ||
</div> | ||
); | ||
} | ||
|
||
if (progress) { | ||
return ( | ||
<p className="rf-cf7-progress"> | ||
<span className="dashicons dashicons-update spin"/> | ||
<span> | ||
{progress === 'installing' && labels.redirectionCF7.installing} | ||
{progress === 'activating' && labels.redirectionCF7.activating} | ||
… | ||
</span> | ||
</p> | ||
); | ||
} | ||
}; | ||
|
||
const dismissButton = () => ( | ||
<Button disabled={progress && progress !== 'done'} onClick={dismissNotice} isLink | ||
className="rf-cf7-notice-dismiss"> | ||
<span className="dashicons-no-alt dashicons"/> | ||
<span className="screen-reader-text">{labels.redirectionCF7.dismisscta}</span> | ||
</Button> | ||
); | ||
|
||
|
||
if (stacked) { | ||
return ( | ||
<div className="ti-rf-cf7-stack-wrap"> | ||
<div className="rf-cf7-stack-notice"> | ||
{dismissButton()} | ||
<h2>{labels.redirectionCF7.heading}</h2> | ||
|
||
<p>{labels.redirectionCF7.message}</p> | ||
|
||
{( !showStatus && 'done' !== progress ) && ( | ||
<Button isPrimary onClick={installPluginRequest} className="cta"> | ||
{labels.redirectionCF7.gst} | ||
</Button> | ||
)} | ||
{( showStatus || 'done' === progress ) && installPluginRequestStatus()} | ||
|
||
<i>{title}</i> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
return ( | ||
<> | ||
{dismissButton()} | ||
<div className="content"> | ||
<div> | ||
<p>{title}</p> | ||
<p className="description">{labels.redirectionCF7.message}</p> | ||
{!showStatus && ( | ||
<div className="actions"> | ||
<Button isPrimary onClick={installPluginRequest}> | ||
{labels.redirectionCF7.gst} | ||
</Button> | ||
<Button isLink target="_blank" href="https://wordpress.org/plugins/wpcf7-redirect/"> | ||
<span className="dashicons dashicons-external"/> | ||
<span> {labels.redirectionCF7.learnmore}</span> | ||
</Button> | ||
</div> | ||
)} | ||
{showStatus && ( | ||
<div className="form-wrap"> | ||
{installPluginRequestStatus()} | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
Oops, something went wrong.