Skip to content

Commit 47abc51

Browse files
committedFeb 20, 2024·
Kodeforbedring og forenkling av typer etter PR-review
1 parent ff6a5ec commit 47abc51

File tree

5 files changed

+19
-29
lines changed

5 files changed

+19
-29
lines changed
 

‎src/components/_common/alert-in-context/AlertInContext.tsx

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import React from 'react';
2-
import { AlertInContextPageProps } from 'types/content-props/alerts';
2+
import { AlertData } from 'types/content-props/alerts';
33
import { AlertBox } from '../alert-box/AlertBox';
44

55
import style from './AlertInContext.module.scss';
66

77
type Props = {
8-
alert: AlertInContextPageProps;
8+
alert: AlertData;
99
};
1010

1111
export const AlertInContext = ({ alert }: Props) => {
@@ -16,11 +16,7 @@ export const AlertInContext = ({ alert }: Props) => {
1616
const variant = alert.data.type === 'critical' ? 'warning' : 'info';
1717

1818
return (
19-
<AlertBox
20-
className={style.alertInContext}
21-
variant={variant}
22-
key={alert._id}
23-
>
19+
<AlertBox className={style.alertInContext} variant={variant}>
2420
{alert.data.text}
2521
</AlertBox>
2622
);

‎src/components/_common/form-details/FormDetails.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { ParsedHtml } from '../parsed-html/ParsedHtml';
55
import { FormDetailsData, Variation } from 'types/content-props/form-details';
66
import { FormDetailsButton } from './FormDetailsButton';
77
import { InfoBox } from '../info-box/InfoBox';
8-
import { AlertInContextPageProps } from 'types/content-props/alerts';
98
import { AlertInContext } from '../alert-in-context/AlertInContext';
109

1110
import style from './FormDetails.module.scss';
@@ -120,8 +119,8 @@ export const FormDetails = ({
120119
)}
121120
{languageDisclaimer && <InfoBox>{languageDisclaimer}</InfoBox>}
122121
{alerts &&
123-
alerts.map((alert) => (
124-
<AlertInContext key={alert._id} alert={alert} />
122+
alerts.map((alert, index) => (
123+
<AlertInContext key={index} alert={alert} />
125124
))}
126125
{variations.length > 0 && (
127126
<div className={style.variation}>

‎src/components/pages/alert-in-context-page/AlertInContextPage.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import React from 'react';
2-
import { ComponentMapper } from '../../ComponentMapper';
32

4-
import { AlertInContextPageProps } from 'types/content-props/alerts';
5-
import { ThemedPageHeader } from '../../_common/headers/themed-page-header/ThemedPageHeader';
3+
import { AlertInContext } from 'components/_common/alert-in-context/AlertInContext';
4+
import { AlertData } from 'types/content-props/alerts';
65

76
import style from './AlertInContextPage.module.scss';
8-
import { AlertInContext } from 'components/_common/alert-in-context/AlertInContext';
97

10-
export const AlertInContextPage = (props: AlertInContextPageProps) => {
8+
export const AlertInContextPage = (props: AlertData) => {
119
return (
1210
<div className={style.alertInContextPage}>
1311
<AlertInContext alert={props} />

‎src/types/content-props/alerts.ts

+9-12
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@ import { ContentCommonProps, ContentType } from './_content-common';
22
import { OptionSetSingle } from 'types/util-types';
33

44
export interface AlertData {
5-
type: 'information' | 'critical';
6-
text: string;
7-
target: {
8-
_selected: string;
9-
formDetails: OptionSetSingle<{
10-
targetContent: string;
11-
}>;
5+
data: {
6+
type: 'information' | 'critical';
7+
text: string;
8+
target: {
9+
_selected: string;
10+
formDetails: OptionSetSingle<{
11+
targetContent: string;
12+
}>;
13+
};
1214
};
1315
}
14-
15-
export type AlertInContextPageProps = ContentCommonProps & {
16-
type: ContentType.AlertInContext;
17-
data: AlertData;
18-
} & Omit<ContentCommonProps, 'alerts'>; // Avoid circular reference

‎src/types/content-props/form-details.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { OptionSetSingle } from 'types/util-types';
22
import { ContentCommonProps, ContentType } from './_content-common';
33
import { ProcessedHtmlProps } from 'types/processed-html-props';
44
import { LinkSelectable } from 'types/component-props/_mixins';
5-
import { AlertInContextPageProps } from './alerts';
5+
import { AlertData } from './alerts';
66

77
export type FormComplaintTypes = 'complaint' | 'appeal';
88

@@ -17,7 +17,7 @@ export interface FormDetailsData {
1717
title?: string;
1818
ingress?: ProcessedHtmlProps;
1919
languageDisclaimer?: string;
20-
alerts: AlertInContextPageProps[];
20+
alerts: AlertData[];
2121
formType: OptionSetSingle<{
2222
application: {
2323
variations: Variation[];

0 commit comments

Comments
 (0)
Please sign in to comment.