diff options
-rw-r--r-- | 821e0890-525b-47f1-be69-45c2ac095c04-icon1701917679809_m | bin | 0 -> 3812 bytes | |||
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx | 18 |
2 files changed, 9 insertions, 9 deletions
diff --git a/821e0890-525b-47f1-be69-45c2ac095c04-icon1701917679809_m b/821e0890-525b-47f1-be69-45c2ac095c04-icon1701917679809_m Binary files differnew file mode 100644 index 000000000..e92b1dda4 --- /dev/null +++ b/821e0890-525b-47f1-be69-45c2ac095c04-icon1701917679809_m diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx index 09df4bfab..d38cabc7e 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx @@ -29,11 +29,11 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm if (docs.length === 1) { this.firstDoc = docs[0]; this.firstDocPos = { x: NumCast(this.firstDoc.x), y: NumCast(this.firstDoc.y) }; - this.message = 'Doc 1'; + this.message = 'Hello world! You can drag and drop to move your document around.'; } else if (docs.length === 2) { - this.message = 'Doc 2'; + this.message = 'Great job. To create a new link between them, click the link icon on both documents.'; } else { - this.message = 'Click anywhere and begin typing to create your first text document!'; + // this.message = 'Click anywhere and begin typing to create your first text document!'; } }, { fireImmediately: true } @@ -42,10 +42,10 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm () => ({ x: NumCast(this.firstDoc?.x), y: NumCast(this.firstDoc?.y), links: this.firstDoc && LinkManager.Instance.getAllDirectLinks(this.firstDoc) }), ({ x, y, links }) => { if ((x && x != this.firstDocPos.x) || (y && y != this.firstDocPos.y)) { - this.message = 'You moved the doc.'; + this.message = 'Great moves. Try creating a second document.'; } if (links && links.length > 0) { - this.message = 'You made your first link! You can also click the link icon to start and complete the link.'; + this.message = 'You made your first link! You can view your links by selecting the blue dot.'; } }, { fireImmediately: true } @@ -57,7 +57,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm this.message = "You're in pen mode! Click and drag to draw your first masterpiece."; } if (viewingLinks) { - this.message = 'Viewing links'; + this.message = 'To edit your links, click the pencil icon.'; } if (Doc.ActiveTool === InkTool.Pen) { this.message = 'Editing links'; @@ -78,9 +78,9 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm this._disposers.reaction5 = reaction( () => ({ pin: Doc.ActivePresentation?.data, trails: DocumentManager.Instance.DocumentViews.find(view => view.Document === Doc.MyTrails) }), ({ pin, trails }) => { - if (pin) { - this.message = 'You pinned your doc to a trail.'; - } + // if (pin) { + // this.message = 'You pinned your doc to a trail.'; + // } if (trails) { this.message = 'This is your trails tab.'; } |