File size: 5,781 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
import {
BLOG_PAGE,
CASE_STUDIES_PAGE,
CONTACT_PAGE,
CUSTOM_PAGE,
PHOTO_GALLERY_PAGE,
PORTFOLIO_PAGE,
SHOP_PAGE,
VIDEO_GALLERY_PAGE,
} from 'calypso/signup/difm/constants';
import {
ContactPageDetails,
CustomPageDetails,
FeedbackSection,
SiteInformation,
} from 'calypso/signup/steps/website-content/section-types';
import { SITE_INFORMATION_SECTION_ID } from 'calypso/state/signup/steps/website-content/constants';
import { WebsiteContent } from 'calypso/state/signup/steps/website-content/types';
import { DefaultPageDetails } from './section-types/default-page-details';
import type {
AccordionSectionProps,
SectionGeneratorReturnType,
} from 'calypso/signup/accordion-form/types';
import type { PageId } from 'calypso/signup/difm/constants';
import type { TranslateResult } from 'i18n-calypso';
interface SectionProcessedResult {
sectionsDetails: Array< {
title: TranslateResult;
component: React.ReactElement;
showSkip: boolean;
validate?: () => { result: boolean; errors: Record< string, TranslateResult | null > };
} >;
elapsedSections: number;
}
const generateSiteInformationSection = (
params: SectionGeneratorReturnType< WebsiteContent >,
elapsedSections = 0
): SectionProcessedResult => {
const { translate, formValues, formErrors } = params;
const fieldNumber = elapsedSections + 1;
return {
sectionsDetails: [
{
title: translate( '%(fieldNumber)d. Site Information', {
args: {
fieldNumber,
},
comment: 'This is the serial number: 1',
} ),
component: (
<SiteInformation
sectionID={ SITE_INFORMATION_SECTION_ID }
formErrors={ formErrors }
searchTerms={ formValues.siteInformationSection?.searchTerms }
// The structure of the state tree changed and can generate errors for stale data where siteLogoUrl lived in the root of this state tree
// So the optional parameter was added to safegaurd for any errors.
// This should eventually be removed with a fix that prevents this type of bug
logoUrl={ formValues.siteInformationSection?.siteLogoUrl }
/>
),
showSkip: false,
validate: () => {
const isValid = Boolean( formValues.siteInformationSection?.searchTerms?.length );
return {
result: isValid,
errors: {
searchTerms: isValid ? null : translate( 'Please enter search terms.' ),
},
};
},
},
],
elapsedSections: elapsedSections + 1,
};
};
const resolveDisplayedComponent = ( pageId: string ) => {
switch ( pageId ) {
case CONTACT_PAGE:
return ContactPageDetails;
case CUSTOM_PAGE:
return CustomPageDetails;
default:
return DefaultPageDetails;
}
};
const generateWebsiteContentSections = (
params: SectionGeneratorReturnType< WebsiteContent >,
elapsedSections = 0
): SectionProcessedResult => {
const { translate, formValues, formErrors, context, onChangeField } = params;
const OPTIONAL_PAGES: Partial< Record< PageId, boolean > > = {
[ CONTACT_PAGE ]: true,
[ BLOG_PAGE ]: true,
[ SHOP_PAGE ]: true,
[ VIDEO_GALLERY_PAGE ]: true,
[ PHOTO_GALLERY_PAGE ]: true,
[ PORTFOLIO_PAGE ]: true,
[ CASE_STUDIES_PAGE ]: true,
};
const websiteContentSections = formValues.pages.map( ( page, index ) => {
const fieldNumber = elapsedSections + index + 1;
let pageTitle = page.title;
if ( ! pageTitle && page.id === CUSTOM_PAGE ) {
pageTitle = translate( 'Custom Page' );
}
const DisplayedPageComponent = resolveDisplayedComponent( page.id );
return {
title: translate( '%(fieldNumber)d. %(pageTitle)s', {
args: {
fieldNumber,
pageTitle,
},
comment: 'This is the serial number: 1',
} ),
summary: page.useFillerContent ? translate( 'AI Content 🌟' ) : page.content,
component: (
<DisplayedPageComponent
page={ page }
formErrors={ formErrors }
onChangeField={ onChangeField }
context={ context }
/>
),
showSkip: !! OPTIONAL_PAGES[ page.id ],
validate: () => {
const isContentValid =
OPTIONAL_PAGES[ page.id ] || Boolean( page.content?.length ) || page.useFillerContent;
const isTitleValid = Boolean( page.title?.length );
return {
result: isContentValid && isTitleValid,
errors: {
content: isContentValid ? null : translate( 'Please enter content for this page.' ),
title: isTitleValid ? null : translate( 'Please enter a title for this page.' ),
},
};
},
};
} );
return {
elapsedSections: elapsedSections + formValues.pages.length,
sectionsDetails: websiteContentSections,
};
};
const generateFeedbackSection = (
params: SectionGeneratorReturnType< WebsiteContent >,
elapsedSections = 0
): SectionProcessedResult => {
const { translate, formValues } = params;
const fieldNumber = elapsedSections + 1;
return {
sectionsDetails: [
{
title: translate( '%(fieldNumber)d. Submit Content', {
args: {
fieldNumber,
},
comment: 'This is the serial number: 1',
} ),
component: <FeedbackSection data={ formValues.feedbackSection } />,
showSkip: true,
},
],
elapsedSections: elapsedSections + 1,
};
};
export const sectionGenerator = (
params: SectionGeneratorReturnType< WebsiteContent >
): AccordionSectionProps< any >[] => {
const { elapsedSections: elapsedSectionsAfterLogo, sectionsDetails: siteInformationSection } =
generateSiteInformationSection( params );
const {
sectionsDetails: websiteContentSections,
elapsedSections: elapsedSectionAfterWebsiteContent,
} = generateWebsiteContentSections( params, elapsedSectionsAfterLogo );
const { sectionsDetails: feedbackSection } = generateFeedbackSection(
params,
elapsedSectionAfterWebsiteContent
);
return [ ...siteInformationSection, ...websiteContentSections, ...feedbackSection ];
};
|