errors
2 years ago
fields
2 years ago
form
1 year ago
hooks
2 years ago
store
2 years ago
templates
2 years ago
utilities
2 years ago
DonationFormApp.tsx
2 years ago
DonationFormApp.tsx
154 lines
| 1 | import {createRoot, render} from '@wordpress/element'; |
| 2 | import getDefaultValuesFromSections from './utilities/getDefaultValuesFromSections'; |
| 3 | import Form from './form/Form'; |
| 4 | import {DonationFormStateProvider} from './store'; |
| 5 | import getWindowData from './utilities/getWindowData'; |
| 6 | import prepareFormData from './utilities/PrepareFormData'; |
| 7 | import getJoiRulesForForm from './utilities/ConvertFieldAPIRulesToJoi'; |
| 8 | import Header from './form/Header'; |
| 9 | import mountWindowData from '@givewp/forms/app/utilities/mountWindowData'; |
| 10 | import {withTemplateWrapper} from '@givewp/forms/app/templates'; |
| 11 | import DonationFormErrorBoundary from '@givewp/forms/app/errors/boundaries/DonationFormErrorBoundary'; |
| 12 | import MultiStepForm from '@givewp/forms/app/form/MultiStepForm'; |
| 13 | import getDonationFormNodeSettings from '@givewp/forms/app/utilities/getDonationFormNodeSettings'; |
| 14 | import {DonationFormSettingsProvider} from '@givewp/forms/app/store/form-settings'; |
| 15 | import useDonationFormPubSub from '@givewp/forms/app/utilities/useDonationFormPubSub'; |
| 16 | import {useEffect, useState} from 'react'; |
| 17 | import type {Form as DonationForm} from '@givewp/forms/types'; |
| 18 | |
| 19 | const formTemplates = window.givewp.form.templates; |
| 20 | const GoalAchievedTemplate = withTemplateWrapper(formTemplates.layouts.goalAchieved); |
| 21 | |
| 22 | /** |
| 23 | * Get data from the server |
| 24 | */ |
| 25 | const {form, previewMode} = getWindowData(); |
| 26 | const donationFormNodeSettings = getDonationFormNodeSettings(form); |
| 27 | |
| 28 | prepareFormData(form); |
| 29 | |
| 30 | mountWindowData(); |
| 31 | |
| 32 | /** |
| 33 | * Prepare default values for form |
| 34 | */ |
| 35 | const defaultValues = getDefaultValuesFromSections(form.nodes); |
| 36 | |
| 37 | const schema = getJoiRulesForForm(form); |
| 38 | |
| 39 | const initialState = { |
| 40 | defaultValues, |
| 41 | gateways: window.givewp.gateways.getAll(), |
| 42 | validationSchema: schema, |
| 43 | }; |
| 44 | |
| 45 | /** |
| 46 | * @since 3.0.0 |
| 47 | */ |
| 48 | function App({form}: { form: DonationForm }) { |
| 49 | if (form.goal.isAchieved) { |
| 50 | return ( |
| 51 | <DonationFormErrorBoundary> |
| 52 | <GoalAchievedTemplate goalAchievedMessage={form.settings.goalAchievedMessage} /> |
| 53 | </DonationFormErrorBoundary> |
| 54 | ); |
| 55 | } |
| 56 | |
| 57 | if (form.design?.isMultiStep) { |
| 58 | return ( |
| 59 | <DonationFormSettingsProvider value={{...form.settings, ...donationFormNodeSettings}}> |
| 60 | <DonationFormStateProvider initialState={initialState}> |
| 61 | {!form.design?.includeHeaderInMultiStep && form.settings.showHeader && <Header form={form} />} |
| 62 | <MultiStepForm form={form} /> |
| 63 | </DonationFormStateProvider> |
| 64 | </DonationFormSettingsProvider> |
| 65 | ); |
| 66 | } |
| 67 | |
| 68 | return ( |
| 69 | <DonationFormSettingsProvider value={{...form.settings, ...donationFormNodeSettings}}> |
| 70 | <DonationFormStateProvider initialState={initialState}> |
| 71 | {form.settings?.showHeader && <Header form={form} />} |
| 72 | <Form defaultValues={defaultValues} sections={form.nodes} validationSchema={schema} /> |
| 73 | </DonationFormStateProvider> |
| 74 | </DonationFormSettingsProvider> |
| 75 | ); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * @since 3.1.0 |
| 80 | */ |
| 81 | function AppPreview() { |
| 82 | const { |
| 83 | subscribeToGoal, |
| 84 | subscribeToColors, |
| 85 | subscribeToSettings, |
| 86 | subscribeToCss, |
| 87 | unsubscribeAll |
| 88 | } = useDonationFormPubSub(); |
| 89 | |
| 90 | const [formState, setFormState] = useState<DonationForm>(form); |
| 91 | |
| 92 | useEffect(() => { |
| 93 | subscribeToSettings((settings) => { |
| 94 | setFormState((prevState) => { |
| 95 | return { |
| 96 | ...prevState, |
| 97 | settings: { |
| 98 | ...prevState.settings, |
| 99 | ...settings, |
| 100 | }, |
| 101 | }; |
| 102 | }); |
| 103 | }); |
| 104 | |
| 105 | subscribeToGoal((goal) => { |
| 106 | setFormState((prevState) => { |
| 107 | return { |
| 108 | ...prevState, |
| 109 | goal: { |
| 110 | ...prevState.goal, |
| 111 | ...goal, |
| 112 | }, |
| 113 | }; |
| 114 | }); |
| 115 | }); |
| 116 | |
| 117 | subscribeToColors((data) => { |
| 118 | if (data['primaryColor']) { |
| 119 | root.style.setProperty('--givewp-primary-color', data['primaryColor']); |
| 120 | } |
| 121 | |
| 122 | if (data['secondaryColor']) { |
| 123 | root.style.setProperty('--givewp-secondary-color', data['secondaryColor']); |
| 124 | } |
| 125 | }); |
| 126 | |
| 127 | subscribeToCss(({customCss}) => { |
| 128 | let cssRules = ''; |
| 129 | const stylesheet = new CSSStyleSheet(); |
| 130 | |
| 131 | stylesheet.replaceSync(customCss); |
| 132 | |
| 133 | for (let i = 0; i < stylesheet.cssRules.length; i++) { |
| 134 | cssRules += stylesheet.cssRules[i].cssText + '\n'; |
| 135 | } |
| 136 | |
| 137 | style.innerText = cssRules; |
| 138 | }); |
| 139 | |
| 140 | return () => unsubscribeAll(); |
| 141 | }, []); |
| 142 | |
| 143 | return <App form={formState} />; |
| 144 | } |
| 145 | |
| 146 | const root = document.getElementById('root-givewp-donation-form'); |
| 147 | const style = document.getElementById('root-givewp-donation-form-style'); |
| 148 | |
| 149 | if (createRoot) { |
| 150 | createRoot(root).render(previewMode ? <AppPreview /> : <App form={form} />); |
| 151 | } else { |
| 152 | render(previewMode ? <AppPreview /> : <App form={form} />, root); |
| 153 | } |
| 154 |