-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forbedring av navigasjon-knapper iht Aksel (#1313)
* Bytter til nytt navigasjonspanel iht Aksel * Legger til fortsette senere-knapp * Legger til Forrige steg lenke * Legger til Sanity tekst for Forrige steg-lenke * Endre layout på knapper * Endrer kode-struktur og tekst-innhold for sletting av søknad og starte på nytt * Flytter håndtering av åpning og startPåNytt ut av SlettSøknadenModal * Legger til SlettSøknadenModal i navigasjonspanel * Endrer tekstinnhold * Endrer tekster til å bruke testId for 'neste-steg' knapp istedenfor 'Gå videre' tekst * Flytter små funksjoner inn i Button for å skape mindre splitting av små kode-biter * Fikser variant av neste-steg knapp * Fjerner 'forrigeStegLenke' tekst ettersom den inneholder samme tekst som 'tilbakeKnapp' og dermed fjernes fra Sanity
- Loading branch information
1 parent
8b73303
commit c8cdbe0
Showing
15 changed files
with
283 additions
and
196 deletions.
There are no files selected for viewing
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
48 changes: 48 additions & 0 deletions
48
src/frontend/components/Felleskomponenter/Steg/SlettSøknadenModal.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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import React from 'react'; | ||
|
||
import styled from 'styled-components'; | ||
|
||
import { Button, Heading, Modal } from '@navikt/ds-react'; | ||
|
||
import { useApp } from '../../../context/AppContext'; | ||
|
||
const StyledHeading = styled(Heading)` | ||
&& { | ||
white-space: nowrap; | ||
margin-right: var(--a-spacing-18); | ||
} | ||
`; | ||
|
||
interface ISlettSøkadenModalProps { | ||
open: boolean; | ||
avbryt: () => void; | ||
startPåNytt: () => void; | ||
} | ||
|
||
export const SlettSøknadenModal: React.FC<ISlettSøkadenModalProps> = ({ | ||
open, | ||
avbryt, | ||
startPåNytt, | ||
}) => { | ||
const { tekster, plainTekst } = useApp(); | ||
|
||
const startPåNyttTekster = tekster().FELLES.modaler.startPåNytt; | ||
|
||
return ( | ||
<Modal open={open} onClose={avbryt} aria-labelledby="modal-heading"> | ||
<Modal.Header> | ||
<StyledHeading level="1" size="medium" id="modal-heading"> | ||
{plainTekst(startPåNyttTekster.startPaaNyttTittel)} | ||
</StyledHeading> | ||
</Modal.Header> | ||
<Modal.Footer> | ||
<Button variant={'danger'} type="button" onClick={startPåNytt}> | ||
{plainTekst(startPåNyttTekster.startNySoeknadKnapp)} | ||
</Button> | ||
<Button variant={'secondary'} type="button" onClick={avbryt}> | ||
{plainTekst(startPåNyttTekster.startPaaNyttAvbryt)} | ||
</Button> | ||
</Modal.Footer> | ||
</Modal> | ||
); | ||
}; |
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
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
Oops, something went wrong.