From 4c4dc1f2e04b87a580590c98713e45b5b16b6aaf Mon Sep 17 00:00:00 2001 From: Kushagra Gour Date: Tue, 5 Mar 2024 13:49:52 +0530 Subject: [PATCH] add working pro modal n checkout --- src/components/Footer.jsx | 4 ++-- src/components/Pro.jsx | 35 +++++++++++++++++++++++++++++ src/components/Share.jsx | 46 ++++++++++++++++++++++++++------------- src/components/app.jsx | 15 ++++++++++++- src/components/common.jsx | 14 +++++++----- src/hooks/useCheckout.js | 20 +++++++++++++++++ src/style.css | 1 + 7 files changed, 112 insertions(+), 23 deletions(-) create mode 100644 src/components/Pro.jsx create mode 100644 src/hooks/useCheckout.js diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 166d8cf..4b8792c 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -133,9 +133,9 @@ export default class Footer extends Component {

)} - -

- You have {FREE_PUBLIC_ITEM_COUNT - publicItemCount}/ - {FREE_PUBLIC_ITEM_COUNT} public creations left. -

-

- For unlimited public creations, upgrade to -

-
+ {!user?.isPro ? ( + +

+ You have {FREE_PUBLIC_ITEM_COUNT - publicItemCount}/ + {FREE_PUBLIC_ITEM_COUNT} public creations left. +

+

+ For unlimited public creations, upgrade to +

+
+ ) : null} ); } diff --git a/src/components/app.jsx b/src/components/app.jsx index 512c259..15217b2 100644 --- a/src/components/app.jsx +++ b/src/components/app.jsx @@ -71,6 +71,7 @@ import { I18nProvider } from '@lingui/react'; import { Assets } from './Assets.jsx'; import { LocalStorageKeys } from '../constants.js'; import { Share } from './Share.jsx'; +import { Pro } from './Pro.jsx'; if (module.hot) { require('preact/debug'); @@ -121,7 +122,8 @@ export default class App extends Component { isCreateNewModalOpen: false, isCommandPaletteOpen: false, isAssetsOpen: false, - isShareModalOpen: false + isShareModalOpen: false, + isProModalOpen: false }; this.state = { isSavedItemPaneOpen: false, @@ -1131,6 +1133,10 @@ export default class App extends Component { trackEvent('ui', 'notificationButtonClick', version); return false; } + proBtnClickHandler() { + this.setState({ isProModalOpen: true }); + trackEvent('ui', 'proBtnClick'); + } codepenBtnClickHandler(e) { if (this.state.currentItem.cssMode === CssModes.ACSS) { alert( @@ -1723,6 +1729,7 @@ export default class App extends Component { onJs13KDownloadBtnClick={this.js13KDownloadBtnClickHandler.bind( this )} + proBtnClickHandler={this.proBtnClickHandler.bind(this)} hasUnseenChangelog={this.state.hasUnseenChangelog} codeSize={this.state.codeSize} /> @@ -1817,6 +1824,12 @@ export default class App extends Component { }} /> + this.setState({ isProModalOpen: false })} + > + + this.setState({ isHelpModalOpen: false })} diff --git a/src/components/common.jsx b/src/components/common.jsx index 21f8ac3..6a35a98 100644 --- a/src/components/common.jsx +++ b/src/components/common.jsx @@ -4,11 +4,15 @@ import { trackEvent } from '../analytics'; class Clickable extends Component { handleClick(e) { const el = e.currentTarget; - trackEvent( - el.getAttribute('data-event-category'), - el.getAttribute('data-event-action') - ); - this.props.onClick(e); + if (el.getAttribute('data-event-category')) { + trackEvent( + el.getAttribute('data-event-category'), + el.getAttribute('data-event-action') + ); + } + if (this.props.onClick) { + this.props.onClick(e); + } } render() { /* eslint-disable no-unused-vars */ diff --git a/src/hooks/useCheckout.js b/src/hooks/useCheckout.js new file mode 100644 index 0000000..a8165d0 --- /dev/null +++ b/src/hooks/useCheckout.js @@ -0,0 +1,20 @@ +import { useState, useEffect } from 'react'; + +function useCheckout() { + const [hasVendorScriptLoaded, setHasVendorScriptLoaded] = useState(); + useEffect(() => { + const script = document.createElement('script'); + script.src = 'https://app.lemonsqueezy.com/js/lemon.js'; + script.async = 'true'; + script.defer = 'true'; + script.addEventListener('load', () => { + window.createLemonSqueezy(); + setHasVendorScriptLoaded(true); + }); + document.body.appendChild(script); + }, []); + + return hasVendorScriptLoaded; +} + +export { useCheckout }; diff --git a/src/style.css b/src/style.css index 0ebff06..fb0f1a2 100644 --- a/src/style.css +++ b/src/style.css @@ -376,6 +376,7 @@ a > svg { float: right; display: flex; align-items: center; + margin-inline-start: 2rem; } .btn {