-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
100 lines (90 loc) · 2.64 KB
/
App.tsx
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
import * as React from "react";
import { Alert, Pressable, Text, View } from "react-native";
import axios from "axios";
import { ImageSelect } from "./src/components/ImageSelect/ImageSelect";
import { PersonalId } from "./src/components/PersonalId/PersonalId";
import { FullName } from "./src/components/FullName/FullName";
import { UserType } from "./src/components/UserType/UserType";
import { appStyles } from "./App.styles";
export interface fileType {
uri: string;
}
export interface errorsType {
photo: string;
personalId: string;
}
export const App: React.FC = (): JSX.Element => {
const [name, setName] = React.useState<string>("");
const [surname, setSurname] = React.useState<string>("");
const [isPerson, setIsPerson] = React.useState<boolean>(true);
const [image, setImage] = React.useState<fileType | null>(null);
const [personalID, setPersonalId] = React.useState<string>("");
const [errors, setErrors] = React.useState<errorsType>({
photo: "",
personalId: "",
});
const handleCancel = () => {
setName("");
setSurname("");
setIsPerson(true);
setImage(null);
setPersonalId("");
setErrors({
photo: "",
personalId: "",
});
};
const handleSave = () => {
if (name && surname && image?.uri && !errors.photo && !errors.personalId)
axios
.post("https://localhost:60001/Contractor/Save", {
name: name,
surname: surname,
isPerson: isPerson,
image: image,
personalID: personalID,
})
.then((response) => {
Alert.alert("Response", response.data);
})
.catch((error) => {
Alert.alert("Error", "This endpoint not found");
});
else {
Alert.alert("Warning", "Please complete form");
}
};
return (
<View style={appStyles.container}>
<FullName
name={name}
setName={setName}
surname={surname}
setSurname={setSurname}
/>
<UserType isPerson={isPerson} setIsPerson={setIsPerson} />
<PersonalId
personalID={personalID}
setPersonalId={setPersonalId}
isPerson={isPerson}
errors={errors}
setErrors={setErrors}
/>
<ImageSelect
image={image}
setImage={setImage}
errors={errors}
setErrors={setErrors}
/>
<View style={appStyles.buttonsContainer}>
<Pressable style={appStyles.button} onPress={handleCancel}>
<Text>Cancel</Text>
</Pressable>
<Pressable style={appStyles.button} onPress={handleSave}>
<Text>Save</Text>
</Pressable>
</View>
</View>
);
};
export default App;