aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionLinear/CollectionLinearView.tsx
blob: a2330c6b24c69ebcf857a4ceb5437d902ed10312 (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
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { StylesProvider, Tooltip } from '@material-ui/core';
import { action, IReactionDisposer, observable, reaction, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { Doc, HeightSym, Opt, WidthSym } from '../../../../fields/Doc';
import { Id } from '../../../../fields/FieldSymbols';
import { BoolCast, Cast, NumCast, ScriptCast, StrCast } from '../../../../fields/Types';
import { emptyFunction, returnEmptyDoclist, returnTrue, StopEvent, Utils } from '../../../../Utils';
import { CollectionViewType } from '../../../documents/DocumentTypes';
import { DocumentManager } from '../../../util/DocumentManager';
import { DragManager, dropActionType } from '../../../util/DragManager';
import { Transform } from '../../../util/Transform';
import { Colors, Shadows } from '../../global/globalEnums';
import { DocumentLinksButton } from '../../nodes/DocumentLinksButton';
import { DocumentView } from '../../nodes/DocumentView';
import { LinkDescriptionPopup } from '../../nodes/LinkDescriptionPopup';
import { StyleProp } from '../../StyleProvider';
import { CollectionStackedTimeline } from '../CollectionStackedTimeline';
import { CollectionSubView } from '../CollectionSubView';
import './CollectionLinearView.scss';

/**
 * CollectionLinearView is the class for rendering the horizontal collection
 * of documents, it useful for horizontal menus. It can either be expandable
 * or not using the linearViewExpandable field.
 * It is used in the following locations:
 * - It is used in the popup menu on the bottom left (see docButtons() in MainView.tsx)
 * - It is used for the context sensitive toolbar at the top (see contMenuButtons() in CollectionMenu.tsx)
 */
@observer
export class CollectionLinearView extends CollectionSubView() {
    @observable public addMenuToggle = React.createRef<HTMLInputElement>();
    @observable private _selectedIndex = -1;
    private _dropDisposer?: DragManager.DragDropDisposer;
    private _widthDisposer?: IReactionDisposer;
    private _selectedDisposer?: IReactionDisposer;

    componentWillUnmount() {
        this._dropDisposer?.();
        this._widthDisposer?.();
        this._selectedDisposer?.();
        this.childLayoutPairs.map((pair, ind) => ScriptCast(pair.layout.proto?.onPointerUp)?.script.run({ this: pair.layout.proto }, console.log));
    }

    componentDidMount() {
        this._widthDisposer = reaction(
            () => 5 + (this.layoutDoc.linearViewIsExpanded ? this.childDocs.length * this.rootDoc[HeightSym]() : 10),
            width => this.childDocs.length && (this.layoutDoc._width = width),
            { fireImmediately: true }
        );

        this._selectedDisposer = reaction(
            () => NumCast(this.layoutDoc.selectedIndex),
            i =>
                runInAction(() => {
                    this._selectedIndex = i;
                    let selected: any = undefined;
                    this.childLayoutPairs.map(async (pair, ind) => {
                        const isSelected = this._selectedIndex === ind;
                        if (isSelected) {
                            selected = pair;
                        } else {
                            ScriptCast(pair.layout.proto?.onPointerUp)?.script.run({ this: pair.layout.proto }, console.log);
                        }
                    });
                    if (selected && selected.layout) {
                        ScriptCast(selected.layout.proto?.onPointerDown)?.script.run({ this: selected.layout.proto }, console.log);
                    }
                }),
            { fireImmediately: true }
        );
    }
    protected createDashEventsTarget = (ele: HTMLDivElement | null) => {
        //used for stacking and masonry view
        this._dropDisposer && this._dropDisposer();
        if (ele) {
            this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this), this.layoutDoc);
        }
    };

    dimension = () => NumCast(this.rootDoc._height); // 2 * the padding
    getTransform = (ele: Opt<HTMLDivElement>) => {
        if (!ele) return Transform.Identity();
        const { scale, translateX, translateY } = Utils.GetScreenTransform(ele);
        return new Transform(-translateX, -translateY, 1);
    };

    @action
    exitLongLinks = () => {
        if (DocumentLinksButton.StartLink) {
            if (DocumentLinksButton.StartLink.Document) {
                action((e: React.PointerEvent<HTMLDivElement>) => {
                    Doc.UnBrushDoc(DocumentLinksButton.StartLink?.Document as Doc);
                });
            }
        }
        DocumentLinksButton.StartLink = undefined;
        DocumentLinksButton.StartLinkView = undefined;
    };

    @action
    changeDescriptionSetting = () => {
        if (LinkDescriptionPopup.showDescriptions) {
            if (LinkDescriptionPopup.showDescriptions === 'ON') {
                LinkDescriptionPopup.showDescriptions = 'OFF';
                LinkDescriptionPopup.descriptionPopup = false;
            } else {
                LinkDescriptionPopup.showDescriptions = 'ON';
            }
        } else {
            LinkDescriptionPopup.showDescriptions = 'OFF';
            LinkDescriptionPopup.descriptionPopup = false;
        }
    };

    myContextMenu = (e: React.MouseEvent) => {
        e.stopPropagation();
        e.preventDefault();
    };

    getLinkUI = () => {
        return !DocumentLinksButton.StartLink ? null : (
            <span className="bottomPopup-background" style={{ pointerEvents: 'all' }} onPointerDown={e => e.stopPropagation()}>
                <span className="bottomPopup-text">
                    Creating link from:{' '}
                    <b>
                        {(DocumentLinksButton.AnnotationId ? 'Annotation in ' : ' ') +
                            (StrCast(DocumentLinksButton.StartLink.title).length < 51 ? DocumentLinksButton.StartLink.title : StrCast(DocumentLinksButton.StartLink.title).slice(0, 50) + '...')}
                    </b>
                </span>

                <Tooltip title={<div className="dash-tooltip">{'Toggle description pop-up'} </div>} placement="top">
                    <span className="bottomPopup-descriptions" onClick={this.changeDescriptionSetting}>
                        Labels: {LinkDescriptionPopup.showDescriptions ? LinkDescriptionPopup.showDescriptions : 'ON'}
                    </span>
                </Tooltip>

                <Tooltip title={<div className="dash-tooltip">Exit linking mode</div>} placement="top">
                    <span className="bottomPopup-exit" onClick={this.exitLongLinks}>
                        Stop
                    </span>
                </Tooltip>
            </span>
        );
    };
    getCurrentlyPlayingUI = () => {
        return !CollectionStackedTimeline.CurrentlyPlaying?.length ? null : (
            <span className="bottomPopup-background">
                <span className="bottomPopup-text">
                    Currently playing:
                    {CollectionStackedTimeline.CurrentlyPlaying.map((clip, i) => (
                        <span className="audio-title" onPointerDown={() => DocumentManager.Instance.jumpToDocument(clip, { willPanZoom: true }, undefined, [])}>
                            {clip.title + (i === CollectionStackedTimeline.CurrentlyPlaying.length - 1 ? '' : ',')}
                        </span>
                    ))}
                </span>
            </span>
        );
    };
    getDisplayDoc = (doc: Doc, preview: boolean = false) => {
        if (doc.icon === 'linkui') return this.getLinkUI();
        if (doc.icon === 'currentlyplayingui') return this.getCurrentlyPlayingUI();

        const nested = doc._viewType === CollectionViewType.Linear;
        const hidden = doc.hidden === true;

        let dref: Opt<HTMLDivElement>;
        const docXf = () => this.getTransform(dref);
        // const scalable = pair.layout.onClick || pair.layout.onDragStart;
        return hidden ? null : (
            <div
                className={preview ? 'preview' : `collectionLinearView-docBtn`}
                key={doc[Id]}
                ref={r => (dref = r || undefined)}
                style={{
                    pointerEvents: 'all',
                    width: nested ? undefined : NumCast(doc._width),
                    height: nested ? undefined : NumCast(doc._height),
                    marginLeft: !nested ? 2.5 : 0,
                    marginRight: !nested ? 2.5 : 0,
                    // width: NumCast(pair.layout._width),
                    // height: NumCast(pair.layout._height),
                }}>
                <DocumentView
                    Document={doc}
                    isContentActive={this.props.isContentActive}
                    isDocumentActive={returnTrue}
                    addDocument={this.props.addDocument}
                    moveDocument={this.props.moveDocument}
                    addDocTab={this.props.addDocTab}
                    pinToPres={emptyFunction}
                    dropAction={StrCast(this.layoutDoc.childDropAction) as dropActionType}
                    rootSelected={this.props.isSelected}
                    removeDocument={this.props.removeDocument}
                    ScreenToLocalTransform={docXf}
                    PanelWidth={nested ? doc[WidthSym] : this.dimension}
                    PanelHeight={nested || doc._height ? doc[HeightSym] : this.dimension}
                    renderDepth={this.props.renderDepth + 1}
                    dontRegisterView={BoolCast(this.rootDoc.childDontRegisterViews)}
                    focus={emptyFunction}
                    styleProvider={this.props.styleProvider}
                    docViewPath={returnEmptyDoclist}
                    whenChildContentsActiveChanged={emptyFunction}
                    bringToFront={emptyFunction}
                    docFilters={this.props.docFilters}
                    docRangeFilters={this.props.docRangeFilters}
                    searchFilterDocs={this.props.searchFilterDocs}
                    ContainingCollectionView={undefined}
                    ContainingCollectionDoc={undefined}
                    hideResizeHandles={true}
                />
            </div>
        );
    };

    render() {
        const flexDir = StrCast(this.Document.flexDirection); // Specify direction of linear view content
        const flexGap = NumCast(this.Document.flexGap); // Specify the gap between linear view content
        const isExpanded = BoolCast(this.layoutDoc.linearViewIsExpanded);

        const menuOpener = (
            <label
                className={`collectionlinearView-label${isExpanded ? '-expanded' : ''}`}
                htmlFor={this.Document[Id] + '-input'}
                style={{ boxShadow: this.props.styleProvider?.(this.rootDoc, this.props, StyleProp.BoxShadow) }}
                onPointerDown={StopEvent}>
                <div className="collectionLinearView-menuOpener">{Cast(this.props.Document.icon, 'string', null) ?? <FontAwesomeIcon icon={isExpanded ? 'minus' : 'plus'} />}</div>
            </label>
        );

        return (
            <div className={`collectionLinearView-outer ${this.layoutDoc.linearViewSubMenu}`} style={{ backgroundColor: this.layoutDoc.linearViewIsExpanded ? undefined : 'transparent' }}>
                <div className="collectionLinearView" ref={this.createDashEventsTarget} onContextMenu={this.myContextMenu}>
                    {!this.props.Document.linearViewExpandable ? null : (
                        <Tooltip title={<div className="dash-tooltip">{isExpanded ? 'Close' : 'Open'}</div>} placement="top">
                            {menuOpener}
                        </Tooltip>
                    )}
                    <input
                        id={this.Document[Id] + '-input'}
                        type="checkbox"
                        checked={isExpanded}
                        ref={this.addMenuToggle}
                        onChange={action(e => {
                            ScriptCast(this.Document.onClick)?.script.run({
                                this: this.layoutDoc,
                                self: this.rootDoc,
                                _readOnly_: false,
                                scriptContext: this.props.scriptContext,
                                thisContainer: this.props.ContainingCollectionDoc,
                                documentView: this.props.docViewPath().lastElement(),
                            });
                            this.layoutDoc.linearViewIsExpanded = this.addMenuToggle.current!.checked;
                        })}
                    />

                    <div
                        className="collectionLinearView-content"
                        style={{
                            height: this.dimension(),
                            flexDirection: flexDir as any,
                            gap: flexGap,
                        }}>
                        {this.childLayoutPairs.map(pair => this.getDisplayDoc(pair.layout))}
                    </div>
                </div>
            </div>
        );
    }
}