Skip to content

Commit

Permalink
Opprydning
Browse files Browse the repository at this point in the history
  • Loading branch information
betsytraran committed Jun 19, 2024
1 parent 7fc7139 commit 5411612
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { BestillingsveilederContext } from '@/components/bestillingsveileder/Bes
import {
getInitialDoedsfall,
getInitialFoedested,
getInitialFoedsel,
getInitialFoedselsdato,
getInitialKjoenn,
getInitialNavn,
Expand Down Expand Up @@ -86,7 +85,6 @@ export const PersoninformasjonPanel = ({ stateModifier, testnorgeIdent }) => {
iconType={'personinformasjon'}
>
<AttributtKategori title="Alder" attr={sm.attrs}>
{/*<Attributt attr={sm.attrs.foedsel} />*/}
<Attributt attr={sm.attrs.foedested} />
<Attributt attr={sm.attrs.foedselsdato} />
<Attributt attr={sm.attrs.doedsdato} />
Expand Down Expand Up @@ -133,7 +131,6 @@ export const PersoninformasjonPanel = ({ stateModifier, testnorgeIdent }) => {
>
<AttributtKategori title="Alder" attr={sm.attrs}>
<Attributt attr={sm.attrs.alder} vis={!opprettFraEksisterende && !leggTil} />
{/*<Attributt attr={sm.attrs.foedsel} />*/}
<Attributt attr={sm.attrs.foedested} />
<Attributt attr={sm.attrs.foedselsdato} />
<Attributt attr={sm.attrs.doedsdato} />
Expand Down Expand Up @@ -212,7 +209,6 @@ PersoninformasjonPanel.initialValues = ({ set, opts, setMulti, del, has }) => {
alder: 'pdldata.opprettNyPerson.alder',
foedtEtter: 'pdldata.opprettNyPerson.foedtEtter',
foedtFoer: 'pdldata.opprettNyPerson.foedtFoer',
// foedsel: 'pdldata.person.foedsel',
foedested: 'pdldata.person.foedested',
foedselsdato: 'pdldata.person.foedselsdato',
doedsfall: 'pdldata.person.doedsfall',
Expand Down Expand Up @@ -252,12 +248,6 @@ PersoninformasjonPanel.initialValues = ({ set, opts, setMulti, del, has }) => {
add: () => setMulti([paths.alder, null], [paths.foedtEtter, null], [paths.foedtFoer, null]),
remove: () => del([paths.alder, paths.foedtEtter, paths.foedtFoer]),
},
// foedsel: {
// label: 'Fødsel',
// checked: has(paths.foedsel),
// add: () => set(paths.foedsel, [getInitialFoedsel(initMaster)]),
// remove: () => del([paths.foedsel]),
// },
foedested: {
label: 'Fødested',
checked: has(paths.foedested),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const PdlVisning = ({

const { hentPerson, hentIdenter, hentGeografiskTilknytning, ident } = pdlData
const {
foedsel,
telefonnummer,
vergemaalEllerFremtidsfullmakt,
tilrettelagtKommunikasjon,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ export type SivilstandData = {

export type Metadata = {
historisk: boolean
master?: string
}

export enum Rolle {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { TilrettelagtKommunikasjon } from '@/components/fagsystem/pdlf/form/part
import { Alder } from '@/components/fagsystem/pdlf/form/partials/alder/Alder'
import { Kjoenn } from '@/components/fagsystem/pdlf/form/partials/kjoenn/Kjoenn'
import { Navn } from '@/components/fagsystem/pdlf/form/partials/navn/Navn'
import { Foedsel } from '@/components/fagsystem/pdlf/form/partials/foedsel/Foedsel'
import { Vergemaal } from '@/components/fagsystem/pdlf/form/partials/vergemaal/Vergemaal'
import { NorskBankkonto, UtenlandskBankkonto } from '@/components/fagsystem/bankkonto/form'
import { SkjermingForm } from '@/components/fagsystem/skjermingsregister/form/SkjermingForm'
Expand Down Expand Up @@ -52,7 +51,6 @@ const tilrettelagtKommunikasjonPath = ['pdldata.person.tilrettelagtKommunikasjon
const innvandringPath = ['pdldata.person.innflytting']
const utvandringPath = ['pdldata.person.utflytting']
const statsborgerskapPath = ['pdldata.person.statsborgerskap']
// const foedselPath = ['pdldata.person.foedsel']
const foedestedPath = ['pdldata.person.foedested']
const foedselsdatoPath = ['pdldata.person.foedselsdato']
const doedsfallPath = ['pdldata.person.doedsfall']
Expand All @@ -70,7 +68,6 @@ const panelPaths = [
navnPath,
telefonnummerPath,
tilrettelagtKommunikasjonPath,
// foedselPath,
foedselPaths,
doedsfallPath,
vergemaalPath,
Expand Down Expand Up @@ -98,10 +95,6 @@ export const Personinformasjon = ({ formMethods }) => {
</Kategori>
)}

{/*<Kategori title="Fødsel" vis={foedselPath}>*/}
{/* <Foedsel formMethods={formMethods} />*/}
{/*</Kategori>*/}

<Kategori title="Fødsel" vis={foedselPaths}>
<Vis attributt={foedestedPath}>
<Foedested formMethods={formMethods} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ import {
KodeverkValues,
} from '@/pages/gruppe/PersonVisning/PersonMiljoeinfo/PdlDataTyper'
import { AdresseKodeverk } from '@/config/kodeverk'
import { FoedselData, Person } from '@/components/fagsystem/pdlf/PdlTypes'
import {
FoedestedData,
FoedselData,
FoedselsdatoData,
Person,
PersonData,
} from '@/components/fagsystem/pdlf/PdlTypes'
import {
getInitialFoedested,
getInitialFoedsel,
Expand All @@ -21,7 +27,7 @@ import VisningRedigerbarConnector from '@/components/fagsystem/pdlf/visning/visn
import { OpplysningSlettet } from '@/components/fagsystem/pdlf/visning/visningRedigerbar/OpplysningSlettet'

type FoedselTypes = {
data: Array<FoedselData>
data: PersonData
tmpPersoner?: Array<FoedselData>
ident?: string
erPdlVisning?: boolean
Expand All @@ -34,12 +40,14 @@ type FoedselLesTypes = {
}

type FoedselVisningTypes = {
foedsel: FoedselData
foedsel: FoedselData | FoedselsdatoData | FoedestedData
idx: number
data: Array<FoedselData>
tmpPersoner: Array<FoedselData>
ident: string
erPdlVisning: boolean
data: Array<FoedselData> | Array<FoedselsdatoData> | Array<FoedestedData>
tmpPersoner?: Array<FoedselData>
ident?: string
erPdlVisning?: boolean
getInitialFoedsel: Function
name: string
}

const FoedselLes = ({ foedsel, idx }: FoedselLesTypes) => {
Expand Down Expand Up @@ -133,7 +141,7 @@ export const Foedsel = ({
{harFoedested && (
<div className="person-visning_content" style={{ margin: '-15px 0 0 0' }}>
<DollyFieldArray data={foedested} header="Fødested" nested>
{(item, idx) =>
{(item: FoedestedData, idx: number) =>
erRedigerbar ? (
<FoedselVisning
foedsel={item}
Expand All @@ -155,7 +163,7 @@ export const Foedsel = ({
{harFoedselsdato && (
<div className="person-visning_content" style={{ margin: '-15px 0 0 0' }}>
<DollyFieldArray data={foedselsdato} header="Fødselsdato" nested>
{(item, idx) =>
{(item: FoedselsdatoData, idx: number) =>
erRedigerbar ? (
<FoedselVisning
foedsel={item}
Expand All @@ -182,6 +190,7 @@ export const Foedsel = ({
<FoedselVisning
foedsel={item}
idx={idx}
//@ts-ignore
data={foedsel}
ident={ident}
erPdlVisning={erPdlVisning}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const fixTimezone = (date: Date) => {
const getValgteAttributter = (values) => {
const rootPaths = [
'pdldata.opprettNyPerson.alder',
// 'pdldata.person.foedsel',
'pdldata.person.foedested',
'pdldata.person.foedselsdato',
'pdldata.person.doedsfall',
Expand Down

0 comments on commit 5411612

Please sign in to comment.