Skip to content

Commit 22bd3b0

Browse files
committed
Fix toggle mellom ny og eksisterende relatert person tom ny ident
1 parent 62cdfc3 commit 22bd3b0

File tree

8 files changed

+56
-57
lines changed

8 files changed

+56
-57
lines changed

apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Familierelasjoner.tsx

+1-36
Original file line numberDiff line numberDiff line change
@@ -134,42 +134,7 @@ FamilierelasjonPanel.initialValues = ({ set, opts, del, has }: any) => {
134134
label: 'Sivilstand (har partner)',
135135
checked: has('pdldata.person.sivilstand'),
136136
add() {
137-
// set('pdldata.person.sivilstand', [getInitialSivilstand(initialMaster)])
138-
//TODO: Settes tilbake naar ferdig med testing
139-
set('pdldata.person.sivilstand', [
140-
{
141-
type: 'GIFT',
142-
sivilstandsdato: '2010-11-08T00:00:00',
143-
bekreftelsesdato: null,
144-
borIkkeSammen: false,
145-
nyRelatertPerson: {
146-
identtype: 'FNR',
147-
kjoenn: 'KVINNE',
148-
foedtEtter: null,
149-
foedtFoer: null,
150-
alder: null,
151-
syntetisk: true,
152-
nyttNavn: {
153-
hasMellomnavn: false,
154-
},
155-
statsborgerskapLandkode: 'MDA',
156-
gradering: null,
157-
},
158-
kilde: 'Dolly',
159-
master: 'FREG',
160-
eksisterendePerson: false,
161-
},
162-
{
163-
type: 'GIFT',
164-
sivilstandsdato: '2020-11-10T00:00:00',
165-
relatertVedSivilstand: '22488522675',
166-
bekreftelsesdato: null,
167-
borIkkeSammen: false,
168-
kilde: 'Dolly',
169-
master: 'FREG',
170-
eksisterendePerson: true,
171-
},
172-
])
137+
set('pdldata.person.sivilstand', [getInitialSivilstand(initialMaster)])
173138
},
174139
remove() {
175140
del('pdldata.person.sivilstand')

apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Personinformasjon.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ PersoninformasjonPanel.initialValues = ({ set, opts, setMulti, del, has }) => {
404404
set('fullmakt', [
405405
{
406406
...initialFullmakt,
407+
nyFullmektig: initialPdlPerson,
407408
master: identMaster === 'PDL' || identtype === 'NPID' ? 'PDL' : 'FREG',
408409
},
409410
])

apps/dolly-frontend/src/main/js/src/components/fagsystem/fullmakt/form/FullmaktForm.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ export const FullmaktForm = () => {
191191
const fullmaktValues = formMethods.watch('fullmakt')
192192
const opts: any = useContext(BestillingsveilederContext)
193193
const val = formMethods.watch(fullmaktAttributter)
194+
const { identtype, identMaster } = opts
194195

195196
if ((!fullmaktValues || fullmaktValues?.length === 0) && val.some((v) => v)) {
196197
formMethods.setValue('fullmakt', [initialFullmakt])
@@ -207,7 +208,11 @@ export const FullmaktForm = () => {
207208
<FormDollyFieldArray
208209
name="fullmakt"
209210
header="Fullmakt"
210-
newEntry={initialFullmakt}
211+
newEntry={{
212+
...initialFullmakt,
213+
nyFullmektig: initialPdlPerson,
214+
master: identMaster === 'PDL' || identtype === 'NPID' ? 'PDL' : 'FREG',
215+
}}
211216
canBeEmpty={false}
212217
>
213218
{(path: string) => <Fullmakt formMethods={formMethods} path={path} opts={opts} />}

apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/form/initialValues.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ export const getInitialNyIdent = (master = 'FREG') => ({
347347
nyttNavn: {
348348
hasMellomnavn: false,
349349
},
350+
eksisterendePerson: false,
350351
kilde: 'Dolly',
351352
master: master,
352353
})

apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/form/partials/nyIdent/nyIdent.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,29 @@ export const NyIdent = ({ formMethods }: NyIdentForm) => {
2929
obj[key] = formMethods.watch(path)[key]
3030
return obj
3131
}, {})
32+
// console.log('nyIdentValg: ', nyIdentValg) //TODO - SLETT MEG
3233

34+
const initialNyIdent = {
35+
...getInitialNyIdent(),
36+
kilde: formMethods.watch(`${path}.kilde`),
37+
master: formMethods.watch(`${path}.master`),
38+
}
39+
40+
const initialEksisterendePerson = {
41+
eksisterendeIdent: '',
42+
kilde: formMethods.watch(`${path}.kilde`),
43+
master: formMethods.watch(`${path}.master`),
44+
}
45+
46+
console.log('initialNyIdent: ', initialNyIdent) //TODO - SLETT MEG
3347
return (
3448
<div className="flexbox--flex-wrap">
3549
<PdlPersonExpander
3650
path={path}
3751
nyPersonPath={path}
3852
eksisterendePersonPath={`${path}.eksisterendeIdent`}
53+
initialNyIdent={initialNyIdent}
54+
initialEksisterendePerson={initialEksisterendePerson}
3955
label="NY IDENTITET"
4056
formMethods={formMethods}
4157
nyIdentValg={nyIdentValg}

apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/form/partials/pdlPerson/PdlPersonExpander.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export const PdlPersonExpander = ({
2525
eksisterendePersonPath,
2626
fullmektigsNavnPath,
2727
eksisterendeNyPerson = null,
28+
initialNyIdent = null,
29+
initialEksisterendePerson = null,
2830
label,
2931
formMethods,
3032
nyIdentValg = null,
@@ -39,7 +41,7 @@ export const PdlPersonExpander = ({
3941
setSkjulPersonValg()
4042
}
4143
}, [])
42-
44+
console.log('nyIdentValg: ', nyIdentValg) //TODO - SLETT MEG
4345
return (
4446
<div className="flexbox--full-width">
4547
{toggleExpansion &&
@@ -62,6 +64,8 @@ export const PdlPersonExpander = ({
6264
formMethods={formMethods}
6365
nyIdentValg={nyIdentValg}
6466
eksisterendeNyPerson={eksisterendeNyPerson}
67+
initialNyIdent={initialNyIdent}
68+
initialEksisterendePerson={initialEksisterendePerson}
6569
/>
6670
)}
6771
</div>

apps/dolly-frontend/src/main/js/src/components/fagsystem/pdlf/form/partials/pdlPerson/PdlPersonForm.tsx

+23-18
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,23 @@ export const PdlPersonForm = ({
5252
formMethods,
5353
nyIdentValg = null,
5454
eksisterendeNyPerson = null,
55+
initialNyIdent = null,
56+
initialEksisterendePerson = null,
5557
}: PdlPersonValues) => {
5658
const { gruppeId } = useParams()
5759
const gruppe = useAsync(async () => {
5860
return await DollyApi.getGruppeById(gruppeId)
5961
}, [])
62+
// console.log('path: ', path) //TODO - SLETT MEG
63+
// console.log('nyPersonPath: ', nyPersonPath) //TODO - SLETT MEG
64+
// console.log('eksisterendePersonPath: ', eksisterendePersonPath) //TODO - SLETT MEG
65+
// console.log('nyIdentValg: ', nyIdentValg) //TODO - SLETT MEG
66+
console.log('eksisterendeNyPerson: ', eksisterendeNyPerson) //TODO - SLETT MEG
6067

6168
const getType = () => {
69+
if (formMethods.watch(`${path}.eksisterendePerson`)) {
70+
return PersonType.EKSISTERENDE_PERSON
71+
}
6272
const eksisterende = formMethods.watch(eksisterendePersonPath)
6373
return eksisterende ? PersonType.EKSISTERENDE_PERSON : PersonType.NY_PERSON
6474
}
@@ -71,32 +81,27 @@ export const PdlPersonForm = ({
7181

7282
const isTestnorgeIdent = opts?.identMaster === 'PDL'
7383

84+
const parentPath = path.substring(0, path.lastIndexOf('.'))
85+
7486
useEffect(() => {
7587
setType(getType())
76-
}, [formMethods.watch('pdldata.person.sivilstand')?.length])
77-
78-
// useEffect(() => {
79-
// formMethods.setValue(nyPersonPath, type === PersonType.NY_PERSON ? initialPdlPerson : undefined)
80-
// formMethods.setValue(
81-
// eksisterendePersonPath,
82-
// type === PersonType.EKSISTERENDE_PERSON ? eksisterendeNyPerson?.value : undefined,
83-
// )
84-
// if (path) {
85-
// formMethods.setValue(`${path}.eksisterendePerson`, type === PersonType.EKSISTERENDE_PERSON)
86-
// }
87-
// formMethods.trigger()
88-
// }, [type, path])
88+
}, [formMethods.watch(parentPath)?.length])
8989

90+
//TODO: funker denne for alle tilfeller? F.eks. fullmakt?
9091
const handleTypeChange = (value: string) => {
9192
setType(value)
9293
formMethods.setValue(
9394
nyPersonPath,
94-
value === PersonType.NY_PERSON ? initialPdlPerson : undefined,
95-
)
96-
formMethods.setValue(
97-
eksisterendePersonPath,
98-
value === PersonType.EKSISTERENDE_PERSON ? eksisterendeNyPerson?.value : undefined,
95+
value === PersonType.NY_PERSON ? initialNyIdent || initialPdlPerson : undefined,
9996
)
97+
if (value === PersonType.EKSISTERENDE_PERSON && initialEksisterendePerson) {
98+
formMethods.setValue(path, initialEksisterendePerson)
99+
} else {
100+
formMethods.setValue(
101+
eksisterendePersonPath,
102+
value === PersonType.EKSISTERENDE_PERSON ? eksisterendeNyPerson?.value : undefined,
103+
)
104+
}
100105
if (path) {
101106
formMethods.setValue(`${path}.eksisterendePerson`, value === PersonType.EKSISTERENDE_PERSON)
102107
}

apps/dolly-frontend/src/main/js/src/components/ui/background/Background.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ const animateNedboer = (millimeterNedboer: number, nedBoerType: NEDBOER_TYPE) =>
104104

105105
export const Background = (props: any) => {
106106
const { millimeterNedboer = 0, nedBoerType } = useWeatherFyrstikkAlleen()
107-
const nedboer = animateNedboer(millimeterNedboer, nedBoerType)
107+
const nedboer = isChristmas
108+
? animateNedboer(millimeterNedboer, NEDBOER_TYPE.SNOW)
109+
: animateNedboer(millimeterNedboer, nedBoerType)
108110
return (
109111
<>
110112
{!isEaster && nedboer}

0 commit comments

Comments
 (0)