Browse Source

缓存账号

charles_c 5 months ago
parent
commit
47446515a6

+ 0 - 2
src/app/api/updateForMatch/route.js

@@ -29,11 +29,9 @@ export async function POST(request) {
 
     // 1. 查找并处理之前的积分历史记录
     const previousPointHistories = await PointHistory.find({ match: matchId });
-    console.log(111, previousPointHistories);
     for (const history of previousPointHistories) {
       // 找到对应的用户并扣除之前加的分数
       const user = await User.findById(history.user);
-      console.log(222, user);
       if (user) {
         user.points -= history.points; // 扣除之前加的分数
         await user.save();

+ 11 - 6
src/app/exchange-points/ExchangeForm.jsx

@@ -12,12 +12,15 @@ export default function ExchangeForm({
 }) {
   const [formData, setFormData] = useState({});
   const [isSubmitting, setIsSubmitting] = useState(false);
-  // const [currentUser, setCurrentUser] = useState(null);
 
-  // useEffect(() => {
-  //   const user = JSON.parse(localStorage.getItem("currentUser") || "null");
-  //   setCurrentUser(user);
-  // }, []);
+  useEffect(() => {
+    if (currentUser && currentUser.account) {
+      setFormData((prevData) => ({
+        ...prevData,
+        account: currentUser.account,
+      }));
+    }
+  }, []);
 
   const handleInputChange = (e) => {
     setFormData({ ...formData, [e.target.name]: e.target.value });
@@ -45,7 +48,6 @@ export default function ExchangeForm({
 
       console.log("params", params);
 
-      console.log("param", params);
       const response = await fetch("/api/exchange-history", {
         method: "POST",
         headers: {
@@ -65,7 +67,9 @@ export default function ExchangeForm({
         const updatedUser = {
           ...currentUser,
           points: currentUser.points - item.points,
+          account: formData.account || currentUser.account,
         };
+        localStorage.setItem("currentUser", JSON.stringify(updatedUser));
         setCurrentUser(updatedUser);
       } else {
         setAlert({ type: "error", message: res.error });
@@ -105,6 +109,7 @@ export default function ExchangeForm({
                 required
                 className="w-full border rounded px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500"
                 onChange={handleInputChange}
+                value={formData.account || ""}
               />
             </div>
           ) : (

+ 1 - 1
src/app/exchange-points/page.js

@@ -29,7 +29,7 @@ export default function ExchangePage() {
 
   useEffect(() => {
     loadExchanges();
-  }, [currentUser]);
+  }, [currentUser?.id]);
 
   const loadExchanges = async () => {
     if (!currentUser) return;

+ 5 - 4
src/app/personal-center/page.jsx

@@ -6,7 +6,6 @@ import { ChevronLeft, ArrowUpCircle, ArrowDownCircle } from "lucide-react";
 
 import Image from "next/image";
 import InfiniteScroll from "react-infinite-scroll-component";
-import Link from "next/link";
 
 const PAGE_SIZE = 10;
 
@@ -211,11 +210,13 @@ const PersonalCenter = () => {
 
       {activities && activities.length > 0 && (
         <div className="bg-white text-black rounded-lg px-4 py-2 mb-4 shadow-md">
-          <h3 className="text-lg font-bold  text-blue-600">最新活动</h3>
+          <h3 className="text-lg font-bold text-blue-600">最新活动</h3>
           {activities.map((activity) => (
-            <Link
+            <a
               key={activity._id}
               href={activity.link}
+              target="_blank"
+              rel="noopener noreferrer"
               className="flex items-center hover:bg-gray-100 p-2 rounded transition duration-300"
             >
               {activity.icon && (
@@ -233,7 +234,7 @@ const PersonalCenter = () => {
                 className="flex-grow"
                 dangerouslySetInnerHTML={{ __html: activity.title }}
               ></p>
-            </Link>
+            </a>
           ))}
         </div>
       )}