Lazar Kostic пре 3 година
родитељ
комит
564ecd8328

+ 2
- 2
components/cards/cart-card/CartCard.jsx Прегледај датотеку

people: PropType.string, people: PropType.string,
process: PropType.string, process: PropType.string,
pairing: PropType.string, pairing: PropType.string,
available: PropType.Boolean,
isFeatured: PropType.Boolean,
//available: PropType.Boolean,
//isFeatured: PropType.Boolean,
price: PropType.number, price: PropType.number,
customID: PropType.string, customID: PropType.string,
}), }),

+ 5
- 15
components/forms/contact/ContactPageForm.jsx Прегледај датотеку

import { import {
Alert,
Box, Box,
Button, Button,
Container, Container,
Grid, Grid,
Snackbar,
TextField, TextField,
Typography, Typography,
} from '@mui/material'; } from '@mui/material';
import { BASE_PAGE } from '../../../constants/pages'; import { BASE_PAGE } from '../../../constants/pages';
import { postQuestion } from '../../../requests/question/postQuestionRequest'; import { postQuestion } from '../../../requests/question/postQuestionRequest';
import { contactPageSchema } from '../../../schemas/contactSchema'; import { contactPageSchema } from '../../../schemas/contactSchema';
import Notification from '../../notification/Notification';


const ContactPageForm = () => { const ContactPageForm = () => {
const { t } = useTranslation('contact'); const { t } = useTranslation('contact');


return ( return (
<Container component="main" maxWidth="md" sx={{ mb: '60px' }}> <Container component="main" maxWidth="md" sx={{ mb: '60px' }}>
<Snackbar
anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
<Notification
open={open} open={open}
autoHideDuration={3000}
onClose={handleCloseNotification}
>
<Alert
onClose={handleCloseNotification}
severity="success"
sx={{ width: '100%', backgroundColor: 'green', color: 'white' }}
>
{t('contact:notification')}
</Alert>
</Snackbar>
notification={t('contact:notification')}
handleCloseNotification={handleCloseNotification}
/>
<Box <Box
sx={{ sx={{
marginTop: 32, marginTop: 32,

+ 2
- 2
components/forms/shipping-details/ShippingDetailsForm.jsx Прегледај датотеку

}; };


ShippingDetailsForm.propTypes = { ShippingDetailsForm.propTypes = {
backBtn: PropType.Boolean,
isCheckout: PropType.Boolean,
backBtn: PropType.bool,
isCheckout: PropType.bool,
submitHandler: PropType.func, submitHandler: PropType.func,
}; };



+ 1
- 0
components/hero/Hero.jsx Прегледај датотеку

alt="profile" alt="profile"
width={818} width={818}
height={796} height={796}
priority
/> />
</Box> </Box>
</Box> </Box>

+ 39
- 30
components/layout/navbar/DesktopNav.jsx Прегледај датотеку

justifyContent: 'center', justifyContent: 'center',
}} }}
> >
{items.map((item, i) => (
{items.map((item) => (
<NavItemDesktop <NavItemDesktop
key={item.id} key={item.id}
router={router} router={router}
}} }}
> >
<Link key="home" href={PROFILE_PAGE}> <Link key="home" href={PROFILE_PAGE}>
<Image
src="/images/profile.svg"
alt="profile"
width={24}
height={24}
/>
<a>
<Image
src="/images/profile.svg"
alt="profile"
width={24}
height={24}
/>
</a>
</Link> </Link>
</Box> </Box>
<Box <Box
}} }}
> >
<Link key="home" href={CART_PAGE}> <Link key="home" href={CART_PAGE}>
<Box>
{totalQuantity !== 0 && (
<Box
sx={{
color: 'white',
zIndex: 3,
width: 20,
height: 20,
borderRadius: 20,
textAlign: 'center',
px: 0.5,
ml: 2.2,
mt: -1,
fontSize: 17,
position: 'absolute',
backgroundColor: 'primary.main',
}}
>
{totalQuantity}
</Box>
)}
<Image src="/images/cart.svg" alt="cart" width={24} height={24} />
</Box>
<a>
<Box>
{totalQuantity !== 0 && (
<Box
sx={{
color: 'white',
zIndex: 3,
width: 20,
height: 20,
borderRadius: 20,
textAlign: 'center',
px: 0.5,
ml: 2.2,
mt: -1,
fontSize: 17,
position: 'absolute',
backgroundColor: 'primary.main',
}}
>
{totalQuantity}
</Box>
)}
<Image
src="/images/cart.svg"
alt="cart"
width={24}
height={24}
/>
</Box>
</a>
</Link> </Link>
</Box> </Box>
</Box> </Box>

+ 2
- 2
components/layout/navbar/MobileNav.jsx Прегледај датотеку

}} }}
> >
<Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 2 }}> <Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 2 }}>
<IconButton disableRipple>
<CloseIcon color="primary" onClick={toggleDrawer(false)} />
<IconButton disableRipple onClick={toggleDrawer(false)}>
<CloseIcon color="primary" />
</IconButton> </IconButton>


{session?.user?._id && ( {session?.user?._id && (

+ 22
- 0
components/notification/Notification.jsx Прегледај датотеку

import { Alert, Snackbar } from '@mui/material';

const Notification = ({ handleCloseNotification, notification, open }) => {
return (
<Snackbar
anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
open={open}
autoHideDuration={3000}
onClose={handleCloseNotification}
>
<Alert
onClose={handleCloseNotification}
severity="success"
sx={{ width: '100%', backgroundColor: 'green', color: 'white' }}
>
{notification}
</Alert>
</Snackbar>
);
};

export default Notification;

+ 8
- 6
components/product-card/ProductCard.jsx Прегледај датотеку

href={`/products/${product.customID}`} href={`/products/${product.customID}`}
passHref passHref
> >
<Image
src={product.image}
alt="product image"
width={500}
height={390}
/>
<a>
<Image
src={product.image}
alt="product image"
width={500}
height={390}
/>
</a>
</NextLink> </NextLink>
</Box> </Box>
<Box <Box

+ 6
- 14
components/profile-content/ProfileContent.jsx Прегледај датотеку

import { Alert, Snackbar, Typography } from '@mui/material';
import { Typography } from '@mui/material';
import { Box } from '@mui/system'; import { Box } from '@mui/system';
import { useSession } from 'next-auth/react'; import { useSession } from 'next-auth/react';
import { useTranslation } from 'next-i18next'; import { useTranslation } from 'next-i18next';
import ContentContainer from '../layout/content-wrapper/ContentContainer'; import ContentContainer from '../layout/content-wrapper/ContentContainer';
import PageWrapper from '../layout/page-wrapper/PageWrapper'; import PageWrapper from '../layout/page-wrapper/PageWrapper';
import StepTitle from '../layout/steps-title/StepTitle'; import StepTitle from '../layout/steps-title/StepTitle';
import Notification from '../notification/Notification';


const ProfileContent = ({ orders }) => { const ProfileContent = ({ orders }) => {
const { t } = useTranslation('profile'); const { t } = useTranslation('profile');
return ( return (
<PageWrapper> <PageWrapper>
<StepTitle title={t('profile:title')} /> <StepTitle title={t('profile:title')} />
<Snackbar
anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
<Notification
open={open} open={open}
autoHideDuration={3000}
onClose={handleCloseNotification}
>
<Alert
onClose={handleCloseNotification}
severity="success"
sx={{ width: '100%', backgroundColor: 'green', color: 'white' }}
>
{t('profile:notification')}
</Alert>
</Snackbar>
handleCloseNotification={handleCloseNotification}
notification={t('profile:notification')}
/>


<ContentContainer> <ContentContainer>
<Box flexGrow={1} sx={{ minWidth: '65%' }}> <Box flexGrow={1} sx={{ minWidth: '65%' }}>

+ 1
- 1
public/locales/en/contact.json Прегледај датотеку

"firstName": "First name", "firstName": "First name",
"lastName": "Last name", "lastName": "Last name",
"email": "Email", "email": "Email",
"msg": "Message",
"message": "Message",
"notification": "Question submitted!" "notification": "Question submitted!"
} }

Loading…
Откажи
Сачувај