From e59c4dee0ab213c2e1f93b494a09fcd3810d7f10 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sat, 26 Jun 2021 02:58:04 +0530 Subject: Converted RegisterItemForm to TS and fix bugs, added more functionality to support the backend --- src/components/Form/People/RegisterPersonForm.js | 87 ----------------- src/components/Form/People/RegisterPersonForm.tsx | 114 ++++++++++++++++++++++ 2 files changed, 114 insertions(+), 87 deletions(-) delete mode 100644 src/components/Form/People/RegisterPersonForm.js create mode 100644 src/components/Form/People/RegisterPersonForm.tsx (limited to 'src/components/Form/People') diff --git a/src/components/Form/People/RegisterPersonForm.js b/src/components/Form/People/RegisterPersonForm.js deleted file mode 100644 index 42cfb2e..0000000 --- a/src/components/Form/People/RegisterPersonForm.js +++ /dev/null @@ -1,87 +0,0 @@ -/* - * OpenBills - Self hosted browser app to generate and keep track of simple invoices - * Version - 0 - * Licensed under the MIT license - https://opensource.org/licenses/MIT - * - * Copyright (c) 2021 Vidhu Kant Sharma -*/ - -// TODO: Code isn't tested properly -// I'd be surprised if it < 10 bugs - -// TODO: Implement override protection - -import React, { useState } from "react"; -import axios from "axios"; -import "./../Form.scss"; - - -const RegisterPersonForm = (props) => { - const [newPersonName, setNewPersonName] = useState(""); - const [newPersonPhone, setNewPersonPhone] = useState(""); - const [newPersonEmail, setNewPersonEmail] = useState(""); - - const hideSelf = () => props.setVisibility(false); - - const closeOnBGClicked = (event) => - event.target.className === "floatingMenuBG" && hideSelf(); - - const postForm = (event) => { - event.preventDefault(); - // TODO: show confirmation before being invisible - axios.post( - `/api/people/register/` - + `?name=${newPersonName}` - + `&phone=${newPersonPhone}` - + `&email=${newPersonEmail}` - ) - .then((res) => { - console.log(res); - props.setVisibility(false); - }) - .catch((err) => { - console.log(err); - }); - } - - - return ( -
-
-
-
-
- - - - - - - -
-
-
-
-
- ); -} - -export default RegisterPersonForm; diff --git a/src/components/Form/People/RegisterPersonForm.tsx b/src/components/Form/People/RegisterPersonForm.tsx new file mode 100644 index 0000000..66de169 --- /dev/null +++ b/src/components/Form/People/RegisterPersonForm.tsx @@ -0,0 +1,114 @@ +/* + * OpenBills - Self hosted browser app to generate and keep track of simple invoices + * Version - 0 + * Licensed under the MIT license - https://opensource.org/licenses/MIT + * + * Copyright (c) 2021 Vidhu Kant Sharma +*/ + +import React, { useState } from "react"; +import "./../Form.scss"; +import { Person } from "./../../../interfaces" +import axios from "axios"; + +interface props { + setVisibility: any // this component's visibility + updatePeopleList: any +} + +const RegisterPersonForm: React.FC = (props) => { + const [newPersonName, setNewPersonName] = useState(""); + const [newPersonAddress, setNewPersonAddress] = useState(""); + const [newPersonEmail, setNewPersonEmail] = useState(""); + const [newPersonPhone, setNewPersonPhone] = useState(""); + + const hideSelf = () => props.setVisibility(false); + + const closeOnBGClicked = (event: any) => + event.target.className === "floatingMenuBG" && hideSelf(); + + const postForm = (event: any) => { + event.preventDefault(); + + const newClient: Person = { + Name: newPersonName, + Address: newPersonAddress, + Phone: newPersonPhone, + Email: newPersonEmail + } + + // TODO: show confirmation before being invisible + // TODO: Implement override protection + axios.post( + `/api/people/register/` + + `?name=${newClient.Name}` + + `&phone=${newClient.Phone}` + + `&email=${newClient.Email}` + + `&address=${newClient.Address}` + ) + .then((res) => { + console.log(res); + props.updatePeopleList(); + hideSelf(); + }) + .catch((err) => { + console.log(err); + alert("Something went wrong, please check the log by opening the console.") + }); + } + + + return ( +
+
+
+
+
+ + + + + + + +
+ +
+ hideSelf()} /> + + +
+
+
+
+
+ ); +} + +export default RegisterPersonForm; -- cgit v1.2.3