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
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { IReactionDisposer, ObservableMap, action, makeObservable, observable, reaction, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { returnFalse, setupMoveUpEvents } from '../../../../ClientUtils';
import { Doc } from '../../../../fields/Doc';
import { DocCast, ImageCast } from '../../../../fields/Types';
import { ImageField } from '../../../../fields/URLField';
import { emptyFunction } from '../../../../Utils';
import { SnappingManager } from '../../../util/SnappingManager';
import { undoable } from '../../../util/UndoManager';
import { ObservableReactComponent } from '../../ObservableReactComponent';
import { DocumentView } from '../DocumentView';
import { DataVizBox } from './DataVizBox';
import './DocCreatorMenu.scss';
import { Id } from '../../../../fields/FieldSymbols';
import { Colors } from 'browndash-components';
@observer
export class DocCreatorMenu extends ObservableReactComponent<{}> {
static Instance: DocCreatorMenu;
private _ref: HTMLDivElement | null = null;
@observable _templateDocs: Doc[] = [];
@observable _templateRefToDoc?: ObservableMap<HTMLDivElement, Doc>;
@observable _selectedTemplateID?: Doc;
@observable _pageX: number = 0;
@observable _pageY: number = 0;
@observable _display: boolean = false;
@observable _mouseX: number = -1;
@observable _mouseY: number = -1;
@observable _startPos?: {x: number, y: number};
@observable _shouldDisplay: boolean = false;
@observable _menuContent: 'templates' | 'options' = 'templates';
@observable _dragging: boolean = false;
@observable _dataViz?: DataVizBox;
constructor(props: any) {
super(props);
makeObservable(this);
DocCreatorMenu.Instance = this;
}
@action setDataViz = (dataViz: DataVizBox) => { this._dataViz = dataViz };
@action setTemplateDocs = (docs: Doc[]) => {
this._templateDocs = docs.map(doc => doc.annotationOn ? DocCast(doc.annotationOn):doc);
};
@action
onPointerDown = (e: PointerEvent) => {
this._mouseX = e.clientX;
this._mouseY = e.clientY;
};
@action
onPointerUp = (e: PointerEvent) => {
if (e.button !== 2 && !e.ctrlKey) return;
const curX = e.clientX;
const curY = e.clientY;
if (Math.abs(this._mouseX - curX) > 1 || Math.abs(this._mouseY - curY) > 1) {
this._shouldDisplay = false;
}
};
_disposer: IReactionDisposer | undefined;
componentDidMount() {
document.addEventListener('pointerdown', this.onPointerDown, true);
document.addEventListener('pointerup', this.onPointerUp);
this._disposer = reaction(() => this._templateDocs.slice(), (docs) => docs.map(this.getIcon));
}
componentWillUnmount() {
this._disposer?.();
document.removeEventListener('pointerdown', this.onPointerDown, true);
document.removeEventListener('pointerup', this.onPointerUp);
}
@action
toggleDisplay = (x: number, y: number) => {
if (this._shouldDisplay) {
this._shouldDisplay = false;
} else {
this._pageX = x;
console.log(y);
this._pageY = y;
this._shouldDisplay = true;
}
};
@action
closeMenu = () => {
const wasOpen = this._display;
this._display = false;
this._shouldDisplay = false;
return wasOpen;
};
@action
onPointerMove = (e: any) => {
if (this._dragging){
this._pageX = e.pageX - (this._startPos?.x ?? 0);
this._pageY = e.pageY - (this._startPos?.y ?? 0);
}
}
async getIcon(doc: Doc) {
const docView = DocumentView.getDocumentView(doc);
if (docView) {
docView.ComponentView?.updateIcon?.();
return new Promise<ImageField | undefined>(res => setTimeout(() => res(ImageCast(docView.Document.icon)), 500));
}
return undefined;
}
get templatesPreviewContents(){
const renderedTemplates: Doc[] = [];
return (
<div className='docCreatorMenu-preview-container'>
{this._templateDocs.map(doc => ({icon: ImageCast(doc.icon), doc})).filter(info => info.icon && info.doc).map(info => {
if (renderedTemplates.includes(info.doc)) return undefined;
renderedTemplates.push(info.doc);
return (<div
className='docCreatorMenu-preview-window'
style={{
background: this._selectedTemplateID === info.doc ? Colors.MEDIUM_BLUE : '',
boxShadow: this._selectedTemplateID === info.doc ? `0 0 15px rgba(68, 118, 247, .8)` : ''
}}
onPointerDown={e =>
setupMoveUpEvents(
this,
e,
returnFalse,
emptyFunction,
undoable(clickEv => {
clickEv.stopPropagation();
this._selectedTemplateID = info.doc;
this.forceUpdate();
}, 'open actions menu')
)
}>
<img className='docCreatorMenu-preview-image' src={info.icon!.url.href.replace(".png", "_o.png")} />
</div>
)})}
</div>
);
}
get optionsMenuContents(){
return (
<div className='docCreatorMenu-options-container'>
<div className="docCreatorMenu-dropdown-button">Choose Layout</div>
<div className="docCreatorMenu-dropdown-content">
<div className="docCreatorMenu-dropdown-option">Link 1</div>
<div className="docCreatorMenu-dropdown-option">Link 1</div>
<div className="docCreatorMenu-dropdown-option">Link 1</div>
</div>
</div>
);
}
render() {
return (
<div
className="docCreatorMenu-cont"
ref={r => this._ref = r}
style={{
display: '',
left: this._pageX,
top: this._pageY,
width: this._shouldDisplay ? 300 : 0,
height: this._shouldDisplay ? 400 : 0,
background: SnappingManager.userBackgroundColor,
color: SnappingManager.userColor,
}}>
{!this._shouldDisplay ? undefined :
<>
<div
className='docCreatorMenu-menu'
onPointerDown={e =>
setupMoveUpEvents(
this,
e,
(e) => {
this._dragging = true;
this._startPos = {x: 0, y: 0};
this._startPos.x = e.pageX - (this._ref?.getBoundingClientRect().left ?? 0);
this._startPos.y = e.pageY - (this._ref?.getBoundingClientRect().top ?? 0);
return true;
},
emptyFunction,
undoable(clickEv => {
clickEv.stopPropagation();
}, 'drag menu')
)
}
onPointerMove={e => this.onPointerMove(e)}
onPointerUp={() => this._dragging = false}
>
<button
className='docCreatorMenu-menu-button'
onPointerDown={e =>
setupMoveUpEvents(
this,
e,
returnFalse,
emptyFunction,
undoable(clickEv => {
clickEv.stopPropagation();
runInAction(() => this._menuContent = this._menuContent === 'templates' ? 'options' : 'templates');
}, 'create docs')
)
}
>
<FontAwesomeIcon icon={this._menuContent === 'templates' ? 'table-cells' : 'window-maximize'}/>
</button>
<button className='docCreatorMenu-menu-button right'>
<FontAwesomeIcon icon={'plus'}/>
</button>
<button
className='docCreatorMenu-menu-button close-menu'
onPointerDown={e =>
setupMoveUpEvents(
this,
e,
returnFalse,
emptyFunction,
undoable(clickEv => {
clickEv.stopPropagation();
this.closeMenu();
}, 'close menu')
)
}
>
<FontAwesomeIcon icon={'minus'}/>
</button>
</div>
<hr className='docCreatorMenu-menu-hr'/>
{this._menuContent === 'templates' ? this.templatesPreviewContents : this.optionsMenuContents}
</>
}
</div>
)
}
}
|