首页 > 其他 > 详细

[XState] Conditionally Transition to States with Guards in XState

时间:2020-01-19 23:34:32      阅读:83      评论:0      收藏:0      [点我收藏+]

Not all transitions should be taken immediately. Occasionally, we would like to conditionally take a transition. We do this through the use of "guards". A "guard" is a predicate function (a function that returns a boolean) that is set on a transition object‘s cond property (short for "conditional").

When an event is sent to the machine and it encounters a transition object with a cond property set to a guard function, it will call that function with the current context and event object. If the guard returns true, the transition will be taken, otherwise, it will attempt the next transition for the event, or remain in the current state.

 

The code logic is, before ‘deposited‘ larger or equal than 100, we cannot do ‘vending‘. It uses ‘guards‘ & ‘cond‘.

const { Machine, interpret } = require("xstate");

const vendingMachine = Machine(
  {
    id: "vendingMachine",
    initial: "idle",
    context: {
      deposited: 0
    },
    states: {
      idle: {
        on: {
          SELET_ITEM: {
            target: "vending",
            cond: "depositedEnough"
          },
          DEPOSIT_QUARTER: {
            actions: ["addQuarter"]
          }
        }
      },
      vending: {}
    }
  },
  {
    actions: {
      addQuarter: assign({
        deposited: context => context.deposited + 25
      })
    },
    guards: {
      depositedEnough: context => context.deposited >= 100
    }
  }
);

 

Before valid:

技术分享图片

After valid:

技术分享图片

vending:

技术分享图片

[XState] Conditionally Transition to States with Guards in XState

原文:https://www.cnblogs.com/Answer1215/p/12215896.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!