1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122import { useState } from 'react';
import { QueryClient } from '@tanstack/react-query';
import { ActionFunctionArgs, redirect, useNavigate } from 'react-router-dom';
import { toast } from '~/components/alerts';
import { Button } from '~/components/buttons';
import { PropertyForm } from '~/components/forms';
import { SEO } from '~/components/layout';
import { addProperty } from '~/services';
/**
* Handles adding a new property.
* @param queryClient - The Query Client instance.
* @returns Action function to be used with React Router.
*/
export const addPropertyAction =
(queryClient: QueryClient) =>
async ({ request }: ActionFunctionArgs) => {
try {
const formData = await request.formData();
const propertyName = formData.get('propertyName') as string;
const propertyUrl = formData.get('propertyUrl') as string;
const propertyDiscovery = formData.get('propertyDiscovery') as
| 'single'
| 'sitemap'
| 'discovery_process';
const response = await addProperty(
propertyName,
propertyUrl,
propertyDiscovery,
);
await queryClient.invalidateQueries({ queryKey: ['properties'] });
if (response.status === 'success') {
toast.success({ title: 'Success', description: 'Property added successfully!' });
return redirect(`/properties`);
} else {
toast.error({ title: 'Error', description: 'Failed to add property.' });
throw new Response('Failed to add property', { status: 500 });
}
} catch (error) {
toast.error({ title: 'Error', description: 'An error occurred while adding the property.' });
throw error;
}
};
const AddProperty = () => {
const navigate = useNavigate();
const [isFormValid, setIsFormValid] = useState(false);
const handleFormChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const form = event.currentTarget.closest('form');
const propertyName = form?.elements.namedItem(
'propertyName',
) as HTMLInputElement;
const propertyUrl = form?.elements.namedItem(
'propertyUrl',
) as HTMLInputElement;
if (propertyName && propertyUrl) {
const isFormValid =
propertyName.value.trim() !== '' && propertyUrl.value.trim() !== '';
setIsFormValid(isFormValid);
}
};
return (
<>
<SEO
title="Add Property - Equalify"
description="Add a new property to Equalify to start monitoring and improving its accessibility."
url="https://dashboard.equalify.app/properties/add"
/>
<h1 id="add-property-heading" className="text-2xl font-bold md:text-3xl">
Add New Property
</h1>
<section
aria-labelledby="add-property-heading"
className="mt-7 space-y-6 rounded-lg bg-white p-6 shadow"
aria-live="polite"
>
<PropertyForm
actionUrl="/properties/add"
defaultValues={{
propertyName: '',
propertyUrl: '',
propertyDiscovery: 'single',
}}
formId="add-property-form"
onChange={handleFormChange}
/>
<div className="space-x-6">
<Button
variant={'outline'}
className="w-fit"
onClick={() => navigate(-1)}
aria-label='Cancel adding property'
>
Cancel
</Button>
<Button
type="submit"
form="add-property-form"
className="w-fit bg-[#1D781D] text-white"
disabled={!isFormValid}
aria-disabled={!isFormValid}
aria-live="polite"
>
Add Property
</Button>
</div>
</section>
</>
);
};
export default AddProperty;