This commit is contained in:
2026-04-25 12:38:32 +02:00
commit 39c900a41b
25 changed files with 4226 additions and 0 deletions
+184
View File
@@ -0,0 +1,184 @@
.counter {
font-size: 16px;
padding: 5px 10px;
border-radius: 5px;
color: var(--accent);
background: var(--accent-bg);
border: 2px solid transparent;
transition: border-color 0.3s;
margin-bottom: 24px;
&:hover {
border-color: var(--accent-border);
}
&:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
}
.hero {
position: relative;
.base,
.framework,
.vite {
inset-inline: 0;
margin: 0 auto;
}
.base {
width: 170px;
position: relative;
z-index: 0;
}
.framework,
.vite {
position: absolute;
}
.framework {
z-index: 1;
top: 34px;
height: 28px;
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
scale(1.4);
}
.vite {
z-index: 0;
top: 107px;
height: 26px;
width: auto;
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
scale(0.8);
}
}
#center {
display: flex;
flex-direction: column;
gap: 25px;
place-content: center;
place-items: center;
flex-grow: 1;
@media (max-width: 1024px) {
padding: 32px 20px 24px;
gap: 18px;
}
}
#next-steps {
display: flex;
border-top: 1px solid var(--border);
text-align: left;
& > div {
flex: 1 1 0;
padding: 32px;
@media (max-width: 1024px) {
padding: 24px 20px;
}
}
.icon {
margin-bottom: 16px;
width: 22px;
height: 22px;
}
@media (max-width: 1024px) {
flex-direction: column;
text-align: center;
}
}
#docs {
border-right: 1px solid var(--border);
@media (max-width: 1024px) {
border-right: none;
border-bottom: 1px solid var(--border);
}
}
#next-steps ul {
list-style: none;
padding: 0;
display: flex;
gap: 8px;
margin: 32px 0 0;
.logo {
height: 18px;
}
a {
color: var(--text-h);
font-size: 16px;
border-radius: 6px;
background: var(--social-bg);
display: flex;
padding: 6px 12px;
align-items: center;
gap: 8px;
text-decoration: none;
transition: box-shadow 0.3s;
&:hover {
box-shadow: var(--shadow);
}
.button-icon {
height: 18px;
width: 18px;
}
}
@media (max-width: 1024px) {
margin-top: 20px;
flex-wrap: wrap;
justify-content: center;
li {
flex: 1 1 calc(50% - 8px);
}
a {
width: 100%;
justify-content: center;
box-sizing: border-box;
}
}
}
#spacer {
height: 88px;
border-top: 1px solid var(--border);
@media (max-width: 1024px) {
height: 48px;
}
}
.ticks {
position: relative;
width: 100%;
&::before,
&::after {
content: '';
position: absolute;
top: -4.5px;
border: 5px solid transparent;
}
&::before {
left: 0;
border-left-color: var(--border);
}
&::after {
right: 0;
border-right-color: var(--border);
}
}
+35
View File
@@ -0,0 +1,35 @@
import React from 'react';
import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom';
import Home from './pages/Home';
import Login from './pages/Login';
import { useAuthStore } from './store/authStore';
const ProtectedRoute = ({ children }) => {
const token = useAuthStore((state) => state.token);
if (!token) {
return <Navigate to="/login" replace />;
}
return children;
};
function App() {
return (
<Router>
<Routes>
<Route path="/login" element={<Login />} />
<Route
path="/"
element={
<ProtectedRoute>
<Home />
</ProtectedRoute>
}
/>
{/* Fallback */}
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>
</Router>
);
}
export default App;
+60
View File
@@ -0,0 +1,60 @@
import axios from "axios";
export const API_URL = "/api/v1";
export async function login(userData) {
try {
const response = await axios.post(`${API_URL}/auth/login`, userData, {
headers: {"Content-Type": "application/json"},
});
return response.data;
} catch (error) {
console.error("Login failed:", error);
throw error;
}
}
export async function register(userData) {
try {
const response = await axios.post(`${API_URL}/auth/register`, userData, {
headers: {"Content-Type": "application/json"},
});
return response.data;
} catch (error) {
console.error("Registration failed:", error);
throw error;
}
}
export async function googleLogin(googleToken) {
try {
const response = await axios.post(
`${API_URL}/auth/google`,
{ googleToken: googleToken },
{
headers: { "Content-Type": "application/json" },
}
);
return response.data;
} catch (error) {
console.error("Google login failed:", error);
throw error;
}
}
export async function logout(token) {
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.post(
`${API_URL}/auth/logout`,
{},
{
headers: headers,
}
);
return response.data;
} catch (error) {
console.error("Logout failed:", error);
throw error;
}
}
+164
View File
@@ -0,0 +1,164 @@
import axios from "axios";
import { useAuthStore } from "../store/authStore";
const API_URL = "/api/v1";
export async function listNotices() {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
const response = await fetch(`${API_URL}/notices/get/all`, {
headers: headers,
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.message || "Failed to fetch notices");
}
return data;
}
export async function getNoticeById(noticeId) {
const response = await fetch(`${API_URL}/notices/get/${noticeId}`);
const data = await response.json();
if (!response.ok) {
throw new Error("Error fetching notice");
}
return data;
}
export async function createNotice(notice) {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.post(`${API_URL}/notices/add`, notice, {
headers: headers,
});
if (response.data.noticeId !== null && notice.image) {
for (let i = 0; i < notice.image.length; i++) {
await uploadImage(response.data.noticeId, notice.image[i], i === 0);
}
}
return response.data;
} catch (error) {
console.error("Error creating notice", error);
return null;
}
}
export async function getImageByNoticeId(noticeId) {
try {
const listResponse = await axios.get(`${API_URL}/images/list/${noticeId}`);
const imageName = listResponse.data[0];
return `${API_URL}/images/get/${imageName}`;
} catch (err) {
return "https://http.cat/404.jpg";
}
}
export async function getAllImagesByNoticeId(noticeId) {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const listResponse = await axios.get(`${API_URL}/images/list/${noticeId}`, {
headers: headers,
});
if (listResponse.data && listResponse.data.length > 0) {
return listResponse.data.map((imageName) => ({
uri: `${API_URL}/images/get/${imageName}`,
headers: headers,
}));
}
return [{ uri: "https://http.cat/404.jpg" }];
} catch (err) {
return [{ uri: "https://http.cat/404.jpg" }];
}
}
export const uploadImage = async (noticeId, file, isFirst) => {
const { token } = useAuthStore.getState();
const headers = {
...(token ? { Authorization: `Bearer ${token}` } : {}),
"Content-Type": "multipart/form-data",
};
const formData = new FormData();
formData.append("file", file);
try {
const response = await axios.post(
`${API_URL}/images/upload/${noticeId}?isMainImage=${isFirst}`,
formData,
{ headers: headers }
);
return response.data;
} catch (error) {
console.error("Error uploading image:", error);
throw error;
}
};
export const deleteNotice = async (noticeId) => {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.delete(
`${API_URL}/notices/delete/${noticeId}`,
{ headers: headers }
);
return response.data;
} catch (error) {
throw error;
}
};
export const editNotice = async (noticeId, notice) => {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.put(
`${API_URL}/notices/edit/${noticeId}`,
{
title: notice.title,
description: notice.description,
price: notice.price,
category: notice.category,
status: notice.status,
attributes: notice.attributes,
},
{ headers: headers }
);
if (response.data && notice.image && notice.image.length > 0) {
for (let i = 0; i < notice.image.length; i++) {
const image = notice.image[i];
if (image instanceof File) {
await uploadImage(noticeId, image, i === 0);
}
}
}
return response.data;
} catch (error) {
throw error;
}
};
export const deleteImage = async (filename) => {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.delete(
`${API_URL}/images/delete/${filename}`,
{ headers: headers }
);
return response.data;
} catch (error) {
throw error;
}
};
+34
View File
@@ -0,0 +1,34 @@
import axios from "axios";
import { useAuthStore } from "../store/authStore";
const API_URL = "/api/v1/wishlist";
export async function toggleNoticeStatus(noticeId) {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.post(
`${API_URL}/toggle/${noticeId}`,
{},
{ headers: headers }
);
return response.data;
} catch (error) {
console.error("Error toggling wishlist item:", error);
throw error;
}
}
export async function getWishlist() {
const { token } = useAuthStore.getState();
const headers = token ? { Authorization: `Bearer ${token}` } : {};
try {
const response = await axios.get(`${API_URL}/`, { headers: headers });
return response.data;
} catch (error) {
console.error("Error fetching wishlist:", error);
throw error;
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.5 KiB

+12
View File
@@ -0,0 +1,12 @@
@import "tailwindcss";
@theme {
--color-primary: #aa3bff;
--color-background-300: #e5e4e7;
}
body {
margin: 0;
font-family: system-ui, -apple-system, sans-serif;
background-color: #f9fafb;
}
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)
+119
View File
@@ -0,0 +1,119 @@
import React, { useEffect } from 'react';
import { useNoticesStore } from '../store/noticesStore';
import { useAuthStore } from '../store/authStore';
import { LogOut, Search, PlusCircle, Heart, User } from 'lucide-react';
export default function Home() {
const { notices, fetchNotices } = useNoticesStore();
const { signOut } = useAuthStore();
useEffect(() => {
fetchNotices();
}, []);
const activeNotices = notices.filter((notice) => notice.status === "ACTIVE");
return (
<div className="min-h-screen bg-gray-50 pb-20 md:pb-0">
{/* Header */}
<header className="bg-white border-b border-gray-200 sticky top-0 z-10">
<div className="max-w-6xl mx-auto px-4 h-16 flex items-center justify-between">
<h1 className="text-xl font-bold text-primary">ArtisanConnect</h1>
<div className="flex items-center gap-4">
<button
onClick={signOut}
className="text-gray-600 hover:text-red-500 transition-colors flex items-center gap-1 text-sm font-medium"
>
<LogOut size={18} />
<span className="hidden sm:inline">Wyloguj</span>
</button>
</div>
</div>
</header>
<main className="max-w-6xl mx-auto px-4 py-8">
{/* Hero / Search */}
<div className="bg-primary/5 rounded-3xl p-8 mb-8 text-center">
<h2 className="text-3xl font-extrabold text-gray-900 mb-4">Znajdź unikalne rękodzieło</h2>
<div className="max-w-xl mx-auto relative">
<input
type="text"
placeholder="Czego szukasz?"
className="w-full pl-12 pr-4 py-4 rounded-2xl border-none shadow-lg focus:ring-2 focus:ring-primary focus:outline-none text-lg"
/>
<Search className="absolute left-4 top-1/2 -translate-y-1/2 text-gray-400" size={24} />
</div>
</div>
{/* Section: Latest Notices */}
<section className="mb-12">
<div className="flex items-center justify-between mb-6">
<h3 className="text-2xl font-bold text-gray-900">Najnowsze ogłoszenia</h3>
<a href="/notices" className="text-primary font-semibold hover:underline">Zobacz wszystkie</a>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
{activeNotices.length > 0 ? (
activeNotices.map((notice) => (
<div key={notice.noticeId} className="bg-white rounded-2xl border border-gray-100 shadow-sm hover:shadow-md transition-shadow overflow-hidden group">
<div className="aspect-[4/3] bg-gray-200 relative overflow-hidden">
<img
src={notice.mainImage || "https://http.cat/400.jpg"}
alt={notice.title}
className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300"
/>
<button className="absolute top-3 right-3 p-2 bg-white/80 backdrop-blur-sm rounded-full text-gray-600 hover:text-red-500 transition-colors">
<Heart size={20} />
</button>
</div>
<div className="p-4">
<div className="flex justify-between items-start mb-2">
<h4 className="font-bold text-gray-900 truncate flex-1">{notice.title}</h4>
<span className="text-primary font-bold ml-2 whitespace-nowrap">{notice.price} </span>
</div>
<p className="text-sm text-gray-500 line-clamp-2 mb-4">{notice.description}</p>
<div className="flex items-center justify-between">
<span className="text-xs bg-gray-100 px-2 py-1 rounded text-gray-600 font-medium">
{notice.category}
</span>
<button className="text-primary text-sm font-bold hover:underline">
Szczegóły
</button>
</div>
</div>
</div>
))
) : (
<div className="col-span-full text-center py-20 bg-white rounded-2xl border border-dashed border-gray-200">
<p className="text-gray-500">Brak ogłoszeń do wyświetlenia.</p>
</div>
)}
</div>
</section>
</main>
{/* Mobile Bottom Nav */}
<nav className="md:hidden fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200 px-6 py-3 flex justify-between items-center z-10">
<button className="text-primary flex flex-col items-center">
<Search size={24} />
<span className="text-[10px] mt-1 font-bold">Szukaj</span>
</button>
<button className="text-gray-400 flex flex-col items-center">
<Heart size={24} />
<span className="text-[10px] mt-1 font-medium">Ulubione</span>
</button>
<button className="bg-primary p-3 rounded-full text-white -mt-10 shadow-lg shadow-primary/30">
<PlusCircle size={28} />
</button>
<button className="text-gray-400 flex flex-col items-center">
<PlusCircle size={24} />
<span className="text-[10px] mt-1 font-medium">Dodaj</span>
</button>
<button className="text-gray-400 flex flex-col items-center">
<User size={24} />
<span className="text-[10px] mt-1 font-medium">Profil</span>
</button>
</nav>
</div>
);
}
+131
View File
@@ -0,0 +1,131 @@
import React, { useState } from 'react';
import { useNavigate, Link } from 'react-router-dom';
import { useAuthStore } from '../store/authStore';
import { Eye, EyeOff, ArrowRight } from 'lucide-react';
export default function Login() {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [emailError, setEmailError] = useState('');
const [showPassword, setShowPassword] = useState(false);
const { signIn, isLoading } = useAuthStore();
const navigate = useNavigate();
const validateEmail = (email) => {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailRegex.test(email);
};
const handleLogin = async (e) => {
e.preventDefault();
if (!email || !password) {
alert('Proszę wprowadzić email i hasło.');
return;
}
if (!validateEmail(email)) {
setEmailError('Nieprawidłowy format adresu email');
return;
}
try {
await signIn(email, password);
navigate('/');
} catch (e) {
alert("Błąd logowania: " + (e.response?.data?.message || e.message));
}
};
if (isLoading) {
return (
<div className="flex items-center justify-center min-h-screen">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary"></div>
</div>
);
}
return (
<div className="flex items-center justify-center min-h-screen bg-gray-50 px-4">
<div className="w-full max-w-md p-8 bg-white border border-gray-200 rounded-2xl shadow-sm">
<div className="mb-6">
<h1 className="text-3xl font-bold text-gray-900 mb-2">Logowanie</h1>
<div className="flex items-center text-sm">
<span className="text-gray-500 mr-1">Nie masz jeszcze konta?</span>
<Link to="/registration" className="text-primary hover:underline font-medium flex items-center">
Załóż je tutaj!
<ArrowRight size={16} className="ml-1" />
</Link>
</div>
</div>
<form onSubmit={handleLogin} className="space-y-4">
<div>
{emailError && <p className="text-red-500 text-xs mb-1">{emailError}</p>}
<input
type="email"
placeholder="Email"
value={email}
onChange={(e) => {
setEmail(e.target.value);
if (e.target.value && !validateEmail(e.target.value)) {
setEmailError('Nieprawidłowy format adresu email');
} else {
setEmailError('');
}
}}
className={`w-full px-4 py-3 rounded-lg border ${emailError ? 'border-red-500' : 'border-gray-300'} focus:outline-none focus:ring-2 focus:ring-primary/20 focus:border-primary transition-all`}
required
/>
</div>
<div className="relative">
<input
type={showPassword ? "text" : "password"}
placeholder="Hasło"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary/20 focus:border-primary transition-all"
required
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute right-3 top-1/2 -translate-y-1/2 text-gray-500 hover:text-gray-700"
>
{showPassword ? <EyeOff size={20} /> : <Eye size={20} />}
</button>
</div>
<button
type="submit"
className="w-full bg-primary text-white font-bold py-3 rounded-lg hover:bg-primary/90 transition-colors shadow-md shadow-primary/20"
>
Zaloguj się
</button>
</form>
<div className="relative my-8">
<div className="absolute inset-0 flex items-center">
<div className="w-full border-t border-gray-200"></div>
</div>
<div className="relative flex justify-center text-sm">
<span className="px-2 bg-white text-gray-400 font-medium">lub</span>
</div>
</div>
<button
onClick={() => alert("Google Login placeholder")}
className="w-full flex items-center justify-center gap-2 border border-gray-300 py-3 rounded-lg hover:bg-gray-50 transition-colors"
>
<svg className="w-5 h-5" viewBox="0 0 24 24">
<path fill="#4285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/>
<path fill="#34A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/>
<path fill="#FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z"/>
<path fill="#EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/>
</svg>
Zaloguj się przez Google
</button>
</div>
</div>
);
}
+90
View File
@@ -0,0 +1,90 @@
import { create } from "zustand";
import { persist } from "zustand/middleware";
import axios from "axios";
import * as api from "../api/auth";
export const useAuthStore = create(
persist(
(set, get) => {
// Axios interceptor for handling 401/403
axios.interceptors.response.use(
(response) => response,
(error) => {
if (error.response && (error.response.status === 401 || error.response.status === 403)) {
set({ user_id: null, token: null, isLoading: false });
delete axios.defaults.headers.common["Authorization"];
// Redirect to login using window.location for global interceptor
if (window.location.pathname !== '/login') {
window.location.href = '/login';
}
}
return Promise.reject(error);
}
);
return {
user_id: null,
token: null,
isLoading: false,
error: null,
signIn: async (email, password) => {
set({ isLoading: true, error: null });
try {
const response = await api.login({ email, password });
set({ user_id: response.user_id, token: response.token, isLoading: false });
} catch (error) {
set({
error: error.response?.data?.message || error.message,
isLoading: false,
});
throw error;
}
},
signUp: async (userData) => {
set({ isLoading: true, error: null });
try {
const response = await api.register(userData);
set({ user_id: response.user_id, token: response.token, isLoading: false });
} catch (error) {
set({
error: error.response?.data?.message || error.message,
isLoading: false,
});
throw error;
}
},
signInWithGoogle: async (googleToken) => {
set({ isLoading: true, error: null });
try {
const response = await api.googleLogin(googleToken);
set({ user_id: response.user_id, token: response.token, isLoading: false });
} catch (error) {
set({
error: error.response?.data?.message || error.message,
isLoading: false,
});
throw error;
}
},
signOut: async () => {
const { token } = get();
try {
await api.logout(token);
} catch (error) {
console.error("Logout error:", error);
} finally {
set({ user_id: null, token: null });
window.location.href = '/login';
}
},
};
},
{
name: "auth-storage",
}
)
);
+64
View File
@@ -0,0 +1,64 @@
import { create } from "zustand";
import * as api from "../api/notices";
export const useNoticesStore = create((set, get) => ({
notices: [],
error: null,
fetchNotices: async () => {
set({ error: null });
try {
const data = await api.listNotices();
set({ notices: data });
} catch (error) {
set({ error: error.message });
}
},
addNotice: async (notice) => {
try {
const newNotice = await api.createNotice(notice);
if (newNotice) {
set((state) => ({
notices: [...state.notices, newNotice],
}));
}
return newNotice;
} catch (error) {
set({ error });
return null;
}
},
editNotice: async (noticeId, notice) => {
try {
const updatedNotice = await api.editNotice(noticeId, notice);
set((state) => ({
notices: state.notices.map((n) =>
n.noticeId == noticeId ? updatedNotice : n
),
}));
return updatedNotice;
} catch (error) {
console.error("Error editing notice:", error);
set({ error });
throw error;
}
},
getNoticeById: (noticeId) => {
return get().notices.find(
(notice) => String(notice.noticeId) === String(noticeId)
);
},
deleteNotice: async (noticeId) => {
try {
await api.deleteNotice(noticeId);
set((state) => ({
notices: state.notices.filter((notice) => notice.noticeId !== noticeId),
}));
} catch (error) {
console.error("Error deleting notice:", error);
}
},
}));
+38
View File
@@ -0,0 +1,38 @@
import { create } from "zustand";
import * as api from "../api/wishlist";
export const useWishlist = create((set) => ({
wishlistNotices: [],
toggleNoticeInWishlist: async (noticeId) => {
try {
await api.toggleNoticeStatus(noticeId);
set((state) => {
const exists = state.wishlistNotices.some(
(item) => item.noticeId == noticeId
);
return exists
? {
wishlistNotices: state.wishlistNotices.filter(
(item) => item.noticeId != noticeId
),
}
: {
wishlistNotices: [
...state.wishlistNotices,
{ noticeId },
],
};
});
} catch (error) {
console.error("Error toggling wishlist notice:", error);
}
},
fetchWishlist: async () => {
try {
const data = await api.getWishlist();
set({ wishlistNotices: data });
} catch (error) {
console.error("Error fetching wishlist:", error);
}
},
}));