From 94cefea3f6c3999b0364b22a81ade49e28135011 Mon Sep 17 00:00:00 2001 From: bobzel Date: Wed, 6 Dec 2023 23:36:00 -0500 Subject: went back to supporting multiple arcs explicilty --- .../CollectionFreeFormInfoUI.tsx | 79 ++++++++++++++-------- 1 file changed, 50 insertions(+), 29 deletions(-) (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx') diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx index 74b5545bd..a54ee4b2c 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx @@ -25,54 +25,75 @@ export class CollectionFreeFormInfoUI extends React.Component this.props.Freeform.childDocs, - Actions: (docs: Doc[]) => { - if (docs.length === 1) this.currState = this.state1; - if (docs.length > 1) this.currState = this.state2; - }, + Arcs: [ + { + events: () => this.props.Freeform.childDocs, + actions: (docs: Doc[]) => { + if (docs.length === 1) this.currState = this.state1; + if (docs.length > 1) this.currState = this.state2; + }, + }, + ], }; state1: infoState = { Message: 'Create a second doc', - Events: () => this.props.Freeform.childDocs, - Actions: (docs: Doc[]) => { - if (docs.length === 0) this.currState = this.start; - if (docs.length === 2) this.currState = this.state2; - }, + Arcs: [ + { + events: () => this.props.Freeform.childDocs, + actions: (docs: Doc[]) => { + if (docs.length === 0) this.currState = this.state0; + if (docs.length === 2) this.currState = this.state2; + }, + }, + ], }; state2: infoState = { Message: 'Create a link', - Events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), docs: this.props.Freeform.childDocs.slice() }), - Actions: arc => { - const { links, docs } = arc; - if (docs.length === 0) this.currState = this.start; - if (docs.length === 1) this.currState = this.state1; - if (links?.length) this.currState = this.state3; - }, + Arcs: [ + { + events: () => this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), + actions: links => links?.length && (this.currState = this.state3), + }, + { + events: () => this.props.Freeform.childDocs, + actions: docs => { + if (docs.length === 0) this.currState = this.state0; + if (docs.length === 1) this.currState = this.state1; + }, + }, + ], }; state3: infoState = { Message: 'View links', - Events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), viewingLinks: DocumentLinksButton.LinkEditorDocView }), - Actions: arc => { - const { links, viewingLinks } = arc; - if (viewingLinks) this.currState = this.state4; - if (links?.length === 0) this.currState = this.state2; - }, + Arcs: [ + { + events: () => this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), + actions: links => links?.length === 0 && (this.currState = this.state2), + }, + { + events: () => DocumentLinksButton.LinkEditorDocView, + actions: viewingLinks => viewingLinks && (this.currState = this.state4), + }, + ], }; state4: infoState = { Message: 'You did it!', - Events: () => false, - Actions: arc => {}, + Arcs: [ + { + events: () => false, + actions: arc => {}, + }, + ], }; /* -- cgit v1.2.3-70-g09d2