From 12fa58555681257384150383b4e83c572d19fec9 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 29 Aug 2021 10:28:10 +0530 Subject: Moved submit button to SummaryDisplay --- src/components/App.tsx | 2 -- src/components/Display/SummaryDisplay.tsx | 26 ++++++-------------------- src/components/Menu/SubmitMenu.tsx | 1 + src/components/Pages/BillingPage.tsx | 9 ++++----- 4 files changed, 11 insertions(+), 27 deletions(-) (limited to 'src/components') diff --git a/src/components/App.tsx b/src/components/App.tsx index 40b38f4..f7e0348 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -12,11 +12,9 @@ import { BrowserRouter, Route, Switch } from "react-router-dom"; import Header from "./Header/Header"; import HomePage from "./Pages/HomePage"; import BillingPage from "./Pages/BillingPage"; -import SearchBar from "./Util/SearchBar"; const App: React.FC = () => ( <> -
diff --git a/src/components/Display/SummaryDisplay.tsx b/src/components/Display/SummaryDisplay.tsx index 22f2e52..5d1589e 100644 --- a/src/components/Display/SummaryDisplay.tsx +++ b/src/components/Display/SummaryDisplay.tsx @@ -6,12 +6,13 @@ * Copyright (c) 2021 Vidhu Kant Sharma */ -import React from "react"; +import React, {Dispatch, SetStateAction} from "react"; import { Item } from "./../../interfaces" import "./Display.scss"; interface props { items: Item[] + setShowSubmitMenu: Dispatch> } interface FullSummary { @@ -51,25 +52,6 @@ const getFullSummary = (items: Item[]): FullSummary => { } } -// export const SummaryDisplayTR: React.FC = (props) => { -// const summary = getBasicSummary(props.items); -// -// return ( -// -// Total -// -// -// {summary.TotalQuantity} -// -// -// -// -// -// {summary.TotalRawPrice} -// -// ); -// } - const SummaryDisplay: React.FC = (props) => { const summary: FullSummary = getFullSummary(props.items); return ( @@ -109,6 +91,10 @@ const SummaryDisplay: React.FC = (props) => { + +
); } diff --git a/src/components/Menu/SubmitMenu.tsx b/src/components/Menu/SubmitMenu.tsx index 649b49d..6e5e317 100644 --- a/src/components/Menu/SubmitMenu.tsx +++ b/src/components/Menu/SubmitMenu.tsx @@ -22,6 +22,7 @@ const TransportForm: React.FC = (props) => { const closeOnBGClicked = (event: any) => event.target.className === "floatingMenuBG" && hideSelf(); + return (
diff --git a/src/components/Pages/BillingPage.tsx b/src/components/Pages/BillingPage.tsx index 9dcb485..c1d30a5 100644 --- a/src/components/Pages/BillingPage.tsx +++ b/src/components/Pages/BillingPage.tsx @@ -113,11 +113,10 @@ const BillingPage: React.FC = () => { setShowTransportForm={setShowTransportForm} /> - - - +
); -- cgit v1.2.3