Recent transactions and total products now functional in dashboard

This commit is contained in:
keannu125 2023-03-07 18:25:38 +08:00
parent 3344ec1510
commit 3b565cfd34
4 changed files with 55 additions and 55 deletions

View file

@ -57,6 +57,19 @@ export function UpdateProduct(product: UpdateProductParams) {
}); });
} }
export function GetLogs() {
const token = JSON.parse(localStorage.getItem("token") || "{}");
return axios
.get("http://localhost:8000/api/v1/logs/", {
headers: {
Authorization: "Token " + token,
},
})
.then((response) => {
return response.data;
});
}
export function AddProduct(note: AddProductParams) { export function AddProduct(note: AddProductParams) {
const token = JSON.parse(localStorage.getItem("token") || "{}"); const token = JSON.parse(localStorage.getItem("token") || "{}");
return axios return axios

View file

@ -1,13 +1,7 @@
import React, { useEffect } from "react"; import React from "react";
import Sidebar from "../Sidebar/Sidebar"; import Sidebar from "../Sidebar/Sidebar";
import Header from "../Header/Header"; import Header from "../Header/Header";
import styles from "../../styles"; import styles from "../../styles";
import { CheckSavedSession, UserInfo } from "../Api/Api";
import { toggle_login } from "../../Features/Redux/Slices/Login/LoginSlice";
import { SetUser } from "../../Features/Redux/Slices/LoggedInUserSlice/LoggedInUserSlice";
import { useDispatch, useSelector } from "react-redux";
import { LoginState } from "../../Interfaces/Interfaces";
import { useNavigate } from "react-router-dom";
import PreviousSessionChecker from "../PreviousSessionChecker/PreviousSessionChecker"; import PreviousSessionChecker from "../PreviousSessionChecker/PreviousSessionChecker";
export interface props { export interface props {

View file

@ -9,6 +9,17 @@ export interface Product {
quantity: number; quantity: number;
} }
export interface ProductLogList {
ProductLogs: ProductLog[];
}
export interface ProductLog {
history_id: number;
name: string;
quantity: string;
history_date: string;
}
// Redux Interfaces // Redux Interfaces
export interface LoginState { export interface LoginState {
logged_in: { logged_in: {

View file

@ -1,4 +1,4 @@
import React from "react"; import React, { useState } from "react";
import TotalProductsIcon from "../../Components/Icons/TotalProductsIcon/TotalProductsIcon"; import TotalProductsIcon from "../../Components/Icons/TotalProductsIcon/TotalProductsIcon";
import LowStockIcon from "../../Components/Icons/LowStockIcon/LowStockIcon"; import LowStockIcon from "../../Components/Icons/LowStockIcon/LowStockIcon";
import StatsIcon from "../../Components/Icons/StatsIcon/StatsIcon"; import StatsIcon from "../../Components/Icons/StatsIcon/StatsIcon";
@ -9,8 +9,16 @@ import HomeIcon from "../../Components/Icons/HomeIcon/HomeIcon";
import ColoredCube from "../../Components/ColoredCube/ColoredCube"; import ColoredCube from "../../Components/ColoredCube/ColoredCube";
import RecentlyAddedIcon from "../../Components/Icons/RecentlyAddedIcon/RecentlyAddedIcon"; import RecentlyAddedIcon from "../../Components/Icons/RecentlyAddedIcon/RecentlyAddedIcon";
import LoginChecker from "../../Components/LoginChecker/LoginChecker"; import LoginChecker from "../../Components/LoginChecker/LoginChecker";
import { useQuery } from "react-query";
import { GetLogs, GetProducts } from "../../Components/Api/Api";
import { ProductLog } from "../../Interfaces/Interfaces";
export default function Dashboard() { export default function Dashboard() {
const logs = useQuery("logs", GetLogs, { retry: 0 });
const products = useQuery("products", GetProducts, { retry: 0 });
if (logs.isLoading && products.isLoading) {
return <div>heh</div>;
}
return ( return (
<div> <div>
<LoginChecker /> <LoginChecker />
@ -39,7 +47,7 @@ export default function Dashboard() {
</p> </p>
</div> </div>
<p style={{ ...styles.text_white, ...styles.text_L }}> <p style={{ ...styles.text_white, ...styles.text_L }}>
2546 Unique Items {products.data.length} Unique Item/s
</p> </p>
<p style={{ ...styles.text_white, ...styles.text_L }}> <p style={{ ...styles.text_white, ...styles.text_L }}>
In inventory In inventory
@ -139,52 +147,26 @@ export default function Dashboard() {
</p> </p>
</div> </div>
</div> </div>
{logs.data.slice(0, 5).map((log: ProductLog, index: number) => {
console.log(log);
return (
<div key={index}>
<div style={{ marginBottom: "8px" }} /> <div style={{ marginBottom: "8px" }} />
<p style={{ ...styles.text_white, ...styles.text_M }}> <p style={{ ...styles.text_white, ...styles.text_M }}>
Kopiko Blanca {log.name}
</p> </p>
<p style={{ ...styles.text_white, ...styles.text_S }}>Added: 96</p>
<p style={{ ...styles.text_white, ...styles.text_S }}> <p style={{ ...styles.text_white, ...styles.text_S }}>
Removed: 105 Quantity: {log.quantity}
</p>
<p style={{ ...styles.text_white, ...styles.text_S }}>
Date: {log.history_date}
</p> </p>
<p style={{ ...styles.text_white, ...styles.text_XS }}> <p style={{ ...styles.text_white, ...styles.text_XS }}>
02/17/2023 Transaction ID: {log.history_id}
</p>
<div style={{ marginBottom: "8px" }} />
<p style={{ ...styles.text_white, ...styles.text_M }}>
Zidane's Water
</p>
<p style={{ ...styles.text_white, ...styles.text_S }}>Added: 49</p>
<p style={{ ...styles.text_white, ...styles.text_S }}>
Removed: 24
</p>
<p style={{ ...styles.text_white, ...styles.text_XS }}>
02/17/2023
</p>
<div style={{ marginBottom: "8px" }} />
<p style={{ ...styles.text_white, ...styles.text_M }}>
Dan's Beefed Corn
</p>
<p style={{ ...styles.text_white, ...styles.text_S }}>Added: 32</p>
<p style={{ ...styles.text_white, ...styles.text_S }}>
Removed: 64
</p>
<p style={{ ...styles.text_white, ...styles.text_XS }}>
02/17/2023
</p>
<div style={{ marginBottom: "8px" }} />
<div style={styles.content_column}>
<p style={{ ...styles.text_white, ...styles.text_M }}>
Canned Pagmamahal
</p> </p>
</div> </div>
<p style={{ ...styles.text_white, ...styles.text_S }}>Added: 0</p> );
<p style={{ ...styles.text_white, ...styles.text_S }}> })}
Removed: 60
</p>
<p style={{ ...styles.text_white, ...styles.text_XS }}>
02/17/2023
</p>
</div> </div>
</div> </div>
</div> </div>