-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1659 from navikt/revert-1658-SWR-og-ZOD
Revert "Swr og zod for tjenestebokser"
- Loading branch information
Showing
16 changed files
with
371 additions
and
496 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 0 additions & 61 deletions
61
...App/Hovedside/TjenesteBoksContainer/Arbeidsforholdboks/useAntallArbeidsforholdFraAareg.ts
This file was deleted.
Oops, something went wrong.
65 changes: 37 additions & 28 deletions
65
src/App/Hovedside/TjenesteBoksContainer/ForebyggeFraværboks/ForebyggeFraværboks.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,65 @@ | ||
import { lenkeTilForebyggefravar } from '../../../../lenker'; | ||
import React from 'react'; | ||
import {lenkeTilForebyggefravar} from '../../../../lenker'; | ||
import React, {useContext, useEffect, useState} from 'react'; | ||
import * as Sentry from "@sentry/browser"; | ||
import ForebyggeFraværIkon from './ForebyggeFraværIkon.svg'; | ||
import './ForebyggeFraværboks.css'; | ||
import { useSykefravær } from './useSykefravær'; | ||
import { StortTall, Tjenesteboks } from '../Tjenesteboks'; | ||
import {OrganisasjonsDetaljerContext} from '../../../OrganisasjonDetaljerProvider'; | ||
import {hentSykefravær, Sykefraværsrespons} from '../../../../api/sykefraværStatistikkApi'; | ||
import {StortTall, Tjenesteboks} from "../Tjenesteboks"; | ||
|
||
|
||
const ForebyggeFraværboks = () => { | ||
const valgtbedrift = () => { | ||
const orgnummerFraUrl = new URLSearchParams(window.location.search).get('bedrift') ?? ''; | ||
return orgnummerFraUrl === '' ? '' : `?bedrift=${orgnummerFraUrl}`; | ||
}; | ||
|
||
return ( | ||
<Tjenesteboks | ||
ikon={ForebyggeFraværIkon} | ||
href={lenkeTilForebyggefravar + valgtbedrift()} | ||
tittel="Forebygge fravær" | ||
aria-label={beskrivelse} | ||
> | ||
<Beskrivelse /> | ||
</Tjenesteboks> | ||
); | ||
return <Tjenesteboks | ||
ikon={ForebyggeFraværIkon} | ||
href={lenkeTilForebyggefravar + valgtbedrift()} | ||
tittel='Forebygge fravær' | ||
aria-label={beskrivelse} | ||
> | ||
<Beskrivelse/> | ||
</Tjenesteboks>; | ||
}; | ||
|
||
const beskrivelse = 'Verktøy for å forebygge fravær i din virksomhet.'; | ||
const beskrivelse = 'Verktøy for å forebygge fravær i din virksomhet.' | ||
|
||
const Beskrivelse = () => { | ||
const {valgtOrganisasjon} = useContext(OrganisasjonsDetaljerContext); | ||
const [sykefravær, setSykefravær] = useState<Sykefraværsrespons | undefined>(undefined); | ||
|
||
const statistikktype = (type: string) => { | ||
switch (type) { | ||
case 'NÆRING': | ||
case 'BRANSJE': | ||
return 'bransje'; | ||
default: | ||
return 'bedrift'; | ||
return 'bransje' | ||
default : | ||
return 'bedrift' | ||
} | ||
}; | ||
|
||
const sykefravær = useSykefravær(); | ||
} | ||
useEffect(() => { | ||
if (valgtOrganisasjon) | ||
hentSykefravær(valgtOrganisasjon.organisasjon.OrganizationNumber).then(sykefraværsrespons => | ||
setSykefravær(sykefraværsrespons), | ||
).catch(error => { | ||
Sentry.captureException(error) | ||
setSykefravær(undefined); | ||
}); | ||
}, [valgtOrganisasjon]); | ||
|
||
if (sykefravær !== undefined) { | ||
return ( | ||
<span> | ||
<StortTall>{sykefravær.prosent.toString()} %</StortTall> | ||
<> | ||
{' '} | ||
legemeldt sykefravær i din {statistikktype(sykefravær.type)}. Lag en plan for å | ||
redusere fraværet.{' '} | ||
</> | ||
<StortTall> | ||
{sykefravær.prosent.toString()} % | ||
</StortTall> | ||
<> legemeldt sykefravær i din {statistikktype(sykefravær.type)}. Lag en plan for å redusere fraværet. </> | ||
</span> | ||
); | ||
} | ||
return <span>{beskrivelse}</span>; | ||
}; | ||
} | ||
|
||
export default ForebyggeFraværboks; |
36 changes: 0 additions & 36 deletions
36
src/App/Hovedside/TjenesteBoksContainer/ForebyggeFraværboks/useSykefravær.ts
This file was deleted.
Oops, something went wrong.
45 changes: 23 additions & 22 deletions
45
src/App/Hovedside/TjenesteBoksContainer/Kandidatlisteboks/Kandidatlisteboks.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
import React from 'react'; | ||
import { kandidatlisteURL } from '../../../../lenker'; | ||
import { Tjenesteboks } from '../Tjenesteboks'; | ||
import { useAntallKandidater } from './useAntallKandidater'; | ||
import ikon from './kandidatlisteboks-ikon.svg'; | ||
import React, {useContext, useEffect, useState} from 'react'; | ||
import {OrganisasjonsDetaljerContext} from '../../../OrganisasjonDetaljerProvider'; | ||
import {kandidatlisteURL} from '../../../../lenker'; | ||
import {Tjenesteboks} from "../Tjenesteboks"; | ||
import {hentAntallKandidater} from "../../../../api/presenterteKandidaterApi"; | ||
import ikon from "./kandidatlisteboks-ikon.svg"; | ||
import './Kandidatlisteboks.css'; | ||
|
||
const Kandidatlisteboks = () => { | ||
const antallKandidater = useAntallKandidater(); | ||
|
||
const {valgtOrganisasjon} = useContext(OrganisasjonsDetaljerContext); | ||
const [antallKandidater, setantallKandidater] = useState(0); | ||
useEffect(() => { | ||
if (valgtOrganisasjon) | ||
hentAntallKandidater(valgtOrganisasjon.organisasjon.OrganizationNumber).then(antallKandidater => | ||
setantallKandidater(antallKandidater) | ||
); | ||
}, [valgtOrganisasjon]); | ||
const orgnummerFraUrl = new URLSearchParams(window.location.search).get('bedrift') ?? ''; | ||
const href = | ||
kandidatlisteURL + (orgnummerFraUrl === '' ? '' : `?virksomhet=${orgnummerFraUrl}`); | ||
const href = kandidatlisteURL + (orgnummerFraUrl === '' ? '' : `?virksomhet=${orgnummerFraUrl}`); | ||
|
||
return antallKandidater === 0 ? null : ( | ||
<Tjenesteboks | ||
return antallKandidater === 0 | ||
? null | ||
: <Tjenesteboks | ||
ikon={ikon} | ||
href={href} | ||
tittel="Kandidater til dine stillinger" | ||
aria-label="Kandidater til dine stillinger. Se CV til personer NAV har sendt deg." | ||
tittel='Kandidater til dine stillinger' | ||
aria-label='Kandidater til dine stillinger. Se CV til personer NAV har sendt deg.' | ||
> | ||
<div className="kandidatlisteboks"> | ||
<span> | ||
{' '} | ||
<span className="kandidatlisteboks__antall"> | ||
{antallKandidater} | ||
</span>kandidater{' '} | ||
</span> | ||
<div className="kandidatlisteboks__bunntekst"></div> | ||
<div className='kandidatlisteboks'> | ||
<span> <span className='kandidatlisteboks__antall'>{antallKandidater}</span>kandidater </span> | ||
<div className='kandidatlisteboks__bunntekst'></div> | ||
</div> | ||
</Tjenesteboks> | ||
); | ||
}; | ||
|
||
export default Kandidatlisteboks; |
Oops, something went wrong.