Skip to content

Commit

Permalink
Legger til guide for Om Barnet (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
ole-kristian-rudjord authored Jul 26, 2024
1 parent 94a4436 commit 8b2a5fe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/frontend/components/SøknadsSteg/OmBarnet/OmBarnet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,17 @@ const OmBarnet: React.FC<{ barnetsId: BarnetsId }> = ({ barnetsId }) => {
fjernBarnetrygdsperiode,
} = useOmBarnet(barnetsId);

const stegTekster = tekster()[ESanitySteg.OM_BARNET];
const { omBarnetGuide } = stegTekster;

const dokumentasjonstekster = tekster()[ESanitySteg.DOKUMENTASJON];
const { bekreftelsePaaAtBarnBorSammenMedDeg, avtaleOmDeltBosted, meklingsattest } =
dokumentasjonstekster;

return barn ? (
<Steg
tittel={<SpråkTekst id={'ombarnet.sidetittel'} values={{ navn: barn.navn }} />}
guide={omBarnetGuide}
skjema={{
validerFelterOgVisFeilmelding,
valideringErOk,
Expand Down
5 changes: 5 additions & 0 deletions src/frontend/components/SøknadsSteg/OmBarnet/innholdTyper.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { LocaleRecordBlock } from '../../../typer/sanity/sanity';

export interface IOmBarnetTekstinnhold {
omBarnetGuide: LocaleRecordBlock;
}
2 changes: 2 additions & 0 deletions src/frontend/typer/sanity/tekstInnhold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { IDokumentasjonTekstinnhold } from '../../components/SøknadsSteg/Dokume
import { IEøsForBarnTekstinnhold } from '../../components/SøknadsSteg/EøsSteg/Barn/innholdTyper';
import { IEøsForSøkerTekstinnhold } from '../../components/SøknadsSteg/EøsSteg/Søker/innholdTyper';
import { IOmBarnaTekstinnhold } from '../../components/SøknadsSteg/OmBarnaDine/innholdTyper';
import { IOmBarnetTekstinnhold } from '../../components/SøknadsSteg/OmBarnet/innholdTyper';
import { IOmDegTekstinnhold } from '../../components/SøknadsSteg/OmDeg/innholdTyper';
import { IOppsummeringTekstinnhold } from '../../components/SøknadsSteg/Oppsummering/innholdTyper';
import { IVelgBarnTekstinnhold } from '../../components/SøknadsSteg/VelgBarn/innholdTyper';
Expand Down Expand Up @@ -41,6 +42,7 @@ export interface ITekstinnhold {
[ESanitySteg.OM_DEG]: IOmDegTekstinnhold;
[ESanitySteg.DIN_LIVSSITUASJON]: IDinLivssituasjonTekstinnhold;
[ESanitySteg.VELG_BARN]: IVelgBarnTekstinnhold;
[ESanitySteg.OM_BARNET]: IOmBarnetTekstinnhold;
[ESanitySteg.OM_BARNA]: IOmBarnaTekstinnhold;
[ESanitySteg.EØS_FOR_SØKER]: IEøsForSøkerTekstinnhold;
[ESanitySteg.EØS_FOR_BARN]: IEøsForBarnTekstinnhold;
Expand Down

0 comments on commit 8b2a5fe

Please sign in to comment.