Skip to content

Commit

Permalink
Merge pull request #69 from TU-GitLio/design/#68
Browse files Browse the repository at this point in the history
design: Toast pop up when Save success
  • Loading branch information
POL6463 authored Jun 18, 2024
2 parents f912a84 + 65a40e6 commit f67aa73
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 13 deletions.
16 changes: 8 additions & 8 deletions gitlio/app/editor/[portfolioId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ export default function EditPage({ params }: EditPageProps) {
console.log(params);
useEffect(() => {
// Check if the portfolio exists in the user's store
const portfolioExists = portfolios.some(
(portfolio) => portfolio.portfolio_id.toString() === portfolioId
);

if (!portfolioExists) {
router.push('/error'); // Redirect to an error page if the portfolio ID is not found
return;
}
// const portfolioExists = portfolios.some(
// (portfolio) => portfolio.portfolio_id.toString() === portfolioId
// );
//
// if (!portfolioExists) {
// router.push('/error'); // Redirect to an error page if the portfolio ID is not found
// return;
// }

// Proceed to fetch and update stores with the portfolio data
updateStoresWithPortfolioData(portfolioId)
Expand Down
17 changes: 17 additions & 0 deletions gitlio/app/editor/_components/ToastComponent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// components/ToastComponent.tsx
import React from 'react';
import useToastStore from '@/store/toastStore';

const ToastComponent: React.FC = () => {
const showToast = useToastStore((state) => state.showToast);

return showToast ? (
<div className="toast toast-start">
<div className="alert alert-success">
<span>성공적으로 저장되었습니다.</span>
</div>
</div>
) : null;
};

export default ToastComponent;
19 changes: 14 additions & 5 deletions gitlio/app/editor/_components/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,26 @@ import { LuAlignJustify, LuBarChartBig } from 'react-icons/lu';
import PreviewButton from '@/app/editor/_components/PreviewButton';
import { SignedIn, SignedOut, SignInButton, UserButton } from '@clerk/nextjs';
import { FaSignInAlt } from 'react-icons/fa';
import React from 'react';
import React, { useState } from 'react';
import { savePortfolioData } from '@/actions/portfolio';
import { useRouter, usePathname } from 'next/navigation';
import useToastStore from '@/store/toastStore';

export default function TopBar() {
const pathname = usePathname().split('/').filter(Boolean).pop();
function saveData() {
if (!pathname) return;
savePortfolioData(pathname).then((r) => console.log(r));
}

const router = useRouter();
const setShowToast = useToastStore((state) => state.setShowToast);
const saveData = () => {
if (!pathname) return;
savePortfolioData(pathname)
.then((r) => {
console.log(r);
setShowToast(true);
setTimeout(() => setShowToast(false), 3000); // Hide toast after 3 seconds
})
.catch((error: any) => console.error('Error saving data:', error));
};

const handleLogoClick = () => {
router.push('/studio/dashboard');
Expand Down
2 changes: 2 additions & 0 deletions gitlio/app/editor/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { useEffect } from 'react';
import { useUser } from '@clerk/nextjs';
import { getIdAfterLogin } from '@/actions/user';
import { useUserStore } from '@/store/userStore';
import ToastComponent from '@/app/editor/_components/ToastComponent';

const EditorLayout: React.FC<{ children: React.ReactNode }> = ({
children,
Expand Down Expand Up @@ -66,6 +67,7 @@ const EditorLayout: React.FC<{ children: React.ReactNode }> = ({
<BaseSideBar />
</div>
</div>
<ToastComponent />
</div>
<GlobalDragOverlay />
</DndContext>
Expand Down
14 changes: 14 additions & 0 deletions gitlio/store/toastStore.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// stores/toastStore.ts
import create from 'zustand';

interface ToastState {
showToast: boolean;
setShowToast: (isVisible: boolean) => void;
}

const useToastStore = create<ToastState>((set) => ({
showToast: false,
setShowToast: (isVisible: boolean) => set({ showToast: isVisible }),
}));

export default useToastStore;

0 comments on commit f67aa73

Please sign in to comment.