BannerAd.jsx
1 year ago
CodeAd.jsx
1 year ago
Congrats.jsx
1 year ago
GoogleAdsense.jsx
1 year ago
Step1.jsx
1 year ago
Congrats.jsx
270 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { useState } from '@wordpress/element'; |
| 5 | import apiFetch from '@wordpress/api-fetch'; |
| 6 | import { wizard } from '@advancedAds/i18n'; |
| 7 | |
| 8 | /** |
| 9 | * Internal Dependencies |
| 10 | */ |
| 11 | import { adminUrl } from '@utilities'; |
| 12 | import Divider from '@components/Divider'; |
| 13 | import Checkmark from '../../icons/Checkmark'; |
| 14 | import Upgradebox from '../../icons/UpgradeBox'; |
| 15 | |
| 16 | function ListItem({ title = '', text, icon = false }) { |
| 17 | return ( |
| 18 | <div className="flex w-full gap-x-3 items-center"> |
| 19 | {icon && ( |
| 20 | <div className="mt-2"> |
| 21 | <Checkmark /> |
| 22 | </div> |
| 23 | )} |
| 24 | <div className={`grow ${icon ? '' : 'ml-7'}`}> |
| 25 | <strong>{title}</strong> {text} |
| 26 | </div> |
| 27 | </div> |
| 28 | ); |
| 29 | } |
| 30 | |
| 31 | function Newsletter({ email, setEmail }) { |
| 32 | return ( |
| 33 | <> |
| 34 | <h1 className="!mt-0">{wizard.newsletter.title}</h1> |
| 35 | <div className="advads-admin-notice"> |
| 36 | <div className="advads-notice-box_wrapper flex gap-7 items-center"> |
| 37 | <input |
| 38 | type="email" |
| 39 | id="newsletter_email" |
| 40 | className="advads-input-text" |
| 41 | placeholder={wizard.newsletter.inputPlaceholder} |
| 42 | value={email} |
| 43 | onChange={(e) => setEmail(e.target.value)} |
| 44 | style={{ minWidth: '65%', maxWidth: '65%' }} |
| 45 | /> |
| 46 | <div> |
| 47 | <button |
| 48 | className="button-onboarding advads-notices-button-subscribe" |
| 49 | data-notice="nl_free_addons" |
| 50 | > |
| 51 | {wizard.newsletter.btnLabel} |
| 52 | </button> |
| 53 | </div> |
| 54 | </div> |
| 55 | </div> |
| 56 | </> |
| 57 | ); |
| 58 | } |
| 59 | |
| 60 | function Loader() { |
| 61 | return ( |
| 62 | /* eslint-disable jsx-a11y/anchor-is-valid */ |
| 63 | <a |
| 64 | href="#" |
| 65 | className="button-onboarding button-onboarding--gray disabled" |
| 66 | > |
| 67 | {wizard.loading} |
| 68 | </a> |
| 69 | /* eslint-enable jsx-a11y/anchor-is-valid */ |
| 70 | ); |
| 71 | } |
| 72 | |
| 73 | function CongratsHeader(options, result) { |
| 74 | let title, para; |
| 75 | |
| 76 | title = wizard.stepTitles.congrats.default; |
| 77 | para = wizard.congrats.stepHeading; |
| 78 | |
| 79 | if (options.taskOption === 'google_adsense') { |
| 80 | title = |
| 81 | options.googleAdsPlacement === 'auto_ads' |
| 82 | ? wizard.stepTitles.congrats.adsenseAuto |
| 83 | : wizard.stepTitles.congrats.adsenseManual; |
| 84 | |
| 85 | para = |
| 86 | options.googleAdsPlacement === 'auto_ads' |
| 87 | ? wizard.congrats.adsenseAuto.stepHeading |
| 88 | : wizard.congrats.adsenseManual.stepHeading; |
| 89 | } |
| 90 | |
| 91 | return ( |
| 92 | <> |
| 93 | <h1 className="!mt-0">{title}</h1> |
| 94 | <div className="congrats-flex"> |
| 95 | <p |
| 96 | className="text-justify min-w m-0" |
| 97 | dangerouslySetInnerHTML={{ |
| 98 | __html: para, |
| 99 | }} |
| 100 | /> |
| 101 | {getEditButton(options, result)} |
| 102 | </div> |
| 103 | |
| 104 | {getLiveHeading(options, result)} |
| 105 | </> |
| 106 | ); |
| 107 | } |
| 108 | |
| 109 | function getEditButton(options, result) { |
| 110 | if (options.taskOption === 'google_adsense' && result?.success) { |
| 111 | if ( |
| 112 | options.googleAdsPlacement === 'auto_ads' && |
| 113 | result.adsenseAccount |
| 114 | ) { |
| 115 | return ( |
| 116 | <div> |
| 117 | <a |
| 118 | href={result.adsenseAccount} |
| 119 | className="button-onboarding button-onboarding--gray" |
| 120 | target="_blank" |
| 121 | rel="noreferrer" |
| 122 | > |
| 123 | {wizard.congrats.adsenseAuto.btnAccount} |
| 124 | </a> |
| 125 | </div> |
| 126 | ); |
| 127 | } |
| 128 | |
| 129 | if (options.googleAdsPlacement === 'manual' && result.itemEditLink) { |
| 130 | return ( |
| 131 | <div> |
| 132 | <a |
| 133 | href={result.itemEditLink} |
| 134 | className="button-onboarding !bg-red-600 !border-red-700 !text-white" |
| 135 | > |
| 136 | {wizard.congrats.adsenseManual.btnEditItem} |
| 137 | </a> |
| 138 | </div> |
| 139 | ); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | if (result?.success && result.itemEditLink) { |
| 144 | return ( |
| 145 | <div> |
| 146 | <a |
| 147 | href={result.itemEditLink} |
| 148 | className="button-onboarding button-onboarding--gray" |
| 149 | > |
| 150 | {wizard.congrats.btnEditItem} |
| 151 | </a> |
| 152 | </div> |
| 153 | ); |
| 154 | } |
| 155 | |
| 156 | return null; |
| 157 | } |
| 158 | |
| 159 | function getLiveHeading(options, result) { |
| 160 | if ( |
| 161 | options.taskOption === 'google_adsense' && |
| 162 | options.googleAdsPlacement === 'auto_ads' |
| 163 | ) { |
| 164 | return null; |
| 165 | } |
| 166 | |
| 167 | if ( |
| 168 | options.taskOption === 'google_adsense' && |
| 169 | options.googleAdsPlacement === 'manual' |
| 170 | ) { |
| 171 | return ( |
| 172 | <div className="congrats-flex mt-7"> |
| 173 | <p |
| 174 | className="m-0" |
| 175 | dangerouslySetInnerHTML={{ |
| 176 | __html: wizard.congrats.adsenseManual.liveHeading, |
| 177 | }} |
| 178 | /> |
| 179 | </div> |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | return ( |
| 184 | <div className="congrats-flex mt-7"> |
| 185 | <p |
| 186 | className="m-0" |
| 187 | dangerouslySetInnerHTML={{ |
| 188 | __html: wizard.congrats.liveHeading, |
| 189 | }} |
| 190 | /> |
| 191 | <div className="mr-3"> |
| 192 | {result && result.success && '' !== result.postLink ? ( |
| 193 | <a href={result.postLink} className="button-onboarding"> |
| 194 | {wizard.congrats.btnLiveAd} |
| 195 | </a> |
| 196 | ) : ( |
| 197 | <Loader /> |
| 198 | )} |
| 199 | </div> |
| 200 | </div> |
| 201 | ); |
| 202 | } |
| 203 | |
| 204 | export default function Congrats({ options }) { |
| 205 | const [result, setResult] = useState(null); |
| 206 | const [userEmail, setUserEmail] = useState(''); |
| 207 | |
| 208 | if (result === null) { |
| 209 | apiFetch({ |
| 210 | path: '/advanced-ads/v1/onboarding', |
| 211 | method: 'POST', |
| 212 | data: options, |
| 213 | }).then((response) => { |
| 214 | setResult(response); |
| 215 | }); |
| 216 | } |
| 217 | |
| 218 | if (userEmail === '') { |
| 219 | apiFetch({ |
| 220 | path: '/advanced-ads/v1/user-email', |
| 221 | method: 'GET', |
| 222 | }).then((email) => { |
| 223 | setUserEmail(email); |
| 224 | }); |
| 225 | } |
| 226 | |
| 227 | return ( |
| 228 | <> |
| 229 | {CongratsHeader(options, result)} |
| 230 | <Divider /> |
| 231 | <Newsletter email={userEmail} setEmail={setUserEmail} /> |
| 232 | <Divider /> |
| 233 | <h1 className="!mt-0">{wizard.congrats.upgradeHeading}</h1> |
| 234 | <div className="congrats-flex items-center gap-x-12"> |
| 235 | <p className="text-justify m-0"> |
| 236 | {wizard.congrats.upgradeText} |
| 237 | </p> |
| 238 | <a |
| 239 | href="https://wpadvancedads.com/add-ons/all-access/?utm_source=advanced-ads&utm_medium=link&utm_campaign=wizard-upgrade" |
| 240 | className="button-onboarding !bg-red-600 !border-red-700 !text-white text-center" |
| 241 | target="_blank" |
| 242 | rel="noreferrer" |
| 243 | > |
| 244 | {wizard.congrats.btnUpgrade} |
| 245 | </a> |
| 246 | </div> |
| 247 | |
| 248 | <div className="flex gap-x-12 items-center"> |
| 249 | <div className="space-y-2 mt-4 text-lg tracking-wide grow"> |
| 250 | {wizard.congrats.upgradePoints.map((point, index) => ( |
| 251 | <ListItem key={`point-${index}`} {...point} /> |
| 252 | ))} |
| 253 | </div> |
| 254 | <div> |
| 255 | <Upgradebox className="w-40" /> |
| 256 | </div> |
| 257 | </div> |
| 258 | <Divider /> |
| 259 | <div className="text-right"> |
| 260 | <a |
| 261 | href={adminUrl('admin.php?page=advanced-ads')} |
| 262 | className="button-onboarding button-onboarding--gray" |
| 263 | > |
| 264 | {wizard.congrats.btnDashboard} |
| 265 | </a> |
| 266 | </div> |
| 267 | </> |
| 268 | ); |
| 269 | } |
| 270 |