-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContentMapper.tsx
99 lines (89 loc) · 5.06 KB
/
ContentMapper.tsx
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
import React from 'react';
import { ContentProps, ContentType } from 'types/content-props/_content-common';
import { ContentTypeNotSupportedPage } from 'components/pages/contenttype-not-supported-page/ContentTypeNotSupportedPage';
import { FormDetailsPreviewPage } from 'components/pages/form-details-preview-page/FormDetailsPreviewPage';
import { FormsOverviewPage } from 'components/pages/forms-overview-page/FormsOverviewPage';
import { VideoPreviewPage } from 'components/pages/video-preview-page/VideoPreviewPage';
import { UserTestsConfigPreviewPage } from 'components/pages/user-tests-config-preview-page/UserTestsConfigPreviewPage';
import { ErrorPage } from './pages/error-page/ErrorPage';
import { DynamicPage } from './pages/dynamic-page/DynamicPage';
import { FragmentPage } from './pages/fragment-page/FragmentPage';
import { ContactInformationPage } from './pages/contact-information-page/ContactInformationPage';
import { LargeTablePage } from './pages/large-table-page/LargeTablePage';
import { RedirectPage } from './pages/redirect-page/RedirectPage';
import { TemplatePage } from './pages/template-page/TemplatePage';
import { SituationPage } from './pages/situation-page/SituationPage';
import { GuidePage } from './pages/guide-page/GuidePage';
import { OverviewPage } from './pages/overview-page/OverviewPage';
import { OfficeEditorialPage } from './pages/office-editorial-page/OfficeEditorialPage';
import { ThemedArticlePage } from './pages/themed-article-page/ThemedArticlePage';
import { ProductPage } from './pages/product-page/ProductPage';
import { ProductDetailsPage } from './pages/product-details-page/ProductDetailsPage';
import { GlobalValuesPage } from './pages/global-values-page/GlobalValuesPage';
import { MainArticleChapterPage } from './pages/main-article-chapter-page/MainArticleChapterPage';
import { PayoutDatesPage } from './pages/payout-dates-page/PayoutDatesPage';
import { GenericPage } from './pages/generic-page/GenericPage';
import { CurrentTopicPage } from './pages/current-topic-page/CurrentTopicPage';
import { PressLandingPage } from './pages/press-landing-page/PressLandingPage';
import { PublishingCalendarEntryPage } from './parts/_legacy/publishing-calendar/PublishingCalendarEntryPage';
import { FormIntermediateStepPage } from './pages/form-intermediate-step-page/FormIntermediateStepPage';
import { CalculatorPage } from './pages/calculator-page/CalculatorPage';
import { AlertInContextPage } from './pages/alert-in-context-page/AlertInContextPage';
import { OfficePage } from './pages/office-page/OfficePage';
const contentToReactComponent: {
[key in ContentType]?: React.FunctionComponent<ContentProps<key>>;
} = {
[ContentType.Error]: ErrorPage,
[ContentType.LargeTable]: LargeTablePage,
[ContentType.Fragment]: FragmentPage,
[ContentType.TemplatePage]: TemplatePage,
[ContentType.GlobalNumberValuesSet]: GlobalValuesPage,
[ContentType.GlobalCaseTimeSet]: GlobalValuesPage,
[ContentType.ProductDetails]: ProductDetailsPage,
[ContentType.Video]: VideoPreviewPage,
[ContentType.ContactInformationPage]: ContactInformationPage,
[ContentType.PayoutDates]: PayoutDatesPage,
[ContentType.SituationPage]: SituationPage,
[ContentType.ProductPage]: ProductPage,
[ContentType.GuidePage]: GuidePage,
[ContentType.ThemedArticlePage]: ThemedArticlePage,
[ContentType.Overview]: OverviewPage,
[ContentType.GenericPage]: GenericPage,
[ContentType.OfficeEditorialPage]: OfficeEditorialPage,
[ContentType.OfficePage]: OfficePage,
[ContentType.CurrentTopicPage]: CurrentTopicPage,
[ContentType.PressLandingPage]: PressLandingPage,
[ContentType.FormIntermediateStepPage]: FormIntermediateStepPage,
[ContentType.FormDetails]: FormDetailsPreviewPage,
[ContentType.FormsOverview]: FormsOverviewPage,
[ContentType.Calculator]: CalculatorPage,
[ContentType.UserTestsConfig]: UserTestsConfigPreviewPage,
[ContentType.AlertInContext]: AlertInContextPage,
[ContentType.AreaPage]: DynamicPage,
[ContentType.FrontPage]: DynamicPage,
[ContentType.FrontPageNested]: DynamicPage,
[ContentType.DynamicPage]: DynamicPage,
[ContentType.MainArticle]: DynamicPage,
[ContentType.MainArticleChapter]: MainArticleChapterPage,
[ContentType.OfficeInformation]: DynamicPage,
[ContentType.PageList]: DynamicPage,
[ContentType.SectionPage]: DynamicPage,
[ContentType.TransportPage]: DynamicPage,
[ContentType.PublishingCalendar]: DynamicPage,
[ContentType.PublishingCalendarEntry]: PublishingCalendarEntryPage,
[ContentType.Melding]: DynamicPage,
[ContentType.ExternalLink]: RedirectPage,
[ContentType.InternalLink]: RedirectPage,
[ContentType.Site]: RedirectPage,
[ContentType.Url]: RedirectPage,
};
export const isContentTypeImplemented = (content: ContentProps) =>
contentToReactComponent.hasOwnProperty(content.type);
type Props = {
content: ContentProps;
};
export const ContentMapper = ({ content }: Props) => {
const Component = contentToReactComponent[content.type] || ContentTypeNotSupportedPage;
// @ts-ignore
return <Component {...content} />;
};