Skip to content

Commit c3cc4a2

Browse files
authoredMar 13, 2025
Merge pull request #2218 from navikt/contact-step-page-links-headings
Contact step page links headings
2 parents 0873a32 + 0face77 commit c3cc4a2

File tree

1 file changed

+34
-30
lines changed

1 file changed

+34
-30
lines changed
 

‎packages/nextjs/src/components/pages/contact-step-page/ContactStepPage.tsx

+34-30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import { LinkPanel } from '@navikt/ds-react';
3+
import { BodyShort, Heading, LinkPanel } from '@navikt/ds-react';
44
import { ContactPageHeader } from 'components/_common/headers/contactPageHeader/ContactPageHeader';
55
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml';
66
import { ContentType, ContentCommonProps } from 'types/content-props/_content-common';
@@ -10,31 +10,24 @@ import { stripXpPathPrefix } from 'utils/urls';
1010
import { LenkeBase } from 'components/_common/lenke/lenkeBase/LenkeBase';
1111
import style from './ContactStepPage.module.scss';
1212

13-
export interface ExternalNextStep {
14-
externalUrl: string;
15-
}
16-
export interface InternalNextStep {
17-
internalContent: Pick<ContentCommonProps, '_path'>;
18-
}
13+
export type LinkInternal = {
14+
external?: never;
15+
internal: { internalContent: Pick<ContentCommonProps, '_path'> };
16+
_selected: 'internal';
17+
};
1918

20-
export type NextStepExternal = {
21-
external: ExternalNextStep;
19+
export type LinkExternal = {
20+
external: { externalUrl: string };
2221
internal?: never;
2322
_selected: 'external';
2423
};
2524

26-
export type NextStepInternal = {
27-
external?: never;
28-
internal: InternalNextStep;
29-
_selected: 'internal';
30-
};
25+
export type Link = LinkInternal | LinkExternal;
3126

32-
export type NextStep = NextStepExternal | NextStepInternal;
33-
34-
export interface Step {
27+
export interface LinkPanel {
3528
label: string;
3629
explanation: string;
37-
nextStep: NextStep;
30+
link: Link;
3831
}
3932

4033
export type ContactStepPageProps = ContentCommonProps & {
@@ -44,20 +37,23 @@ export type ContactStepPageProps = ContentCommonProps & {
4437
illustration: PictogramsProps;
4538
textAboveTitle?: string;
4639
html: string;
47-
steps: Step[];
40+
linksHeading: string;
41+
linksSubHeadline: string;
42+
links: LinkPanel[];
4843
};
4944
};
5045

51-
const getHref = (step: Step) => {
52-
if (step.nextStep._selected === 'internal') {
53-
return stripXpPathPrefix(step.nextStep.internal?.internalContent._path);
46+
const getHref = (link: Link) => {
47+
if (link._selected === 'internal') {
48+
return stripXpPathPrefix(link.internal?.internalContent._path);
5449
}
55-
return step.nextStep.external.externalUrl;
50+
return link.external.externalUrl;
5651
};
5752

5853
export const ContactStepPage = (props: ContactStepPageProps) => {
5954
const { data } = props;
60-
const { title, illustration, textAboveTitle, html, steps } = data;
55+
const { title, illustration, textAboveTitle, html, links, linksHeading, linksSubHeadline } =
56+
data;
6157

6258
return (
6359
<div className={style.contactStepPage}>
@@ -76,21 +72,29 @@ export const ContactStepPage = (props: ContactStepPageProps) => {
7672
<div className={style.content}>
7773
<ParsedHtml htmlProps={html} />
7874
</div>
79-
{steps && steps.length > 0 && (
80-
<ul className={style.steps}>
81-
{steps.map((step, index) => (
75+
{linksHeading && (
76+
<Heading size="medium" level="2">
77+
{linksHeading}
78+
</Heading>
79+
)}
80+
{linksSubHeadline && <BodyShort>{linksSubHeadline}</BodyShort>}
81+
{links && links.length > 0 && (
82+
<ul className={style.links}>
83+
{links.map((linkPanel, index) => (
8284
<li key={index}>
8385
<LinkPanel
8486
as={LenkeBase}
85-
href={getHref(step)}
87+
href={getHref(linkPanel.link)}
8688
className={style.linkPanel}
8789
// TODO finn utav analytics
8890
// analyticsComponent={'mellomsteg'}
8991
// analyticsLinkGroup={currentStepData.stepsHeadline}
9092
// analyticsLabel={step.label}s
9193
>
92-
<LinkPanel.Title>{step.label}</LinkPanel.Title>
93-
<LinkPanel.Description>{step.explanation}</LinkPanel.Description>
94+
<LinkPanel.Title>{linkPanel.label}</LinkPanel.Title>
95+
<LinkPanel.Description>
96+
{linkPanel.explanation}
97+
</LinkPanel.Description>
9498
</LinkPanel>
9599
</li>
96100
))}

0 commit comments

Comments
 (0)