[React/NextJS] Any React Devs that can help figure out where we've gone short with this Cart?

https://github.com/callum-laing/shopping-site/tree/main We're using localStorage and useEffect.. I think we're close, but we can't quite figure out the final hurdle to get over the finish line... We're working in app/cart/page.jsx and app/shop/page.jsx.
78 Replies
CDL
CDL3mo ago
pushes this to the top
b1mind
b1mind3mo ago
const Cart = () => {
const searchParams = useSearchParams();
const id = searchParams.id;
const storedItems = JSON.parse(localStorage.getItem("items"));

const [items, setItems] = useState(storedItems);

useEffect(() => {
if (id) {
const newItem = posts.filter((item) => item.id === id);
items.push(newItem)
setItems(items);
}
localStorage.setItem("items", JSON.stringify(items));
}, [items]);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
<p>
{items.map((item) => (
<div key={item.id}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</p>
</div>
);
};

export default Cart;
const Cart = () => {
const searchParams = useSearchParams();
const id = searchParams.id;
const storedItems = JSON.parse(localStorage.getItem("items"));

const [items, setItems] = useState(storedItems);

useEffect(() => {
if (id) {
const newItem = posts.filter((item) => item.id === id);
items.push(newItem)
setItems(items);
}
localStorage.setItem("items", JSON.stringify(items));
}, [items]);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
<p>
{items.map((item) => (
<div key={item.id}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</p>
</div>
);
};

export default Cart;
Something like this 🤔 In my mind this works 😂 I should find a playground to just put your code in mmm yea idk all sorts of issues when I try it in stack blitz use client seems like bs 🤣 casue I had to check to see if window exists to use localStorage which is fine but I thought that is what the whole use client string was for. cause its trying to run ont he server first. https://stackblitz.com/edit/stackblitz-starters-rtgg9j?description=The%20React%20framework%20for%20production&file=app%2Fcart%2Fpage.jsx,app%2Fshop%2Fpage.jsx&title=Next.js%20Starter idk if that works cause I didn't save it but yea... what a mess. Really don't get whats so hard about this... fukin React/NextJS
CDL
CDL3mo ago
you're not gonna give up are ya
b1mind
b1mind3mo ago
export default function Cart() {
const searchParams = useSearchParams();
const id = searchParams.id;

const store = localStorage.getItem('items');
const storedItems = JSON.parse(store);
const [items, setItems] = useState(storedItems);

useEffect(() => {
const newItem = posts.filter((item) => item.id === id);
if (newItem) {
setItems(newItem);
}
localStorage.setItem('items', JSON.stringify(items));
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
<p>
{/* {items.map((item) => (
<div key={item.id}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))} */}
</p>
</div>
);
}
export default function Cart() {
const searchParams = useSearchParams();
const id = searchParams.id;

const store = localStorage.getItem('items');
const storedItems = JSON.parse(store);
const [items, setItems] = useState(storedItems);

useEffect(() => {
const newItem = posts.filter((item) => item.id === id);
if (newItem) {
setItems(newItem);
}
localStorage.setItem('items', JSON.stringify(items));
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
<p>
{/* {items.map((item) => (
<div key={item.id}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))} */}
</p>
</div>
);
}
I mean I'm close 🤣 if it would just read the localStorage >.>;;
b1mind
b1mind3mo ago
No description
b1mind
b1mind3mo ago
cause it thinks its on the server and window object ofc does not exists
CDL
CDL3mo ago
should I build this in vite to use context api to finish it, then leave our attempt how it is until we find a fix? lol
b1mind
b1mind3mo ago
I mean you do you xD lol At this point I'm just back to remembering why I think its al lshit SvelteKit ftw
CDL
CDL3mo ago
hahaha yea, dont tempt me
b1mind
b1mind3mo ago
😂
CDL
CDL3mo ago
IF I enjoy BE, you know i'm jumping back on svelte quicker than you can say boo lol
b1mind
b1mind3mo ago
mmm I do see errors in my code but nothing helps if I can't get localStorage read... whats f'd too is I had it kinda working 😂
CDL
CDL3mo ago
so localstorage is the issue huh. best we get rid of it 😄 what about uhh... context? 🤣
b1mind
b1mind3mo ago
not going to solve your issues here its not localStorage persay its where the code runs as I just said. You would still want to use localStorage with Context API if you wanted a persitant store. So unless you were doing a SPA wouldn't matter here
CDL
CDL3mo ago
yea I was joking
b1mind
b1mind3mo ago
oh right just use a wrapper cause its boilplatey af xD
b1mind
b1mind3mo ago
Medium
useLocalStorage hook for Next.Js, typed, and SSR friendly
I am learning React and Next.js, and I needed a way to access the localStorage without running into problems with SSR. Hooks to the rescue.
CDL
CDL3mo ago
tryna wrap my head around context with their wordy wordyness in this course, quite the brain frazzler, but I get the jist of it.
b1mind
b1mind3mo ago
useLocalStorage
Custom hook that uses local storage to persist state across page reloads.
b1mind
b1mind3mo ago
cause in React you can't just do things without importing a wrapper fml 🤦‍♂️ I mean I have to check for browser in my Svelte Store too but >.>;;
import { writable } from 'svelte/store'
import { browser } from '$app/environment'

export const persistStore = function (key, initial) {
// if (browser && !document.hasStorageAccess()) document.requestStorageAccess()

const persist = browser ? localStorage.getItem(key) : false
const data = persist ? JSON.parse(persist) : initial

const store = writable(data, () => {
const unsubscribe = store.subscribe((value) => {
browser ? localStorage.setItem(key, JSON.stringify(value)) : false
})
return unsubscribe
})
return store
}
import { writable } from 'svelte/store'
import { browser } from '$app/environment'

export const persistStore = function (key, initial) {
// if (browser && !document.hasStorageAccess()) document.requestStorageAccess()

const persist = browser ? localStorage.getItem(key) : false
const data = persist ? JSON.parse(persist) : initial

const store = writable(data, () => {
const unsubscribe = store.subscribe((value) => {
browser ? localStorage.setItem(key, JSON.stringify(value)) : false
})
return unsubscribe
})
return store
}
This is what you would do with ContextAPI too probabaly 10x more code though 🤣
CDL
CDL3mo ago
just a bunch of words to me
b1mind
b1mind3mo ago
Yea I'm done I'll let someone who actually enjoys NextJS to help you I tried xD
CDL
CDL3mo ago
you gave it your best shot
b1mind
b1mind3mo ago
meh I gave it my best "I hate this" shot 🤣 the answers are there for ya just gotta implement it with the hook wrapper or making your own. almost be easier to just setup sqlite and use the RSC 😂
CDL
CDL3mo ago
I began doing it in vite just to see how it works wit hcontext etc to have a finished product until we can get someone to help, and I already regret starting lmao well that was the plan wasn't it, lol learn some backend, come back, jazz it up
b1mind
b1mind3mo ago
yea do that
CDL
CDL3mo ago
ill get rid of this vite project, we'll come back to this later if no-one helps in the mean time
CDL
CDL3mo ago
Hah.
No description
b1mind
b1mind3mo ago
😉 I use it all ALL THE THINGS Localstorage is great for local info
WhoSalty
WhoSalty3mo ago
"use client";
import posts from "../data";
import { useSearchParams } from "next/navigation";
import React, { useState, useEffect } from "react";

const Cart = () => {
const searchParams = useSearchParams();
const id = searchParams.get("id");

const [items, setItems] = useState(() => JSON.parse(localStorage.getItem("items") || "[]"));

useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
return () => {
setItems((prevItems) => [...prevItems, newItem]);
localStorage.setItem("items", JSON.stringify([...items, newItem]));
}
}
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
{items.map((item, index) => (
<div key={index}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</div>
);
};

export default Cart;
"use client";
import posts from "../data";
import { useSearchParams } from "next/navigation";
import React, { useState, useEffect } from "react";

const Cart = () => {
const searchParams = useSearchParams();
const id = searchParams.get("id");

const [items, setItems] = useState(() => JSON.parse(localStorage.getItem("items") || "[]"));

useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
return () => {
setItems((prevItems) => [...prevItems, newItem]);
localStorage.setItem("items", JSON.stringify([...items, newItem]));
}
}
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
{items.map((item, index) => (
<div key={index}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</div>
);
};

export default Cart;
try this
CDL
CDL3mo ago
I’ll try this when I’m home in a few hours, thanks for the attempt! 🤞 Alright I tried it, but it didn't fix the problem... nice effort though 😅
b1mind
b1mind3mo ago
what does it get hung on? I wasn't aware you could do anons like that in the useEffect/state hooks it looked like a interesting solution
CDL
CDL3mo ago
this appeared in the terminal, but in dev tools there's no error
No description
CDL
CDL3mo ago
but I get this
No description
b1mind
b1mind3mo ago
ah same issue
CDL
CDL3mo ago
aye
b1mind
b1mind3mo ago
ya its trying to use localStorage on the server which is like window what? use client is a lie? lol
glutonium
glutonium3mo ago
items.push() this feels illegal 😂
b1mind
b1mind3mo ago
I mean lol
glutonium
glutonium3mo ago
can't we do
setItem(preItem => preItem.push())
setItem(preItem => preItem.push())
b1mind
b1mind3mo ago
its faster than [newItem, ...items] but I don't konw how that works with React and rerendering if it ignores it.
glutonium
glutonium3mo ago
hmm fair i mean since u r not allowed to directly change state it just feels so wrong to do 😂
b1mind
b1mind3mo ago
the issue is getting localStorage read to not wig out thinking its serverside xD
glutonium
glutonium3mo ago
hmm i see damn i need to get good with react ;-;
b1mind
b1mind3mo ago
I think its horrid, but I don't have to use it lol
glutonium
glutonium3mo ago
i learnt about useState and useEffect and just ran away with my life
WhoSalty
WhoSalty3mo ago
Oh, it works in dev mode lol, got to do some extra things to make it run in production due to window and local storage
CDL
CDL3mo ago
yeah we figured that, nice attempt though! I think ill probably come back to it once ive learned soem backend and throw that in there instead haha
WhoSalty
WhoSalty3mo ago
ill give it another crack in a few, it was a fun challenge, anything to get me off css lol
"use client";
import posts from "../data";
import { useSearchParams } from "next/navigation";
import React, { useState, useEffect } from "react";
import { Suspense } from "react";

const CartComponent = () => {
const searchParams = useSearchParams();
const id = searchParams.get("id");

const [items, setItems] = useState(() => {
if (typeof window !== "undefined") {
return JSON.parse(localStorage.getItem("items") || "[]");
} else {
return [];
}
});

useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
setItems((prevItems) => [...prevItems, newItem]);
localStorage.setItem("items", JSON.stringify([...items, newItem]));
}
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
{items.map((item, index) => (
<div key={index}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</div>
);
};


export default function Cart() {
return (
<Suspense>
<CartComponent />
</Suspense>
)
}
"use client";
import posts from "../data";
import { useSearchParams } from "next/navigation";
import React, { useState, useEffect } from "react";
import { Suspense } from "react";

const CartComponent = () => {
const searchParams = useSearchParams();
const id = searchParams.get("id");

const [items, setItems] = useState(() => {
if (typeof window !== "undefined") {
return JSON.parse(localStorage.getItem("items") || "[]");
} else {
return [];
}
});

useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
setItems((prevItems) => [...prevItems, newItem]);
localStorage.setItem("items", JSON.stringify([...items, newItem]));
}
}, []);

return (
<div>
<h2>Please proceed to give me your card details!</h2>
{items.map((item, index) => (
<div key={index}>
{item.id}
{item.name}
{item.price}
{item.image}
</div>
))}
</div>
);
};


export default function Cart() {
return (
<Suspense>
<CartComponent />
</Suspense>
)
}
Tenkes
Tenkes3mo ago
So the way Next works is it renders components on server and sends rendered HTML to the client. However sometimes we need to use client-side stuff in our components such as localStorage, React hooks etc. In that case we mark component as client component with "use client" at the top of the file so Next knows it should be rendered on the client . However client components are initially rendered on server, and then on client. I'm not sure exactly how and why that works but that's why sometimes we need to first make sure we're on client-side using if (typeof window !== 'undefined') {/* ... */} before doing some client side stuff. We don't need it for hooks though, I guess they have client-side check inside of them or something lol. @b1mind hope this clears some things out 😂
b1mind
b1mind3mo ago
I already understood this I'm triggered by how stupid it is to have use-client and still have to check for window But I get it cause if it can it will render it out ssr first then client SvelteKit is very much the same way and* you do have to check if browser there too. >.>;;
We don't need it for hooks though, I guess they have client-side check inside of them or something lol.
can you give an example of this cause yea that is what I thought if it was inside a effect/state hook you didn't need to check window object. This seems to work 🤘 well kinda... seems to keep the last added in the array so you get two of it till you come back 🤔
WhoSalty
WhoSalty3mo ago
have you cleared localstorage
b1mind
b1mind3mo ago
yea mate
b1mind
b1mind3mo ago
No description
WhoSalty
WhoSalty3mo ago
i didn’t seem to get that 🤔 but code is code
b1mind
b1mind3mo ago
No description
b1mind
b1mind3mo ago
facts xD lol
WhoSalty
WhoSalty3mo ago
im unhappy with it anyway due to the exhaustive deps warning 😢
b1mind
b1mind3mo ago
useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
setItems([...items, newItem]);
localStorage.setItem('items', JSON.stringify([...items, newItem]));
}
}, []);
useEffect(() => {
const newItem = posts.find((item) => item.id === parseInt(id));

if (newItem) {
setItems([...items, newItem]);
localStorage.setItem('items', JSON.stringify([...items, newItem]));
}
}, []);
seems to do it
WhoSalty
WhoSalty3mo ago
im going to try and move the deps into the useeffect but when i try i get loops lol and still end up needing searchParams
b1mind
b1mind3mo ago
you could use a dynamic route too as I was telling CDL
WhoSalty
WhoSalty3mo ago
i’m honestly not familiar with nextjs new apps route thing, still doing it the old way
b1mind
b1mind3mo ago
old way the clientside only way? or pre folder routing you mean?
WhoSalty
WhoSalty3mo ago
uhm, just the structure, src/api, src/pages etc the latter i suppose
b1mind
b1mind3mo ago
gotcha yea it is teh way I don't do React though so I don't have a leg in the race 🤣 if I did I'd probably pick Remix though
WhoSalty
WhoSalty3mo ago
i think i ran into problems utilizing Prisma Orm with the new way ran back to what i knew anyways, i relearned a lot about useEffect trying to fix this, 🫡
b1mind
b1mind3mo ago
Yea I gotta learn a little bit too, and how much I'd rather still use SvelteKit 🤣
CDL
CDL3mo ago
glad you did useEffect, I hate it. Hah I get the item being added twice with your latest attempt, update: it seems to work
b1mind
b1mind3mo ago
if you use the edited bit I did you wont this bit
WhoSalty
WhoSalty3mo ago
I am still thinking about if the localstorage set should be done on unmount or not 🤔
b1mind
b1mind3mo ago
I mean it should be a persistent store but this works for now 😄
WhoSalty
WhoSalty3mo ago
yeah if it works :thumbup:
b1mind
b1mind3mo ago
this is what I'd probably use, or make my own.
CDL
CDL3mo ago
yeah don't need to go wild on it haha, I really appreciate the efforts!
WhoSalty
WhoSalty3mo ago
how do we make it work without exhaustive deps warning 😩 you would think an empty dep array is a react feature so that we can explicitly state we want this effect to run once
CDL
CDL3mo ago
sorry what deps warning? I seem to get this
No description
CDL
CDL3mo ago
though weirdly, now whwnever i refresh it adds an item to the cart
WhoSalty
WhoSalty3mo ago
i get an exhaustive deps lint warning when building no me gusta eso amigo 👴🏼
Want results from more Discord servers?
Add your server
More Posts
swiper active solde probHello awesome dev ! I have a problem, I want to make a slider with Swiper. I would prefer my activRealize a vertical scrollHi everyone I realize this this is my work: https://codepen.io/alpha_66/pen/RwOrYNx?editors=0100 Can you think of a good use case for an css-only if/else like this?So, Lea Verou put out a tweet looking at a pretty cool way to make an if/else with CSS-only, for styCSS Columns layout with dynamic overflow-xPlease see the included code. - Why is my `<main>`container overflowing vertically instead of horizoWhat's not working here? I can't put my finger on itI'm working on a landing page for a friend, so the content is coming from a CMS. This means I need tHow can I create a shape like the one in the photo and it has a border?I want to create a shape like in the image and it has a border around this shape. Can anyone help meHow do I make this design responsiveI want to make my teal designed paged responsive and looking like the "good food" design but I belieHow do configure a subdomain Cloudflare Zero Trust / ApacheI can use a subdomain as long as I use different local IP addresses. That works to expose different How to make a form above from the container without disturbing the layout?My current layout and the layout I want i have given. Here's my current code:-shopping site in NextJS - can't figure out how to send the card from shop/page.jsx, to cart/page.jsxhttps://github.com/callum-laing/shopping-site/tree/main Starting off simple, though I'm not sure ho