aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-07 03:23:29 -0500
committerbobzel <zzzman@gmail.com>2023-12-07 03:23:29 -0500
commitb4ea726e80c59bbce9f3e5de4b59165416f6a058 (patch)
tree65b57469f062ae89889001e59311f7b105be0d01 /src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
parent1b45d2610576ded9fc0c6ca9dbb64cf06b3db1e1 (diff)
streamlined version of infoui fsa
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx73
1 files changed, 61 insertions, 12 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
index 9090d0ea5..3af5a6c4b 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
@@ -3,30 +3,79 @@ import { observer } from 'mobx-react';
import './CollectionFreeFormView.scss';
import React = require('react');
-export type infoArc = {
- events: () => any;
- actions: (arg?: any) => any;
-};
-export type infoState = {
- Message: string;
- Arcs: infoArc[];
-};
+/**
+ * An Fsa Arc. The first array element is a test condition function that will be observed.
+ * The second array element is a function that will be invoked when the first test function
+ * returns a truthy value
+ */
+export type infoArc = [() => any, (res?: any) => infoState];
+
+export const StateMessage = Symbol('StateMessage');
+export const StateEntryFunc = Symbol('StateEntryFunc');
+export class infoState {
+ [StateMessage]: string = '';
+ [StateEntryFunc]?: () => any;
+ [key: string]: infoArc;
+ constructor(message: string, arcs: { [key: string]: infoArc }, entryFunc?: () => any) {
+ this[StateMessage] = message;
+ Object.assign(this, arcs);
+ this[StateEntryFunc] = entryFunc;
+ }
+}
+
+/**
+ * Create an FSA state.
+ * @param msg the message displayed when in this state
+ * @param arcs an object with fields containing @infoArcs (an object with field names indicating the arc transition and
+ * field values being a tuple of an arc transition trigger function (that returns a truthy value when the arc should fire),
+ * and an arc transition action function (that sets the next state)
+ * @param entryFunc a function to call when entering the state
+ * @returns an FSA state
+ */
+export function InfoState(
+ msg: string, //
+ arcs: { [key: string]: infoArc },
+ entryFunc?: () => any
+) {
+ return new infoState(msg, arcs, entryFunc);
+}
export interface CollectionFreeFormInfoStateProps {
- state: infoState;
+ infoState: infoState;
+ next: (state: infoState) => any;
}
@observer
export class CollectionFreeFormInfoState extends React.Component<CollectionFreeFormInfoStateProps> {
_disposers: IReactionDisposer[] = [];
+ get State() {
+ return this.props.infoState;
+ }
+ get Arcs() {
+ return Object.keys(this.State).map(key => this.State[key]);
+ }
+
clearState = () => this._disposers.map(disposer => disposer());
- initState = () => (this._disposers = this.props.state.Arcs.map(arc => reaction(arc.events, arc.actions, { fireImmediately: true })));
+ initState = () =>
+ (this._disposers = this.Arcs.map(arc => ({ test: arc[0], act: arc[1] })).map(arc => {
+ return reaction(
+ //
+ arc.test,
+ res => {
+ if (res) {
+ const next = arc.act(res);
+ this.props.next(next);
+ }
+ },
+ { fireImmediately: true }
+ );
+ }));
componentDidMount(): void {
this.initState();
}
- componentWillUpdate() {
+ componentDidUpdate() {
this.clearState();
this.initState();
}
@@ -34,6 +83,6 @@ export class CollectionFreeFormInfoState extends React.Component<CollectionFreeF
this.clearState();
}
render() {
- return <div className="infoUI">{this.props.state.Message}</div>;
+ return <div className="infoUI">{this.State[StateMessage]}</div>;
}
}