Skip to content

Commit bf87df7

Browse files
add abandon button on privacy screen (#176)
1 parent 3c31320 commit bf87df7

File tree

8 files changed

+24
-9
lines changed

8 files changed

+24
-9
lines changed

frontend/app/.server/locales/protected-en.json

+2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
},
2727
"person-case": {
2828
"page-title": "In person case",
29+
"abandon-button": "Abandon",
2930
"add-button": "Add first name",
3031
"previous": "Previous",
3132
"next": "Next",
33+
"refer-button": "Refer",
3234
"first-name": "Enter first name",
3335
"last-name": "Enter last name"
3436
},

frontend/app/.server/locales/protected-fr.json

+2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
},
2727
"person-case": {
2828
"page-title": "Cas en personne",
29+
"abandon-button": "Abandonner",
2930
"add-button": "Ajouter un prénom",
3031
"previous": "Précédent",
3132
"next": "Suivant",
33+
"refer-button": "Parrainer",
3234
"first-name": "Entrez le prénom",
3335
"last-name": "Entrez le nom de famille"
3436
},

frontend/app/components/button-icons.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
44
import { cn } from '~/utils/tailwind-utils';
55

66
export function ButtonStartIcon({ className, ...restProps }: FontAwesomeIconProps) {
7-
return <FontAwesomeIcon fixedWidth className={cn('me-2', className)} {...restProps} />;
7+
return <FontAwesomeIcon fixedWidth className={cn('me-1', className)} {...restProps} />;
88
}
99

1010
export function ButtonEndIcon({ className, ...restProps }: FontAwesomeIconProps) {
11-
return <FontAwesomeIcon fixedWidth className={cn('ms-2', className)} {...restProps} />;
11+
return <FontAwesomeIcon fixedWidth className={cn('ms-1', className)} {...restProps} />;
1212
}

frontend/app/components/button-link.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const variants = {
2323
green: 'border-green-700 bg-green-700 text-white hover:bg-green-800 focus:bg-green-800',
2424
primary: 'border-slate-700 bg-slate-700 text-white hover:bg-sky-800 focus:bg-sky-800',
2525
red: 'border-red-700 bg-red-700 text-white hover:bg-red-800 focus:bg-red-800',
26+
link: 'bg-white text-gray-900 hover:bg-gray-100 hover:text-blue-700 focus:bg-gray-100 focus:text-blue-700 underline border-0',
2627
} as const;
2728

2829
type ButtonLinkStyleProps = {

frontend/app/components/button.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const variants = {
2222
green: 'border-green-700 bg-green-700 text-white hover:bg-green-800 focus:bg-green-800',
2323
primary: 'border-slate-700 bg-slate-700 text-white hover:bg-sky-800 focus:bg-sky-800',
2424
red: 'border-red-700 bg-red-700 text-white hover:bg-red-800 focus:bg-red-800',
25+
link: 'bg-white text-gray-900 hover:bg-gray-100 hover:text-blue-700 focus:bg-gray-100 focus:text-blue-700 underline border-0',
2526
} as const;
2627

2728
const baseClassName = 'inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4';

frontend/app/routes/protected/person-case/privacy-statement.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { data, useFetcher } from 'react-router';
22
import type { RouteHandle } from 'react-router';
33

4+
import { faXmark, faExclamationCircle } from '@fortawesome/free-solid-svg-icons';
45
import { useTranslation } from 'react-i18next';
56
import * as v from 'valibot';
67

@@ -70,6 +71,14 @@ export default function PrivacyStatement({ loaderData, actionData, params }: Rou
7071

7172
return (
7273
<>
74+
<div className="flex justify-end">
75+
<Button id="abandon-button" endIcon={faXmark} variant="link">
76+
{t('protected:person-case.abandon-button')}
77+
</Button>
78+
<Button id="refer-button" endIcon={faExclamationCircle} variant="link">
79+
{t('protected:person-case.refer-button')}
80+
</Button>
81+
</div>
7382
<Progress className="mt-8" label="" value={20} />
7483
<PageTitle subTitle={t('protected:in-person.title')}>{t('protected:privacy-statement.page-title')}</PageTitle>
7584

frontend/tests/components/__snapshots__/button-icon.test.tsx.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
exports[`ButtonEndIcon > should pass additional props to FontAwesomeIcon > expected html 1`] = `
44
<div
55
aria-label="end-icon"
6-
class="ms-2"
6+
class="ms-1"
77
>
88
"spinner"
99
</div>
1010
`;
1111

1212
exports[`ButtonEndIcon > should render FontAwesomeIcon with the correct classes > expected html 1`] = `
1313
<div
14-
class="ms-2 custom-class"
14+
class="ms-1 custom-class"
1515
>
1616
"spinner"
1717
</div>
@@ -20,15 +20,15 @@ exports[`ButtonEndIcon > should render FontAwesomeIcon with the correct classes
2020
exports[`ButtonStartIcon > should pass additional props to FontAwesomeIcon > expected html 1`] = `
2121
<div
2222
aria-label="start-icon"
23-
class="me-2"
23+
class="me-1"
2424
>
2525
"spinner"
2626
</div>
2727
`;
2828

2929
exports[`ButtonStartIcon > should render FontAwesomeIcon with the correct classes > expected html 1`] = `
3030
<div
31-
class="me-2 custom-class"
31+
class="me-1 custom-class"
3232
>
3333
"spinner"
3434
</div>

frontend/tests/components/__snapshots__/loading-button.test.tsx.snap

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
exports[`LoadingButton > renders the children correctly > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300"><span>Test Button</span></button>"`;
44

5-
exports[`LoadingButton > renders the custom loading icon > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><span>Test Button</span><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check" class="svg-inline--fa fa-check fa-spin fa-fw ms-2" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg></button>"`;
5+
exports[`LoadingButton > renders the custom loading icon > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><span>Test Button</span><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check" class="svg-inline--fa fa-check fa-spin fa-fw ms-1" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg></button>"`;
66

7-
exports[`LoadingButton > renders the loading spinner at the end position > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><span>Test Button</span><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="spinner" class="svg-inline--fa fa-spinner fa-spin fa-fw ms-2 animate-spin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"></path></svg></button>"`;
7+
exports[`LoadingButton > renders the loading spinner at the end position > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><span>Test Button</span><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="spinner" class="svg-inline--fa fa-spinner fa-spin fa-fw ms-1 animate-spin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"></path></svg></button>"`;
88

9-
exports[`LoadingButton > renders the loading spinner at the start position > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="spinner" class="svg-inline--fa fa-spinner fa-spin fa-fw me-2 animate-spin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"></path></svg><span>Test Button</span></button>"`;
9+
exports[`LoadingButton > renders the loading spinner at the start position > expected html 1`] = `"<button class="inline-flex items-center justify-center rounded border align-middle font-lato outline-offset-4 px-5 py-2.5 text-sm border-gray-300 bg-gray-200 text-slate-700 hover:bg-neutral-300 focus:bg-neutral-300 pointer-events-none cursor-not-allowed opacity-70"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="spinner" class="svg-inline--fa fa-spinner fa-spin fa-fw me-1 animate-spin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"></path></svg><span>Test Button</span></button>"`;

0 commit comments

Comments
 (0)