Эх сурвалжийг харах

fix: mutate at the same time may be wrong

GyDi 3 жил өмнө
parent
commit
aa29e185e4
1 өөрчлөгдсөн 7 нэмэгдсэн , 1 устгасан
  1. 7 1
      src/pages/rules.tsx

+ 7 - 1
src/pages/rules.tsx

@@ -1,4 +1,4 @@
-import { useState } from "react";
+import { useRef, useState } from "react";
 import useSWR, { useSWRConfig } from "swr";
 import { Box, Button, Grid, TextField, Typography } from "@mui/material";
 import {
@@ -28,13 +28,19 @@ const RulesPage = () => {
       .finally(() => setDisabled(false));
   };
 
+  const lockRef = useRef(false);
   const onProfileChange = (index: number) => {
+    if (lockRef.current) return;
+    lockRef.current = true;
     putProfiles(index)
       .then(() => {
         mutate("getProfiles", { ...profiles, current: index }, true);
       })
       .catch((err) => {
         console.error(err);
+      })
+      .finally(() => {
+        lockRef.current = false;
       });
   };