|
| 1 | +import { Button, Heading, Modal, Radio, RadioGroup } from "@navikt/ds-react"; |
| 2 | +import SunImage from "../../../public/sun.svg"; |
| 3 | +import React, { useEffect, useRef, useState } from "react"; |
| 4 | +import Image from "next/image"; |
| 5 | +import styles from "./testscenarioselector.module.css"; |
| 6 | +import { |
| 7 | + ForhandsvarselTestScenario, |
| 8 | + getTestScenario, |
| 9 | + InfoSideTestScenario, |
| 10 | + setTestScenario, |
| 11 | + TestScenario, |
| 12 | +} from "@/utils/testScenarioUtils"; |
| 13 | +import { useQueryClient } from "@tanstack/react-query"; |
| 14 | + |
| 15 | +export const TestScenarioSelector = () => { |
| 16 | + const [open, setOpen] = useState(false); |
| 17 | + const [selectedScenario, setSelectedScenario] = useState< |
| 18 | + TestScenario | undefined |
| 19 | + >(); |
| 20 | + const queryClient = useQueryClient() |
| 21 | + |
| 22 | + useEffect(() => { |
| 23 | + setSelectedScenario(getTestScenario()); |
| 24 | + }, []); |
| 25 | + |
| 26 | + if (!selectedScenario) return null; |
| 27 | + |
| 28 | + return ( |
| 29 | + <> |
| 30 | + <Modal |
| 31 | + open={open} |
| 32 | + aria-label="Testdatavelger" |
| 33 | + onClose={() => setOpen(false)} |
| 34 | + header={{ |
| 35 | + heading: "Velg testscenario" |
| 36 | + }} |
| 37 | + > |
| 38 | + <Modal.Body> |
| 39 | + <div className="mb-4"> |
| 40 | + <RadioGroup |
| 41 | + legend="Velg testscenario" |
| 42 | + value={selectedScenario} |
| 43 | + hideLegend={true} |
| 44 | + onChange={(val: TestScenario) => { |
| 45 | + setSelectedScenario(val); |
| 46 | + }} |
| 47 | + > |
| 48 | + <Radio value={InfoSideTestScenario}>Infosiden</Radio> |
| 49 | + |
| 50 | + <Radio value={ForhandsvarselTestScenario}>Forhåndsvarsel</Radio> |
| 51 | + </RadioGroup> |
| 52 | + </div> |
| 53 | + |
| 54 | + <div> |
| 55 | + <Button |
| 56 | + id="VelgScenarioButton" |
| 57 | + variant={"primary"} |
| 58 | + // disabled={!setActiveTestScenario} |
| 59 | + onClick={() => { |
| 60 | + setTestScenario(selectedScenario); |
| 61 | + queryClient.invalidateQueries() |
| 62 | + setOpen(false); |
| 63 | + }} |
| 64 | + > |
| 65 | + Velg scenario |
| 66 | + </Button> |
| 67 | + <Button variant={"tertiary"} onClick={() => setOpen(false)}> |
| 68 | + Avbryt |
| 69 | + </Button> |
| 70 | + </div> |
| 71 | + </Modal.Body> |
| 72 | + </Modal> |
| 73 | + |
| 74 | + <div |
| 75 | + id="TestScenarioSelector" |
| 76 | + onClick={() => setOpen(!open)} |
| 77 | + className={styles.testscenariocontainer} |
| 78 | + > |
| 79 | + <Image src={SunImage} alt="" width={40} height={40} /> |
| 80 | + </div> |
| 81 | + </> |
| 82 | + ); |
| 83 | +}; |
0 commit comments