Skip to content

Commit

Permalink
UPDATE: design for egenskaper and ytterlige egenskaper
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremiahUy committed Nov 8, 2024
1 parent eb06356 commit 1491658
Showing 1 changed file with 19 additions and 27 deletions.
46 changes: 19 additions & 27 deletions apps/frontend/src/pages/PvkBehovPage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { CheckmarkCircleFillIcon } from '@navikt/aksel-icons'
import {
Alert,
BodyLong,
Expand Down Expand Up @@ -192,33 +193,6 @@ export const PvkBehovPage = () => {
rettigheter og friheter.
</BodyLong>

<div className="mt-3" id="behandlings-egenskaper">
<Label>
I Behandlingskatalogen står det at behandlingene deres inneholder følgende
egenskaper:
</Label>
<List>
{!profilering && !automatiskBehandling && !saerligKategorier && (
<List.Item>Ingen</List.Item>
)}
{profilering && <List.Item>Profilering</List.Item>}
{automatiskBehandling && <List.Item>automatisert behandling</List.Item>}
{saerligKategorier && (
<List.Item>særlige kategorier av personopplysninger</List.Item>
)}
</List>
{(profilering || automatiskBehandling || saerligKategorier) && (
<BodyShort>
Disse egenskapene gir høy sannsynlighet for at dere må gjennomføre en PVK.
</BodyShort>
)}

<Alert inline variant="info">
Dere er selv ansvarlige for at informasjonen her er korrekt og komplett, spesielt
opplysningstyper og informasjon om profilering og automatisering.
</Alert>
</div>

<Formik
validateOnChange={false}
validateOnBlur={false}
Expand Down Expand Up @@ -247,6 +221,24 @@ export const PvkBehovPage = () => {
)
}}
>
<List>
{profilering && (
<List.Item icon={<CheckmarkCircleFillIcon title="checked" />}>
Profilering (hentet fra Behandlingskatalogen)
</List.Item>
)}
{automatiskBehandling && (
<List.Item icon={<CheckmarkCircleFillIcon title="checked" />}>
automatisert behandling (hentet fra Behandlingskatalogen)
</List.Item>
)}
{saerligKategorier && (
<List.Item icon={<CheckmarkCircleFillIcon title="checked" />}>
særlige kategorier av personopplysninger (hentet fra
Behandlingskatalogen)
</List.Item>
)}
</List>
{ytterligereEgenskaper.map((egenskap) => (
<Checkbox key={egenskap.code} value={egenskap.code}>
{egenskap.shortName}
Expand Down

0 comments on commit 1491658

Please sign in to comment.