This file contains hidden or 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
GraphCutSegmentation |
This file contains hidden or 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 (machine factory function) | |
// assign (action) | |
// XState (all XState exports) | |
const fetchMachine = Machine({ | |
id: 'Traffic Light', | |
initial: 'Red', | |
states: { |
This file contains hidden or 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
Machine({ | |
id: 'Cats Fetcher', | |
initial: 'idle', | |
context: { | |
cats: null, | |
error: null | |
}, | |
states: { | |
idle: { | |
on: { |
This file contains hidden or 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
Machine({ | |
id: "Test Case Machine", | |
initial: "initial", | |
states: { | |
initial: { | |
on: { | |
"The user goes to the analyze tab for the <WebForms>": "The summary view is shown The question panel is shown with list view, without filter icon, without blue chart icon List View should have: List of file names with their extensions and number of records: Each file upload record should show a icon displaying the different extension types: PDF JPG PNG DOC XLS CSV" | |
} | |
}, | |
"The summary view is shown The question panel is shown with list view, without filter icon, without blue chart icon List View should have: List of file names with their extensions and number of records: Each file upload record should show a icon displaying the different extension types: PDF JPG PNG DOC XLS CSV": { |
This file contains hidden or 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 |
This file contains hidden or 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 |
This file contains hidden or 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
"use strict"; | |
const InitialState = '@Initial'; | |
const FetchingState = '@Data/Request'; | |
const FailureState = '@Data/Failure'; | |
const PostFetchState = '@Data/Post'; | |
const IdleState = '@Idle'; | |
const TabsModeState = '@TabsMode'; | |
const SinglePaneModeState = '@SinglePaneModeState'; | |
const AlbumsTabState = '@Albums'; | |
const AlbumsIdleState = '@Albums/Idle'; |
This file contains hidden or 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
function cuid() {} | |
function sweetAlert() {} | |
const REDIRECT_LOCATION = 'https://www.getluna.com/'; | |
/** *************************************************************************** | |
* Form Machine * | |
*************************************************************************** */ | |
const InitialState = '@Initial'; |
This file contains hidden or 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
function cuid() {} | |
function sweetAlert() {} | |
function moment() {} | |
function domToImage() {} | |
function api() {} | |
function createProgressFormDraft() {} | |
function adjustMonthYearDate() {} | |
function formatIntoValidServerDate () {} |
This file contains hidden or 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 |
OlderNewer