1
1
import React from 'react' ;
2
2
3
- import { LinkPanel } from '@navikt/ds-react' ;
3
+ import { BodyShort , Heading , LinkPanel } from '@navikt/ds-react' ;
4
4
import { ContactPageHeader } from 'components/_common/headers/contactPageHeader/ContactPageHeader' ;
5
5
import { ParsedHtml } from 'components/_common/parsedHtml/ParsedHtml' ;
6
6
import { ContentType , ContentCommonProps } from 'types/content-props/_content-common' ;
@@ -10,31 +10,24 @@ import { stripXpPathPrefix } from 'utils/urls';
10
10
import { LenkeBase } from 'components/_common/lenke/lenkeBase/LenkeBase' ;
11
11
import style from './ContactStepPage.module.scss' ;
12
12
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
+ } ;
19
18
20
- export type NextStepExternal = {
21
- external : ExternalNextStep ;
19
+ export type LinkExternal = {
20
+ external : { externalUrl : string } ;
22
21
internal ?: never ;
23
22
_selected : 'external' ;
24
23
} ;
25
24
26
- export type NextStepInternal = {
27
- external ?: never ;
28
- internal : InternalNextStep ;
29
- _selected : 'internal' ;
30
- } ;
25
+ export type Link = LinkInternal | LinkExternal ;
31
26
32
- export type NextStep = NextStepExternal | NextStepInternal ;
33
-
34
- export interface Step {
27
+ export interface LinkPanel {
35
28
label : string ;
36
29
explanation : string ;
37
- nextStep : NextStep ;
30
+ link : Link ;
38
31
}
39
32
40
33
export type ContactStepPageProps = ContentCommonProps & {
@@ -44,20 +37,23 @@ export type ContactStepPageProps = ContentCommonProps & {
44
37
illustration : PictogramsProps ;
45
38
textAboveTitle ?: string ;
46
39
html : string ;
47
- steps : Step [ ] ;
40
+ linksHeading : string ;
41
+ linksSubHeadline : string ;
42
+ links : LinkPanel [ ] ;
48
43
} ;
49
44
} ;
50
45
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 ) ;
54
49
}
55
- return step . nextStep . external . externalUrl ;
50
+ return link . external . externalUrl ;
56
51
} ;
57
52
58
53
export const ContactStepPage = ( props : ContactStepPageProps ) => {
59
54
const { data } = props ;
60
- const { title, illustration, textAboveTitle, html, steps } = data ;
55
+ const { title, illustration, textAboveTitle, html, links, linksHeading, linksSubHeadline } =
56
+ data ;
61
57
62
58
return (
63
59
< div className = { style . contactStepPage } >
@@ -76,21 +72,29 @@ export const ContactStepPage = (props: ContactStepPageProps) => {
76
72
< div className = { style . content } >
77
73
< ParsedHtml htmlProps = { html } />
78
74
</ 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 ) => (
82
84
< li key = { index } >
83
85
< LinkPanel
84
86
as = { LenkeBase }
85
- href = { getHref ( step ) }
87
+ href = { getHref ( linkPanel . link ) }
86
88
className = { style . linkPanel }
87
89
// TODO finn utav analytics
88
90
// analyticsComponent={'mellomsteg'}
89
91
// analyticsLinkGroup={currentStepData.stepsHeadline}
90
92
// analyticsLabel={step.label}s
91
93
>
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 >
94
98
</ LinkPanel >
95
99
</ li >
96
100
) ) }
0 commit comments