Skip to content

Commit a1876c4

Browse files
committed
la til tilbakelenke
1 parent c3cc4a2 commit a1876c4

File tree

2 files changed

+43
-14
lines changed

2 files changed

+43
-14
lines changed

packages/nextjs/src/components/pages/contact-step-page/ContactStepPage.module.scss

+14-3
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,26 @@
77
margin: 1.25rem auto var(--a-spacing-10);
88
grid-template-areas:
99
'header'
10-
'content';
10+
'content'
11+
'link';
1112

1213
@media #{common.$mq-screen-tablet-and-desktop} {
1314
grid-template-columns: 6rem 2fr 6rem;
1415
grid-template-areas:
1516
'pictogram header .'
16-
'. content .';
17+
'. content .'
18+
'. link .';
1719
column-gap: var(--a-spacing-10);
1820
}
1921
}
2022

2123
.pictogram {
2224
grid-area: pictogram;
25+
display: none;
26+
27+
@media #{common.$mq-screen-tablet-and-desktop} {
28+
display: block;
29+
}
2330
}
2431
.header {
2532
grid-area: header;
@@ -33,6 +40,10 @@
3340
}
3441
}
3542

43+
.link {
44+
grid-area: link;
45+
}
46+
3647
/* Innrykk i ekspanderende paneler */
3748
.header :global(.navds-expansioncard__content) {
3849
@media #{common.$mq-screen-desktop} {
@@ -59,4 +70,4 @@
5970
font-size: 1.25rem;
6071
}
6172
}
62-
}
73+
}

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

+29-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import React from 'react';
2-
31
import { BodyShort, Heading, LinkPanel } from '@navikt/ds-react';
42
import { ContactPageHeader } from 'components/_common/headers/contactPageHeader/ContactPageHeader';
53
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml';
@@ -8,6 +6,7 @@ import { IllustrationStatic } from 'components/_common/illustration/static/Illus
86
import { PictogramsProps } from 'types/content-props/pictograms';
97
import { stripXpPathPrefix } from 'utils/urls';
108
import { LenkeBase } from 'components/_common/lenke/lenkeBase/LenkeBase';
9+
import { LenkeInline } from 'components/_common/lenke/lenkeInline/LenkeInline';
1110
import style from './ContactStepPage.module.scss';
1211

1312
export type LinkInternal = {
@@ -40,20 +39,36 @@ export type ContactStepPageProps = ContentCommonProps & {
4039
linksHeading: string;
4140
linksSubHeadline: string;
4241
links: LinkPanel[];
42+
link: {
43+
internal: {
44+
target: { _path: string };
45+
text: string;
46+
};
47+
};
4348
};
4449
};
4550

46-
const getHref = (link: Link) => {
47-
if (link._selected === 'internal') {
48-
return stripXpPathPrefix(link.internal?.internalContent._path);
49-
}
50-
return link.external.externalUrl;
51-
};
52-
5351
export const ContactStepPage = (props: ContactStepPageProps) => {
5452
const { data } = props;
55-
const { title, illustration, textAboveTitle, html, links, linksHeading, linksSubHeadline } =
56-
data;
53+
const {
54+
title,
55+
illustration,
56+
textAboveTitle,
57+
html,
58+
links,
59+
linksHeading,
60+
linksSubHeadline,
61+
link,
62+
} = data;
63+
64+
const getHref = (link: Link) => {
65+
if (link._selected === 'internal') {
66+
return stripXpPathPrefix(link.internal?.internalContent._path);
67+
}
68+
return link.external.externalUrl;
69+
};
70+
71+
const { target, text } = link.internal;
5772

5873
return (
5974
<div className={style.contactStepPage}>
@@ -100,6 +115,9 @@ export const ContactStepPage = (props: ContactStepPageProps) => {
100115
))}
101116
</ul>
102117
)}
118+
<LenkeInline href={target._path} className={style.link}>
119+
{text}
120+
</LenkeInline>
103121
</div>
104122
);
105123
};

0 commit comments

Comments
 (0)