1
- import React from 'react' ;
2
-
3
1
import { BodyShort , Heading , LinkPanel } from '@navikt/ds-react' ;
4
2
import { ContactPageHeader } from 'components/_common/headers/contactPageHeader/ContactPageHeader' ;
5
3
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml' ;
@@ -8,6 +6,7 @@ import { IllustrationStatic } from 'components/_common/illustration/static/Illus
8
6
import { PictogramsProps } from 'types/content-props/pictograms' ;
9
7
import { stripXpPathPrefix } from 'utils/urls' ;
10
8
import { LenkeBase } from 'components/_common/lenke/lenkeBase/LenkeBase' ;
9
+ import { LenkeInline } from 'components/_common/lenke/lenkeInline/LenkeInline' ;
11
10
import style from './ContactStepPage.module.scss' ;
12
11
13
12
export type LinkInternal = {
@@ -40,20 +39,36 @@ export type ContactStepPageProps = ContentCommonProps & {
40
39
linksHeading : string ;
41
40
linksSubHeadline : string ;
42
41
links : LinkPanel [ ] ;
42
+ link : {
43
+ internal : {
44
+ target : { _path : string } ;
45
+ text : string ;
46
+ } ;
47
+ } ;
43
48
} ;
44
49
} ;
45
50
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
-
53
51
export const ContactStepPage = ( props : ContactStepPageProps ) => {
54
52
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 ;
57
72
58
73
return (
59
74
< div className = { style . contactStepPage } >
@@ -100,6 +115,9 @@ export const ContactStepPage = (props: ContactStepPageProps) => {
100
115
) ) }
101
116
</ ul >
102
117
) }
118
+ < LenkeInline href = { target . _path } className = { style . link } >
119
+ { text }
120
+ </ LenkeInline >
103
121
</ div >
104
122
) ;
105
123
} ;
0 commit comments