aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionGrid/CollectionGridView.tsx
blob: f25872c2bd7c0780f76b3790261c2df3ddaa6c39 (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
import { action, computed, Lambda, makeObservable, observable, reaction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { Doc, Opt } from '../../../../fields/Doc';
import { Id } from '../../../../fields/FieldSymbols';
import { BoolCast, NumCast, ScriptCast, StrCast } from '../../../../fields/Types';
import { emptyFunction, returnFalse, returnZero, setupMoveUpEvents } from '../../../../Utils';
import { Docs } from '../../../documents/Documents';
import { DragManager } from '../../../util/DragManager';
import { Transform } from '../../../util/Transform';
import { undoBatch } from '../../../util/UndoManager';
import { ContextMenu } from '../../ContextMenu';
import { ContextMenuProps } from '../../ContextMenuItem';
import { DocumentView } from '../../nodes/DocumentView';
import { FormattedTextBox } from '../../nodes/formattedText/FormattedTextBox';
import { CollectionSubView } from '../CollectionSubView';
import './CollectionGridView.scss';
import Grid, { Layout } from './Grid';
@observer
export class CollectionGridView extends CollectionSubView() {
    private _containerRef: React.RefObject<HTMLDivElement> = React.createRef();
    private _changeListenerDisposer: Opt<Lambda>; // listens for changes in this.childLayoutPairs
    private _resetListenerDisposer: Opt<Lambda>; // listens for when the reset button is clicked
    @observable private _rowHeight: Opt<number> = undefined; // temporary store of row height to make change undoable
    @observable private _scroll: number = 0; // required to make sure the decorations box container updates on scroll
    private dropLocation: object = {}; // sets the drop location for external drops

    constructor(props: any) {
        super(props);
        makeObservable(this);
    }

    onChildClickHandler = () => ScriptCast(this.Document.onChildClick);

    @computed get numCols() {
        return NumCast(this.Document.gridNumCols, 10);
    }
    @computed get rowHeight() {
        return this._rowHeight === undefined ? NumCast(this.Document.gridRowHeight, 100) : this._rowHeight;
    }
    // sets the default width and height of the grid nodes
    @computed get defaultW() {
        return NumCast(this.Document.gridDefaultW, 2);
    }
    @computed get defaultH() {
        return NumCast(this.Document.gridDefaultH, 2);
    }

    @computed get colWidthPlusGap() {
        return (this._props.PanelWidth() - this.margin) / this.numCols;
    }
    @computed get rowHeightPlusGap() {
        return this.rowHeight + this.margin;
    }

    @computed get margin() {
        return NumCast(this.Document.margin, 10);
    } // sets the margin between grid nodes

    @computed get flexGrid() {
        return BoolCast(this.Document.gridFlex, true);
    } // is grid static/flexible i.e. whether nodes be moved around and resized
    @computed get compaction() {
        return StrCast(this.Document.gridStartCompaction, StrCast(this.Document.gridCompaction, 'vertical'));
    } // is grid static/flexible i.e. whether nodes be moved around and resized

    /**
     * Sets up the listeners for the list of documents and the reset button.
     */
    componentDidMount() {
        this._changeListenerDisposer = reaction(
            () => this.childLayoutPairs,
            pairs => {
                const newLayouts: Layout[] = [];
                const oldLayouts = this.savedLayoutList;
                pairs.forEach((pair, i) => {
                    const existing = oldLayouts.find(l => l.i === pair.layout[Id]);
                    if (existing) newLayouts.push(existing);
                    else {
                        if (Object.keys(this.dropLocation).length) {
                            // external drop
                            this.addLayoutItem(newLayouts, this.makeLayoutItem(pair.layout, this.dropLocation as { x: number; y: number }, !this.flexGrid));
                            this.dropLocation = {};
                        } else {
                            // internal drop
                            this.addLayoutItem(newLayouts, this.makeLayoutItem(pair.layout, this.unflexedPosition(i), !this.flexGrid));
                        }
                    }
                });
                pairs?.length && this.setLayoutList(newLayouts);
            },
            { fireImmediately: true }
        );

        // updates the layouts if the reset button has been clicked
        this._resetListenerDisposer = reaction(
            () => this.Document.gridResetLayout,
            reset => {
                if (reset && this.flexGrid) {
                    this.setLayout(this.childLayoutPairs.map((pair, index) => this.makeLayoutItem(pair.layout, this.unflexedPosition(index))));
                }
                this.Document.gridResetLayout = false;
            }
        );
    }

    /**
     * Disposes the listeners.
     */
    componentWillUnmount() {
        this._changeListenerDisposer?.();
        this._resetListenerDisposer?.();
    }

    /**
     * @returns the default location of the grid node (i.e. when the grid is static)
     * @param index
     */
    unflexedPosition(index: number): Omit<Layout, 'i'> {
        return {
            x: (index % (Math.floor(this.numCols / this.defaultW) || 1)) * this.defaultW,
            y: Math.floor(index / (Math.floor(this.numCols / this.defaultH) || 1)) * this.defaultH,
            w: this.defaultW,
            h: this.defaultH,
            static: true,
        };
    }

    /**
     * Maps the x- and y- coordinates of the event to a grid cell.
     */
    screenToCell(sx: number, sy: number) {
        const pt = this.ScreenToLocalBoxXf().transformPoint(sx, sy);
        const x = Math.floor(pt[0] / this.colWidthPlusGap);
        const y = Math.floor((pt[1] + this._scroll) / this.rowHeight);
        return { x, y };
    }

    /**
     * Creates a layout object for a grid item
     */
    makeLayoutItem = (doc: Doc, pos: { x: number; y: number }, Static: boolean = false, w: number = this.defaultW, h: number = this.defaultH) => {
        return { i: doc[Id], w, h, x: pos.x, y: pos.y, static: Static };
    };

    /**
     * Adds a layout to the list of layouts.
     */
    addLayoutItem = (layouts: Layout[], layout: Layout) => {
        const f = layouts.findIndex(l => l.i === layout.i);
        f !== -1 && layouts.splice(f, 1);
        layouts.push(layout);
        return layouts;
    };
    /**
     * @returns the transform that will correctly place the document decorations box.
     */
    private lookupIndividualTransform = (layout: Layout) => {
        const xypos = this.flexGrid ? layout : this.unflexedPosition(this.renderedLayoutList.findIndex(l => l.i === layout.i));
        const pos = { x: xypos.x * this.colWidthPlusGap + this.margin, y: xypos.y * this.rowHeightPlusGap + this.margin - this._scroll };

        return this.ScreenToLocalBoxXf().translate(-pos.x, -pos.y);
    };

    /**
     * @returns the layout list converted from JSON
     */
    get savedLayoutList() {
        return (this.Document.gridLayoutString ? JSON.parse(StrCast(this.Document.gridLayoutString)) : []) as Layout[];
    }

    /**
     * Stores the layout list on the Document as JSON
     */
    setLayoutList(layouts: Layout[]) {
        this.Document.gridLayoutString = JSON.stringify(layouts);
    }

    isContentActive = () => this._props.isSelected() || this._props.isContentActive();
    isChildContentActive = () => (this._props.isDocumentActive?.() && (this._props.childDocumentsActive?.() || BoolCast(this.Document.childDocumentsActive)) ? true : undefined);
    /**
     *
     * @param layout
     * @param dxf the x- and y-translations of the decorations box as a transform i.e. this.lookupIndividualTransform
     * @param width
     * @param height
     * @returns the `ContentFittingDocumentView` of the node
     */
    getDisplayDoc(layout: Doc, dxf: () => Transform, width: () => number, height: () => number) {
        return (
            <DocumentView
                {...this._props}
                NativeWidth={returnZero}
                NativeHeight={returnZero}
                setContentViewBox={emptyFunction}
                Document={layout}
                TemplateDataDocument={layout.resolvedDataDoc as Doc}
                isContentActive={this.isChildContentActive}
                PanelWidth={width}
                PanelHeight={height}
                ScreenToLocalTransform={dxf}
                whenChildContentsActiveChanged={this._props.whenChildContentsActiveChanged}
                onClickScript={this.onChildClickHandler}
                renderDepth={this._props.renderDepth + 1}
                dontCenter={StrCast(this.layoutDoc.layout_dontCenter) as any} // 'y', 'x', 'xy'
            />
        );
    }

    /**
     * Saves the layouts received from the Grid to the Document.
     * @param layouts `Layout[]`
     */
    @action
    setLayout = (layoutArray: Layout[]) => {
        // for every child in the collection, check to see if there's a corresponding grid layout object and
        // updated layout object. If both exist, which they should, update the grid layout object from the updated object
        if (this.flexGrid) {
            const savedLayouts = this.savedLayoutList;
            this.childLayoutPairs.forEach(({ layout: doc }) => {
                const gridLayout = savedLayouts.find(gridLayout => gridLayout.i === doc[Id]);
                if (gridLayout) Object.assign(gridLayout, layoutArray.find(layout => layout.i === doc[Id]) || gridLayout);
            });

            if (this.Document.gridStartCompaction) {
                undoBatch(() => {
                    this.Document.gridCompaction = this.Document.gridStartCompaction;
                    this.setLayoutList(savedLayouts);
                })();
                this.Document.gridStartCompaction = undefined;
            } else {
                undoBatch(() => this.setLayoutList(savedLayouts))();
            }
        }
    };

    /**
     * @returns a list of `ContentFittingDocumentView`s inside wrapper divs.
     * The key of the wrapper div must be the same as the `i` value of the corresponding layout.
     */
    @computed
    private get contents(): JSX.Element[] {
        const collector: JSX.Element[] = [];
        if (this.renderedLayoutList.length === this.childLayoutPairs.length) {
            this.renderedLayoutList.forEach(l => {
                const child = this.childLayoutPairs.find(c => c.layout[Id] === l.i);
                const dxf = () => this.lookupIndividualTransform(l);
                const width = () => (this.flexGrid ? l.w : this.defaultW) * this.colWidthPlusGap - this.margin;
                const height = () => (this.flexGrid ? l.h : this.defaultH) * this.rowHeightPlusGap - this.margin;
                child &&
                    collector.push(
                        <div key={child.layout[Id]} className={'document-wrapper' + (this.flexGrid && this._props.isSelected() ? '' : ' static')}>
                            {this.getDisplayDoc(child.layout, dxf, width, height)}
                        </div>
                    );
            });
        }
        return collector;
    }

    /**
     * @returns a list of `Layout` objects with attributes depending on whether the grid is flexible or static
     */
    @computed get renderedLayoutList(): Layout[] {
        return this.flexGrid
            ? this.savedLayoutList.map(({ i, x, y, w, h }) => ({
                  i,
                  y,
                  h,
                  x: x + w > this.numCols ? 0 : x, // handles wrapping around of nodes when numCols decreases
                  w: Math.min(w, this.numCols), // reduces width if greater than numCols
                  static: BoolCast(this.childLayoutPairs.find(({ layout }) => layout[Id] === i)?.layout._lockedPosition, false), // checks if the lock position item has been selected in the context menu
              }))
            : this.savedLayoutList.map((layout, index) => {
                  Object.assign(layout, this.unflexedPosition(index));
                  return layout;
              });
    }

    /**
     * Handles internal drop of Dash documents.
     */
    onInternalDrop = (e: Event, de: DragManager.DropEvent) => {
        const savedLayouts = this.savedLayoutList;
        const dropped = de.complete.docDragData?.droppedDocuments;
        if (dropped && super.onInternalDrop(e, de) && savedLayouts.length !== this.childDocs.length) {
            dropped.forEach(doc => this.addLayoutItem(savedLayouts, this.makeLayoutItem(doc, this.screenToCell(de.x, de.y)))); // shouldn't place all docs in the same cell;
            this.setLayoutList(savedLayouts);
            return true;
        }
        return false;
    };

    /**
     * Handles external drop of images/PDFs etc from outside Dash.
     */
    onExternalDrop = async (e: React.DragEvent): Promise<void> => {
        this.dropLocation = this.screenToCell(e.clientX, e.clientY);
        super.onExternalDrop(e, {});
    };

    /**
     * Handles the change in the value of the rowHeight slider.
     */
    @action
    onSliderChange = (event: React.ChangeEvent<HTMLInputElement>) => {
        this._rowHeight = event.currentTarget.valueAsNumber;
    };
    /**
     * Handles the user clicking on the slider.
     */
    @action
    onSliderDown = (e: React.PointerEvent) => {
        this._rowHeight = this.rowHeight; // uses _rowHeight during dragging and sets doc's rowHeight when finished so that operation is undoable
        setupMoveUpEvents(
            this,
            e,
            returnFalse,
            action(() => {
                undoBatch(() => (this.Document.gridRowHeight = this._rowHeight))();
                this._rowHeight = undefined;
            }),
            emptyFunction,
            false,
            false
        );
        e.stopPropagation();
    };
    /**
     * Adds the display option to change the css display attribute of the `ContentFittingDocumentView`s
     */
    onContextMenu = () => {
        const displayOptionsMenu: ContextMenuProps[] = [];
        displayOptionsMenu.push({ description: 'Toggle Content Display Style', event: () => (this.Document.display = this.Document.display ? undefined : 'contents'), icon: 'copy' });
        displayOptionsMenu.push({ description: 'Toggle Vertical Centering', event: () => (this.Document.centerY = !this.Document.centerY), icon: 'copy' });
        ContextMenu.Instance.addItem({ description: 'Display', subitems: displayOptionsMenu, icon: 'tv' });
    };

    /**
     * Handles text document creation on double click.
     */
    onPointerDown = (e: React.PointerEvent) => {
        if (this._props.isContentActive()) {
            setupMoveUpEvents(
                this,
                e,
                returnFalse,
                returnFalse,
                (e: PointerEvent, doubleTap?: boolean) => {
                    if (doubleTap && !e.button) {
                        undoBatch(
                            action(() => {
                                const text = Docs.Create.TextDocument('', { _width: 150, _height: 50 });
                                FormattedTextBox.SetSelectOnLoad(text); // track the new text box so we can give it a prop that tells it to focus itself when it's displayed
                                Doc.AddDocToList(this.Document, this._props.fieldKey, text);
                                this.setLayoutList(this.addLayoutItem(this.savedLayoutList, this.makeLayoutItem(text, this.screenToCell(e.clientX, e.clientY))));
                            })
                        )();
                    }
                },
                false
            );
            if (this._props.isSelected()) e.stopPropagation();
        }
    };

    render() {
        return (
            <div
                className="collectionGridView-contents"
                ref={this.createDashEventsTarget}
                style={{ pointerEvents: !this._props.isContentActive() ? 'none' : undefined }}
                onContextMenu={this.onContextMenu}
                onPointerDown={this.onPointerDown}
                onDrop={this.onExternalDrop}>
                <div
                    className="collectionGridView-gridContainer"
                    ref={this._containerRef}
                    style={{ backgroundColor: StrCast(this.layoutDoc._backgroundColor, 'white') }}
                    onWheel={e => e.stopPropagation()}
                    onScroll={action(e => {
                        if (!this._props.isSelected()) e.currentTarget.scrollTop = this._scroll;
                        else this._scroll = e.currentTarget.scrollTop;
                    })}>
                    <Grid
                        width={this._props.PanelWidth()}
                        nodeList={this.contents.length ? this.contents : null}
                        layout={this.contents.length ? this.renderedLayoutList : undefined}
                        childrenDraggable={this._props.isSelected() ? true : false}
                        numCols={this.numCols}
                        rowHeight={this.rowHeight}
                        setLayout={this.setLayout}
                        transformScale={this.ScreenToLocalBoxXf().Scale}
                        compactType={this.compaction} // determines whether nodes should remain in position, be bound to the top, or to the left
                        preventCollision={BoolCast(this.Document.gridPreventCollision)} // determines whether nodes should move out of the way (i.e. collide) when other nodes are dragged over them
                        margin={this.margin}
                    />
                    <input
                        className="rowHeightSlider"
                        type="range"
                        style={{ width: this._props.PanelHeight() - 30 }}
                        min={1}
                        value={this.rowHeight}
                        max={this._props.PanelHeight() - 30}
                        onPointerDown={this.onSliderDown}
                        onChange={this.onSliderChange}
                    />
                </div>
            </div>
        );
    }
}