Functions not using most recent state in React functional component

I am converting a class component to a functional component but I am having an issue where state values from useState are not the most recent values inside a another function. Because the functions need to be called dynamically, they are first defined in a mapping to an ID and invoked using the current ID. Before, I solved this by binding the validator functions to the component itself. However as a functional component, this is not possible.

Here is a simplified version of the issue:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>export default function App(props) {
const [currentStage, setStage] = useState(0);
const [stageOrder, setStageOrder] = useState([]);
const [inputName, setInput] = useState(null);
const [invalid, setInvalid] = useState(false);
const stageDefinitions = {
[StageType.ONE]: { id: StageType.ONE, validator: validateOne },
[StageType.TWO]: { id: StageType.TWO, validator: validateTwo },
};
useEffect(() => {
// written like this for readability and make it easier to change the order in the future
let order = props.flag ? [StageType.ONE, StageType.TWO] : [StageType.ONE];
order = order.map((s) => stageDefinitions[s]);
setStageOrder(order);
}, []);
function nextStage() {
if (currentStage === stageOrder.length - 1) return;
const stage = stageOrder[currentStage];
const isValid = stage.validator();
if (isValid) setStage(currentStage + 1);
setInvalid(!isValid);
}
function validateOne() {
// problem is here; inputName remains null when called from nextStage
console.log("inputName", inputName);
return inputName && inputName.length > 1;
}
function validateTwo() {
return props.two > 1;
}
function handleClick() {
setInput(`${Math.random()}`);
}
return (
<div>
<div>Value: {inputName}</div>
{invalid && <div style={{ color: "red" }}>INVALID</div>}
<div>Stage: {currentStage}</div>
<button onClick={handleClick}>Set Value</button>
<button onClick={nextStage}>Next Stage</button>
</div>
);
}
</code>
<code>export default function App(props) { const [currentStage, setStage] = useState(0); const [stageOrder, setStageOrder] = useState([]); const [inputName, setInput] = useState(null); const [invalid, setInvalid] = useState(false); const stageDefinitions = { [StageType.ONE]: { id: StageType.ONE, validator: validateOne }, [StageType.TWO]: { id: StageType.TWO, validator: validateTwo }, }; useEffect(() => { // written like this for readability and make it easier to change the order in the future let order = props.flag ? [StageType.ONE, StageType.TWO] : [StageType.ONE]; order = order.map((s) => stageDefinitions[s]); setStageOrder(order); }, []); function nextStage() { if (currentStage === stageOrder.length - 1) return; const stage = stageOrder[currentStage]; const isValid = stage.validator(); if (isValid) setStage(currentStage + 1); setInvalid(!isValid); } function validateOne() { // problem is here; inputName remains null when called from nextStage console.log("inputName", inputName); return inputName && inputName.length > 1; } function validateTwo() { return props.two > 1; } function handleClick() { setInput(`${Math.random()}`); } return ( <div> <div>Value: {inputName}</div> {invalid && <div style={{ color: "red" }}>INVALID</div>} <div>Stage: {currentStage}</div> <button onClick={handleClick}>Set Value</button> <button onClick={nextStage}>Next Stage</button> </div> ); } </code>
export default function App(props) {
  const [currentStage, setStage] = useState(0);
  const [stageOrder, setStageOrder] = useState([]);
  const [inputName, setInput] = useState(null);
  const [invalid, setInvalid] = useState(false);

  const stageDefinitions = {
    [StageType.ONE]: { id: StageType.ONE, validator: validateOne },
    [StageType.TWO]: { id: StageType.TWO, validator: validateTwo },
  };

  useEffect(() => {
    // written like this for readability and make it easier to change the order in the future
    let order = props.flag ? [StageType.ONE, StageType.TWO] : [StageType.ONE];

    order = order.map((s) => stageDefinitions[s]);
    setStageOrder(order);
  }, []);

  function nextStage() {
    if (currentStage === stageOrder.length - 1) return;

    const stage = stageOrder[currentStage];
    const isValid = stage.validator();

    if (isValid) setStage(currentStage + 1);
    setInvalid(!isValid);
  }

  function validateOne() {
    // problem is here; inputName remains null when called from nextStage
    console.log("inputName", inputName);
    return inputName && inputName.length > 1;
  }

  function validateTwo() {
    return props.two > 1;
  }

  function handleClick() {
    setInput(`${Math.random()}`);
  }

  return (
    <div>
      <div>Value: {inputName}</div>
      {invalid && <div style={{ color: "red" }}>INVALID</div>}

      <div>Stage: {currentStage}</div>

      <button onClick={handleClick}>Set Value</button>
      <button onClick={nextStage}>Next Stage</button>
    </div>
  );
}

This can also be found on codesandbox.

I’ve tried using useCallback and defining stageDefinitions in the state. The ultimate goal is that when a validator is called from nextStage, it uses the current value of inputName.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật