+
diff --git a/resources/js/Pages/Dashboard.tsx b/resources/js/Pages/Dashboard.tsx
index ee29ee1..ebe59cc 100644
--- a/resources/js/Pages/Dashboard.tsx
+++ b/resources/js/Pages/Dashboard.tsx
@@ -11,8 +11,6 @@ import { CircularProgress, createTheme, ThemeProvider } from "@mui/material";
import { Head, Link } from "@inertiajs/react";
import { useQuery } from "react-query";
import { useState } from "react";
-//import Joyride, { CallBackProps, STATUS, Step } from "react-joyride";
-//import { useSetState } from "react-use";
const theme = createTheme({
palette: {
@@ -22,117 +20,9 @@ const theme = createTheme({
},
});
-//interface State {
-// run: boolean;
-// steps: Step[];
-//}
-
export default function Dashboard({ auth }: PageProps) {
const [loading, setLoading] = useState
(false);
- // START ONBOARD
- //const [{ run, steps: stepsOnBoard }, setState] = useSetState({
- // run: true,
- // steps: [
- // {
- // content: Panduan Penggunaan StepCash!
,
- // placement: "center",
- // target: "body",
- // styles: {
- // options: {
- // width: 200,
- // },
- // },
- // },
- // {
- // title: Progress Harian
,
- // content: "Progress pencapaian target langkah harian",
- // placement: "top",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".progress span",
- // },
- // {
- // title: Sinkrinisasi Manual
,
- // content: "Klik ini untuk sinkronisasi manual data langkah",
- // placement: "top",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".progress div",
- // },
- // {
- // title: Total Langkah
,
- // content: "Jumlah langkah dalam sehari",
- // placement: "top",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".totalStep",
- // },
- // {
- // title: Waktu
,
- // content: "Waktu yang dihabiskan berjalan kaki dalam sehari",
- // placement: "right",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".timeSpent",
- // },
- // {
- // title: Jarak Tempuh
,
- // content:
- // "Jumlah jarak tempuh selama aktivitas fisik dalam sehari",
- // placement: "top",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".totalDistance",
- // },
- // {
- // title: Jumlah Kalori
,
- // content:
- // "Jumlah kalori yang dibakar selama aktivitas fisik seharian",
- // placement: "top",
- // styles: {
- // options: {
- // width: 300,
- // },
- // },
- // target: ".totalCalory",
- // },
- // ],
- //});
- //
- //const handleClickStart = (event: React.MouseEvent) => {
- // event.preventDefault();
- //
- // setState({
- // run: true,
- // });
- //};
- //
- //const handleJoyrideCallback = (data: CallBackProps) => {
- // const { status, type } = data;
- // const finishedStatuses: string[] = [STATUS.FINISHED, STATUS.SKIPPED];
- //
- // if (finishedStatuses.includes(status)) {
- // setState({ run: false });
- // }
- //};
- // END ONBOARD
-
const fetchData = async () => {
const response = await fetch(route("dashboard.sync"));
return await response.json();
@@ -156,31 +46,10 @@ export default function Dashboard({ auth }: PageProps) {
return (
- {/*
-
- */}
Welcome
-
- {auth.user.name}
-
+ {auth.user.name}
- LOGOUT
+ LOGOUT
-
- {/*
-
-
-
-
-
-
-
- */}