'my change '
parent
33d5b93a9c
commit
544705f96a
|
@ -1,7 +1,7 @@
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
|
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate , useLocation } from "react-router-dom";
|
||||||
import { Player } from "@lottiefiles/react-lottie-player";
|
import { Player } from "@lottiefiles/react-lottie-player";
|
||||||
import successAnimation from "../Common/Animation - 1727464749500.json";
|
import successAnimation from "../Common/Animation - 1727464749500.json";
|
||||||
import "../ExpenseSuccessfully/ExpenseSuccessfully.css"
|
import "../ExpenseSuccessfully/ExpenseSuccessfully.css"
|
||||||
|
@ -9,6 +9,8 @@ import "../ExpenseSuccessfully/ExpenseSuccessfully.css"
|
||||||
function ExpenseSuccessfully() {
|
function ExpenseSuccessfully() {
|
||||||
const [currentDate, setCurrentDate] = useState(new Date());
|
const [currentDate, setCurrentDate] = useState(new Date());
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
const location = useLocation();
|
||||||
|
const entryType = location.state?.entryType;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const timer = setInterval(() => {
|
const timer = setInterval(() => {
|
||||||
|
@ -19,15 +21,15 @@ function ExpenseSuccessfully() {
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handleBackClick = () => {
|
const handleBackClick = () => {
|
||||||
navigate("/expense-editPage");
|
navigate("/expense-editPage" , { state: { entryType } });
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBackToHome = () => {
|
const handleBackToHome = () => {
|
||||||
navigate("/");
|
navigate("/" , { state: { entryType } });
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBackToRecord = () => {
|
const handleBackToRecord = () => {
|
||||||
navigate("/expense-records")
|
navigate("/expense-records" , { state: { entryType } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const options = { hour: "2-digit", minute: "2-digit", hour12: true };
|
const options = { hour: "2-digit", minute: "2-digit", hour12: true };
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
|
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate , useLocation } from "react-router-dom";
|
||||||
import { Player } from "@lottiefiles/react-lottie-player";
|
import { Player } from "@lottiefiles/react-lottie-player";
|
||||||
import successAnimation from "../Common/Animation - 1727464749500.json";
|
import successAnimation from "../Common/Animation - 1727464749500.json";
|
||||||
import "../Income/IncomeSuccessfully.css";
|
import "../Income/IncomeSuccessfully.css";
|
||||||
|
@ -9,6 +9,8 @@ import "../Income/IncomeSuccessfully.css";
|
||||||
function IncomeSuccessfully() {
|
function IncomeSuccessfully() {
|
||||||
const [currentDate, setCurrentDate] = useState(new Date());
|
const [currentDate, setCurrentDate] = useState(new Date());
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
const location = useLocation();
|
||||||
|
const entryType = location.state?.entryType;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const timer = setInterval(() => {
|
const timer = setInterval(() => {
|
||||||
|
@ -19,15 +21,15 @@ function IncomeSuccessfully() {
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handleBackClick = () => {
|
const handleBackClick = () => {
|
||||||
navigate("/editPage");
|
navigate("/editPage" , { state: { entryType } });
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBackToHome = () => {
|
const handleBackToHome = () => {
|
||||||
navigate("/");
|
navigate("/" , { state: { entryType } });
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBackToRecord = () => {
|
const handleBackToRecord = () => {
|
||||||
navigate("/records")
|
navigate("/records" , { state: { entryType } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const options = { hour: "2-digit", minute: "2-digit", hour12: true };
|
const options = { hour: "2-digit", minute: "2-digit", hour12: true };
|
||||||
|
|
Loading…
Reference in New Issue