Color variable changes for each mapped item Tailwind reacts
P粉982009874
P粉982009874 2024-04-04 00:13:35
0
1
469

I want that once I add another item to the list, the color of the previous item should not change

const NoteItem = ({ note }) => {
  const { colors, randomColorFunction } = useContext(AppContext);
  const color = randomColorFunction(colors);
  return (
    <div
      className={`flex flex-col min-h-28  py-6 justify-between px-3 rounded-md whitespace-pre-wrap break-words`}
      style={{ backgroundColor: `${color}` }}
    >
      <span className="font-bold text-3xl">{note.title}</span>
      <span>{note.content}</span>
      <small className="text=xl">{note.date}</small>
    </div>
  );
};

P粉982009874
P粉982009874

reply all(1)
P粉237125700

You can solve this problem in two ways

1. Use citation

import { useRef } from "react";

const NoteItem = ({ note }) => {
  const { colors, randomColorFunction } = useContext(AppContext);
  const color = useRef(randomColorFunction(colors));

  return (
    
...
); };

2.Usage status

import { useState } from "react";

const NoteItem = ({ note }) => {
  const { colors, randomColorFunction } = useContext(AppContext);
  const [color] = useState(randomColorFunction(colors));

  return (
    
...
); };

If you don't want to change the color, I think useRef is more appropriate.

See hereLive preview

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template