Skip to content

Instantly share code, notes, and snippets.

@rjdestigter
rjdestigter / machine.js
Last active March 7, 2020 14:13
Generated by XState Viz: https://xstate.js.org/viz
const canSubmit = ctx => !!(ctx.username && ctx.password && ctx.companyId)
const commonActions = {
CLICK_COMPANY_ID: "companyId",
CLICK_USERNAME: "username",
CLICK_PASSWORD: "password",
CLICK_OUTSIDE: "nothingHasFocus",
CLICK_LOGIN: [
{
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@rjdestigter
rjdestigter / machine.js
Last active March 6, 2020 18:27
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const updatePosition = assign({
position: (_, event) => event.position,
})
function geoService(context, event) {
return cb => {
if (!navigator.geolocation) {
cb({
type: 'error',
error: new Error('Geolocation is not supported'),
const context = {
questions: ["Q1", "Q2", "Q3"],
current: -1,
answers: new Map()
}
const machine = Machine(
{
id: "quiz",
initial: "quizzing",
@rjdestigter
rjdestigter / machine.js
Last active February 20, 2020 15:03
Generated by XState Viz: https://xstate.js.org/viz
const valueInput = id => ({
initial: "empty",
states: {
empty: {
on: {
[`${id}.LOCK`]: {
target: "locked",
actions: send('STEP')
}
}
@rjdestigter
rjdestigter / machine.js
Created February 20, 2020 03:57
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
"id": "bms",
"type": "parallel",
"states": {
"login": {
"id": "login",
"type": "parallel",
"states": {
"username": {
"type": "parallel",
@rjdestigter
rjdestigter / SketchSystems.spec
Created February 11, 2020 18:55
BMS_SignUp_Onboarding
BMS_SignUp_Onboarding
PurchaseLicense&
PremiumService
SelectPremiumService
selectService -> PremiumService
viewExtendedDecription -> ViewExtendedDescription
ViewExtendedDescription
close -> SelectPremiumService
Payment&
@rjdestigter
rjdestigter / SketchSystems.spec
Last active February 10, 2020 23:55
BMS_SignUp_Onboarding
BMS_SignUp_Onboarding
PurchaseLicense&
submit -> SubmittingPurchase
PremiumService
SelectPremiumService
selectService -> PremiumService
viewExtendedDecription -> ViewExtendedDescription
ViewExtendedDescription
close -> SelectPremiumService
@rjdestigter
rjdestigter / SketchSystems.spec
Last active September 16, 2019 21:05
Topolokus
Topolokus
Noop
addPolygonBtnClick -> AddPolygon
AddPolygon
cancelBtnClick -> Noop
escapeKeyPress -> Noop
Start
MouseOut