aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesButtons.tsx
blob: 656a56a15d35dd8ed3a92b64d24765a624ecf850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Tooltip } from '@material-ui/core';
import { action, computed, observable } from 'mobx';
import { observer } from 'mobx-react';
import { Doc, DocListCast, Opt } from '../../fields/Doc';
import { Id } from '../../fields/FieldSymbols';
import { InkField } from '../../fields/InkField';
import { RichTextField } from '../../fields/RichTextField';
import { BoolCast, StrCast } from '../../fields/Types';
import { ImageField } from '../../fields/URLField';
import { DocUtils } from '../documents/Documents';
import { CollectionViewType, DocumentType } from '../documents/DocumentTypes';
import { SelectionManager } from '../util/SelectionManager';
import { undoBatch } from '../util/UndoManager';
import { Colors } from './global/globalEnums';
import { InkingStroke } from './InkingStroke';
import { DocumentView } from './nodes/DocumentView';
import { VideoBox } from './nodes/VideoBox';
import { pasteImageBitmap } from './nodes/WebBoxRenderer';
import './PropertiesButtons.scss';
import React = require('react');
const higflyout = require('@hig/flyout');
export const { anchorPoints } = higflyout;
export const Flyout = higflyout.default;

enum UtilityButtonState {
    Default,
    OpenRight,
    OpenExternally,
}
@observer
export class PropertiesButtons extends React.Component<{}, {}> {
    @observable public static Instance: PropertiesButtons;

    @computed get selectedDoc() {
        return SelectionManager.SelectedSchemaDoc() || SelectionManager.Views().lastElement()?.rootDoc;
    }
    @computed get selectedTabView() {
        return !SelectionManager.SelectedSchemaDoc() && SelectionManager.Views().lastElement()?.topMost;
    }

    propertyToggleBtn = (label: string, property: string, tooltip: (on?: any) => string, icon: (on: boolean) => string, onClick?: (dv: Opt<DocumentView>, doc: Doc, property: string) => void, useUserDoc?: boolean) => {
        const targetDoc = useUserDoc ? Doc.UserDoc() : this.selectedDoc;
        const onPropToggle = (dv: Opt<DocumentView>, doc: Doc, prop: string) => ((dv?.layoutDoc || doc)[prop] = (dv?.layoutDoc || doc)[prop] ? false : true);
        return !targetDoc ? null : (
            <Tooltip title={<div className={`dash-tooltip`}>{tooltip(targetDoc?.[property])} </div>} placement="top">
                <div>
                    <div
                        className={`propertiesButtons-linkButton-empty toggle-${StrCast(targetDoc[property]).includes(':hover') ? 'hover' : targetDoc[property] ? 'on' : 'off'}`}
                        onPointerDown={e => e.stopPropagation()}
                        onClick={undoBatch(() => {
                            if (SelectionManager.Views().length > 1) {
                                SelectionManager.Views().forEach(dv => (onClick ?? onPropToggle)(dv, dv.rootDoc, property));
                            } else if (targetDoc) (onClick ?? onPropToggle)(undefined, targetDoc, property);
                        })}>
                        <FontAwesomeIcon className="documentdecorations-icon" size="lg" icon={icon(BoolCast(targetDoc?.[property])) as any} />
                    </div>
                    <div className="propertiesButtons-title">{label}</div>
                </div>
            </Tooltip>
        );
    };
    @computed get lockButton() {
        return this.propertyToggleBtn(
            'No\xA0Drag',
            '_lockedPosition',
            on => `${on ? 'Unlock' : 'Lock'} position to prevent dragging`,
            on => 'thumbtack'
        );
    }
    @computed get maskButton() {
        return this.propertyToggleBtn(
            'Mask',
            'isInkMask',
            on => (on ? 'Make plain ink' : 'Make highlight mask'),
            on => 'paint-brush',
            (dv, doc) => InkingStroke.toggleMask(dv?.layoutDoc || doc)
        );
    }
    @computed get clustersButton() {
        return this.propertyToggleBtn(
            'Clusters',
            '_useClusters',
            on => `${on ? 'Hide' : 'Show'} clusters`,
            on => 'braille'
        );
    }
    @computed get panButton() {
        return this.propertyToggleBtn(
            'Lock\xA0View',
            '_lockedTransform',
            on => `${on ? 'Unlock' : 'Lock'} panning of view`,
            on => 'lock'
        );
    }
    @computed get forceActiveButton() {
        return this.propertyToggleBtn(
            'Active',
            '_forceActive',
            on => `${on ? 'Select to activate' : 'Contents always active'} `,
            on => 'eye'
        );
    }
    @computed get fitContentButton() {
        return this.propertyToggleBtn(
            'View All',
            '_fitContentsToBox',
            on => `${on ? "Don't" : 'Do'} fit content to container visible area`,
            on => 'eye'
        );
    }
    // this implments a container pattern by marking the targetDoc (collection) as an inPlace container,
    // and then making the contained collection be a "menu" such that when any of its contents are clicked,
    // they will open their targets in the outer container.  To get back to the "menu", you click on the main container.
    @computed get inPlaceContainerButton() {
        return this.propertyToggleBtn(
            'In Place',
            'isInPlaceContainer',
            on => `${on ? 'Make' : 'Remove'} in place container flag`,
            on => 'window',
            onClick => {
                SelectionManager.Views().forEach(dv => {
                    const containerDoc = dv.rootDoc;
                    containerDoc.followAllLinks =
                        containerDoc.noShadow =
                        containerDoc.noHighlighting =
                        containerDoc._isLinkButton =
                        containerDoc._fitContentsToBox =
                        containerDoc._forceActive =
                        containerDoc._isInPlaceContainer =
                            !containerDoc._isInPlaceContainer;
                    containerDoc.followLinkLocation = containerDoc._isInPlaceContainer ? 'inPlace' : undefined;
                    containerDoc._xPadding = containerDoc._yPadding = containerDoc._isInPlaceContainer ? 10 : undefined;
                    const menuDoc = DocListCast(dv.dataDoc[dv.props.fieldKey ?? Doc.LayoutFieldKey(containerDoc)]).lastElement();
                    if (menuDoc) {
                        menuDoc.hideDecorations = menuDoc._forceActive = menuDoc._fitContentsToBox = menuDoc._isLinkButton = menuDoc._noShadow = menuDoc.noHighlighting = containerDoc._isInPlaceContainer;
                        if (!dv.allLinks.find(link => link.anchor1 === menuDoc || link.anchor2 === menuDoc)) {
                            DocUtils.MakeLink({ doc: dv.rootDoc }, { doc: menuDoc }, 'back link to container');
                        }
                        DocListCast(menuDoc[Doc.LayoutFieldKey(menuDoc)]).forEach(menuItem => {
                            menuItem.followLinkAudio = menuItem.followAllLinks = menuItem._isLinkButton = true;
                            menuItem._followLinkLocation = 'inPlace';
                        });
                    }
                });
            }
        );
    }
    @computed get fitWidthButton() {
        return this.propertyToggleBtn(
            'Fit\xA0Width',
            '_fitWidth',
            on => `${on ? "Don't" : 'Do'} fit content to width of container`,
            on => 'arrows-alt-h'
        );
    }
    @computed get captionButton() {
        return this.propertyToggleBtn(
            'Caption',
            '_showCaption',
            on => `${on ? 'Hide' : 'Show'} caption footer`,
            on => 'closed-captioning',
            (dv, doc) => ((dv?.rootDoc || doc)._showCaption = (dv?.rootDoc || doc)._showCaption === undefined ? 'caption' : undefined)
        );
    }
    @computed get chromeButton() {
        return this.propertyToggleBtn(
            'Controls',
            '_chromeHidden',
            on => `${on ? 'Show' : 'Hide'} editing UI`,
            on => 'edit',
            (dv, doc) => ((dv?.rootDoc || doc)._chromeHidden = !(dv?.rootDoc || doc)._chromeHidden)
        );
    }
    @computed get titleButton() {
        return this.propertyToggleBtn(
            'Title',
            '_showTitle',
            on => 'Switch between title styles',
            on => 'text-width',
            (dv, doc) => ((dv?.rootDoc || doc)._showTitle = !(dv?.rootDoc || doc)._showTitle ? 'title' : (dv?.rootDoc || doc)._showTitle === 'title' ? 'title:hover' : undefined)
        );
    }
    @computed get autoHeightButton() {
        return this.propertyToggleBtn(
            'Auto\xA0Size',
            '_autoHeight',
            on => `Automatical vertical sizing to show all content`,
            on => 'arrows-alt-v'
        );
    }
    @computed get gridButton() {
        return this.propertyToggleBtn(
            'Grid',
            '_backgroundGridShow',
            on => `Display background grid in collection`,
            on => 'border-all'
        );
    }
    @computed get groupButton() {
        return this.propertyToggleBtn(
            'Group',
            'isGroup',
            on => `Display collection as a Group`,
            on => 'object-group',
            (dv, doc) => {
                doc.isGroup = !doc.isGroup;
                doc.forceActive = doc.isGroup;
            }
        );
    }
    @computed get freezeThumb() {
        return this.propertyToggleBtn(
            'FreezeThumb',
            '_thumb-frozen',
            on => `${on ? 'Freeze' : 'Unfreeze'} thumbnail`,
            on => 'arrows-alt-h',
            (dv, doc) => {
                if (doc['thumb-frozen']) doc['thumb-frozen'] = undefined;
                else {
                    document.body.focus(); // so that we can access the clipboard without an error
                    setTimeout(() =>
                        pasteImageBitmap((data_url: any, error: any) => {
                            error && console.log(error);
                            data_url && VideoBox.convertDataUri(data_url, doc[Id] + '-thumb-frozen', true).then(returnedfilename => (doc['thumb-frozen'] = new ImageField(returnedfilename)));
                        })
                    );
                }
            }
        );
    }
    @computed get snapButton() {
        return this.propertyToggleBtn(
            'Snap\xA0Lines',
            'showSnapLines',
            on => `Display snapping lines when objects are dragged`,
            on => 'border-all',
            undefined,
            true
        );
    }

    @computed
    get onClickButton() {
        return !this.selectedDoc ? null : (
            <Tooltip title={<div className="dash-tooltip">Choose onClick behavior</div>} placement="top">
                <div>
                    <div className="propertiesButtons-linkFlyout">
                        <Flyout anchorPoint={anchorPoints.LEFT_TOP} content={this.onClickFlyout}>
                            <div className={'propertiesButtons-linkButton-empty'} onPointerDown={e => e.stopPropagation()}>
                                <FontAwesomeIcon className="documentdecorations-icon" icon="mouse-pointer" size="lg" />
                            </div>
                        </Flyout>
                    </div>
                    <div className="propertiesButtons-title"> onclick </div>
                </div>
            </Tooltip>
        );
    }
    @computed
    get perspectiveButton() {
        return !this.selectedDoc ? null : (
            <Tooltip title={<div className="dash-tooltip">Choose view perspective</div>} placement="top">
                <div>
                    <div className="propertiesButtons-linkFlyout">
                        <Flyout anchorPoint={anchorPoints.LEFT_TOP} content={this.onPerspectiveFlyout}>
                            <div className={'propertiesButtons-linkButton-empty'} onPointerDown={e => e.stopPropagation()}>
                                <FontAwesomeIcon className="documentdecorations-icon" icon="mouse-pointer" size="lg" />
                            </div>
                        </Flyout>
                    </div>
                    <div className="propertiesButtons-title"> Perspective </div>
                </div>
            </Tooltip>
        );
    }

    @undoBatch
    handlePerspectiveChange = (e: any) => {
        this.selectedDoc && (this.selectedDoc._viewType = e.target.value);
        SelectionManager.Views()
            .filter(dv => dv.docView)
            .map(dv => dv.docView!)
            .forEach(docView => (docView.layoutDoc._viewType = e.target.value));
    };

    @undoBatch
    @action
    handleOptionChange = (onClick: string) => {
        this.selectedDoc && (this.selectedDoc.onClickBehavior = onClick);
        SelectionManager.Views()
            .filter(dv => dv.docView)
            .map(dv => dv.docView!)
            .forEach(docView => {
                docView.noOnClick();
                switch (onClick) {
                    case 'enterPortal':
                        docView.makeIntoPortal();
                        break;
                    case 'toggleDetail':
                        docView.setToggleDetail();
                        break;
                    case 'linkInPlace':
                        docView.toggleFollowLink('inPlace', false, false);
                        break;
                    case 'linkOnRight':
                        docView.toggleFollowLink('add:right', false, false);
                        break;
                }
            });
    };

    @undoBatch
    editOnClickScript = () => {
        if (SelectionManager.Views().length) SelectionManager.Views().forEach(dv => DocUtils.makeCustomViewClicked(dv.rootDoc, undefined, 'onClick'));
        else this.selectedDoc && DocUtils.makeCustomViewClicked(this.selectedDoc, undefined, 'onClick');
    };

    @computed
    get onClickFlyout() {
        const buttonList = [
            ['nothing', 'Select Document'],
            ['enterPortal', 'Enter Portal'],
            ['toggleDetail', 'Toggle Detail'],
            ['linkInPlace', 'Open in Place'],
            ['linkOnRight', 'Open Link on Right'],
        ];
        const currentSelection = this.selectedDoc.onClickBehavior;
        // Get items to place into the list

        const list = buttonList.map(value => {
            const click = () => {
                this.handleOptionChange(value[0]);
            };
            return (
                <div
                    className="list-item"
                    key={`${value}`}
                    style={{
                        backgroundColor: value[0] === currentSelection ? Colors.LIGHT_BLUE : undefined,
                    }}
                    onClick={click}>
                    {value[1]}
                </div>
            );
        });
        return (
            <div>
                <div>
                    <div className="propertiesButton-dropdownList">{list}</div>
                </div>
                {Doc.noviceMode ? null : (
                    <div onPointerDown={this.editOnClickScript} className="onClickFlyout-editScript">
                        {' '}
                        Edit onClick Script
                    </div>
                )}
            </div>
        );
    }
    @computed
    get onPerspectiveFlyout() {
        const excludedViewTypes = [CollectionViewType.Invalid, CollectionViewType.Docking, CollectionViewType.Pile, CollectionViewType.StackedTimeline, CollectionViewType.Linear];

        const makeLabel = (value: string, label: string) => (
            <div className="radio" key={label}>
                <label>
                    <input type="radio" value={value} checked={(this.selectedDoc?._viewType ?? 'invalid') === value} onChange={this.handlePerspectiveChange} />
                    {label}
                </label>
            </div>
        );
        return (
            <form>
                {Object.values(CollectionViewType)
                    .filter(type => !excludedViewTypes.includes(type))
                    .map(type => makeLabel(type, type))}
            </form>
        );
    }

    render() {
        const layoutField = this.selectedDoc?.[Doc.LayoutFieldKey(this.selectedDoc)];
        const isText = layoutField instanceof RichTextField;
        const isInk = layoutField instanceof InkField;
        const isMap = this.selectedDoc?.type === DocumentType.MAP;
        const isCollection = this.selectedDoc?.type === DocumentType.COL;
        //TODO: will likely need to create separate note-taking view type here
        const isStacking = this.selectedDoc?._viewType === CollectionViewType.Stacking || this.selectedDoc?._viewType === CollectionViewType.NoteTaking;
        const isFreeForm = this.selectedDoc?._viewType === CollectionViewType.Freeform;
        const isTree = this.selectedDoc?._viewType === CollectionViewType.Tree;
        const isTabView = this.selectedTabView;
        const toggle = (ele: JSX.Element | null, style?: React.CSSProperties) => (
            <div className="propertiesButtons-button" style={style}>
                {' '}
                {ele}{' '}
            </div>
        );
        const isNovice = Doc.noviceMode;
        return !this.selectedDoc ? null : (
            <div className="propertiesButtons">
                {toggle(this.titleButton)}
                {toggle(this.captionButton)}
                {toggle(this.lockButton)}
                {toggle(this.onClickButton)}
                {toggle(this.fitWidthButton)}
                {toggle(this.freezeThumb)}
                {toggle(this.forceActiveButton, { display: !isFreeForm && !isMap ? 'none' : '' })}
                {toggle(this.fitContentButton, { display: !isFreeForm && !isMap ? 'none' : '' })}
                {toggle(this.inPlaceContainerButton, { display: !isFreeForm && !isMap ? 'none' : '' })}
                {toggle(this.autoHeightButton, { display: !isText && !isStacking && !isTree ? 'none' : '' })}
                {toggle(this.maskButton, { display: !isInk ? 'none' : '' })}
                {toggle(this.chromeButton, { display: !isCollection || isNovice ? 'none' : '' })}
                {toggle(this.gridButton, { display: !isCollection ? 'none' : '' })}
                {toggle(this.groupButton, { display: isTabView || !isCollection ? 'none' : '' })}
                {toggle(this.snapButton, { display: !isCollection ? 'none' : '' })}
                {toggle(this.clustersButton, { display: !isFreeForm ? 'none' : '' })}
                {toggle(this.panButton, { display: !isFreeForm ? 'none' : '' })}
                {toggle(this.perspectiveButton, { display: !isCollection || isNovice ? 'none' : '' })}
            </div>
        );
    }
}