aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Document
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Form/Document')
-rw-r--r--src/components/Form/Document/DocumentInfoForm.tsx21
-rw-r--r--src/components/Form/Document/MetaInfoForm.tsx21
2 files changed, 20 insertions, 22 deletions
diff --git a/src/components/Form/Document/DocumentInfoForm.tsx b/src/components/Form/Document/DocumentInfoForm.tsx
index 7f33046..6193233 100644
--- a/src/components/Form/Document/DocumentInfoForm.tsx
+++ b/src/components/Form/Document/DocumentInfoForm.tsx
@@ -6,7 +6,7 @@
* Copyright (c) 2021 Vidhu Kant Sharma
*/
-import React/*, { useState }*/ from "react";
+import React, { useState } from "react";
import { Person } from "./../../../interfaces";
import "./../Form.scss";
@@ -14,14 +14,33 @@ import SelectClientForm from "./../People/SelectClientForm";
interface Props {
savedPeople: Person[]
+ invoiceNumber: number
+ setInvoiceNumber: any
}
const DocumentInfoForm: React.FC<Props> = (props) => {
+ const [invoiceNumber, setInvoiceNumber] = useState<number>(props.invoiceNumber);
return (
<div className={"DocumentInfoForm"}>
<SelectClientForm
savedPeople={props.savedPeople}
/>
+
+ <div className={"documentInfoChild"}>
+ <label>
+ Invoice Number:
+ <input className={"smallInputBox"} type="number" step="0.0" value={invoiceNumber} onInput={
+ (event: React.FormEvent<HTMLInputElement>) => setInvoiceNumber(parseInt(event.currentTarget.value))
+ } required />
+ </label>
+
+ <label>
+ Invoice Date: <span>wtf do i do</span>
+ </label>
+ </div>
+
+ <div className={"documentInfoChild"}>
+ </div>
</div>
);
}
diff --git a/src/components/Form/Document/MetaInfoForm.tsx b/src/components/Form/Document/MetaInfoForm.tsx
deleted file mode 100644
index bcddad6..0000000
--- a/src/components/Form/Document/MetaInfoForm.tsx
+++ /dev/null
@@ -1,21 +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
-*/
-
-import React from "react";
-import "./../Form.scss";
-
-const MetaInfoForm: React.FC = () => {
- return (
- <div className={"MetaInfoForm"}>
- <form>
- </form>
- </div>
- );
-}
-
-export default MetaInfoForm;