首页 > 其他 > 详细

[XState] Multiple Simultaneous States with Parallel States

时间:2020-01-20 10:31:03      阅读:84      评论:0      收藏:0      [点我收藏+]

Can you walk and talk at the same time? If so, you‘ve experienced what it‘s like to be in two states at the same time. Hopefully, those two states have no influence on the other. Whether or not you talk, you can walk, and vice versa. States that occur concurrently and have no affect on the other are known as "parallel states".

Parallel states happen simultaneously. The machine is in all of the parallel states at the same time. To create a parallel state node, we set the type to ‘parallel‘ and then remove the initial state. There‘s no need for an initial property when you‘re in all the child states at the same time.

 

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

const spaceHeaterMachine = Machine({
  id: "spaceHeater",
  initial: "poweredOff",
  states: {
    poweredOff: {
      on: { TOGGLE_POWER: "poweredOn" }
    },
    poweredOn: {
      on: { TOGGLE_POWER: "poweredOff" },
      type: "parallel", // mark parallel
      states: {
        heated: {
          initial: "lowHeat",
          states: {
            lowHeat: {
              on: { TOGGLE_HEAT: "highHeat" }
            },
            highHeat: {
              on: { TOGGLE_HEAT: "lowHeat" }
            }
          }
        },
        oscillation: {
          initial: "disabled",
          states: {
            disabled: {
              on: { TOGGLE_OSC: "enabled" }
            },
            enabled: {
              on: { TOGGLE_OSC: "disabled" }
            }
          }
        }
      }
    }
  }
});

技术分享图片

[XState] Multiple Simultaneous States with Parallel States

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

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