Last active
August 12, 2019 17:44
-
-
Save mikaelkaron/d7b123f992f8cd2c461fd41025d06bba to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
const config = { | |
id: 'search', | |
initial: 'idle', | |
context: { | |
valid: true, | |
name: 'Mikael Karon' | |
}, | |
states: { | |
idle: { | |
type: 'parallel', | |
states: { | |
input: { | |
initial: 'invalid', | |
states: { | |
invalid: { | |
on: { | |
'': { target: 'valid', cond: 'valid' } | |
} | |
}, | |
valid: { on: { SUBMIT: '#search.pending' } } | |
}, | |
on: { INPUT: { target: 'input', actions: 'input' } } | |
}, | |
results: { | |
initial: 'empty', | |
states: { | |
empty: { | |
on: { | |
'': { target: 'found', cond: 'found' } | |
} | |
}, | |
found: { | |
on: { SELECT: '#search.done' } | |
} | |
} | |
} | |
} | |
}, | |
pending: { | |
entry: 'pending', | |
invoke: { | |
src: 'submit', | |
onDone: { target: 'idle', actions: 'success' }, | |
onError: { target: 'idle', actions: 'error' } | |
}, | |
after: { TIMEOUT: { target: 'idle', actions: 'timeout' } } | |
}, | |
done: { | |
type: 'final' | |
} | |
} | |
}; | |
const options = { | |
actions: { | |
input: assign((context, event) => ({ | |
...context, | |
...event | |
})), | |
pending: assign({ error: undefined }), | |
success: assign({ | |
results: (_context, event) => event.data | |
}), | |
error: assign({ | |
error: (_context, event) => event.data.message | |
}), | |
timeout: assign({ error: "Timeout: No response from backend" }) | |
}, | |
guards: { | |
valid: context => context.valid, | |
found: context => context.results | |
}, | |
services: { | |
submit: ({ name }) => Promise.resolve([{ name }]) | |
}, | |
delays: { | |
TIMEOUT: 2000 | |
} | |
}; | |
const machine = Machine(config, options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment