diff --git a/src/lib/components/Recipies/LearnReady.svelte b/src/lib/components/Recipies/LearnReady.svelte
index b18126a..f86dc32 100644
--- a/src/lib/components/Recipies/LearnReady.svelte
+++ b/src/lib/components/Recipies/LearnReady.svelte
@@ -1,22 +1,30 @@
- i am the child and this is my state: {current}
+ {#if machine}
+ i am the child and this is my state: {current}
+ {/if}
{
- subscribers.delete(subscriber);
- if (subscribers.size === 0 && stop) {
- stop();
- stop = null;
- }
- };
- }
\ No newline at end of file
diff --git a/src/lib/components/Recipies/machines/toggleMachine.ts b/src/lib/components/Recipies/machines/toggleMachine.ts
deleted file mode 100644
index e5ded94..0000000
--- a/src/lib/components/Recipies/machines/toggleMachine.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { Machine } from 'xstate';
-
-export const toggleMachine = Machine({
- id: 'toggle',
- initial: 'NOTREADY',
- states: {
- NOTREADY: {
- on: { TOGGLE: 'READY' }
- },
- READY: {
- on: { TOGGLE: 'NOTREADY' }
- }
- }
-});
\ No newline at end of file
diff --git a/src/lib/components/Recipies/oRecipe.svelte b/src/lib/components/Recipies/oRecipe.svelte
index 4c2c0f1..c1f29c7 100644
--- a/src/lib/components/Recipies/oRecipe.svelte
+++ b/src/lib/components/Recipies/oRecipe.svelte
@@ -3,7 +3,7 @@
import { interpret } from 'xstate';
import Composite from '$lib/core/Composite.svelte';
- export let machine;
+ // export let machine;
let composite = {
id: 'testingstuff',
@@ -16,10 +16,22 @@
children: [
{
id: 'child',
- // component: 'LearnReady',
+ component: 'LearnReady',
slot: 'left',
store: {
xstate: 'NOTREADY'
+ },
+ machine: {
+ id: 'compositemachine',
+ initial: 'NOTREADY',
+ states: {
+ NOTREADY: {
+ on: { TOGGLE: 'READY' }
+ },
+ READY: {
+ on: { TOGGLE: 'NOTREADY' }
+ }
+ }
}
},
{
@@ -30,23 +42,26 @@
]
};
- let current = machine.initialState.value;
+ // let current = machine.initialState.value;
- const service = interpret(machine)
- .onTransition((state) => {
- current = state.value;
- })
- .start();
+ // const service = interpret(machine)
+ // .onTransition((state) => {
+ // current = state.value;
+ // })
+ // .start();
// Derive possible actions from the current state
- $: possibleActions = machine.states[current]?.meta.buttons || [];
+ // $: possibleActions = machine.states[current]?.meta.buttons || [];
+
+
+
+
+
diff --git a/src/lib/core/Composite.svelte b/src/lib/core/Composite.svelte
index f92732b..7124037 100644
--- a/src/lib/core/Composite.svelte
+++ b/src/lib/core/Composite.svelte
@@ -7,6 +7,7 @@
import { dataStore } from '$lib/core/dataLoader';
import { createCompositeStore, getCompositeStore } from '$lib/core/compositeStores';
import { coreServices } from './coreServices';
+ import { Machine } from 'xstate';
interface ICompositeLayout {
areas: string;
@@ -26,6 +27,7 @@
store?: Record
;
children?: IComposite[];
servicesLoaded?: boolean;
+ machine?: any;
}
export let composite: IComposite;
@@ -185,6 +187,7 @@
this={Component}
id={composite.id}
store={getCompositeStore(composite.id)}
+ machine={composite.machine}
services={loadedServices}
/>
{/await}
@@ -201,6 +204,7 @@
this={ChildComponent}
id={child.id}
store={getCompositeStore(child.id)}
+ machine={child.machine}
services={loadedServices}
/>
{#if child.children && child.children.length}