aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/topbar/TopBar.tsx
blob: 7bc7ba3ed65401e93e1a666e766165a63ca2dd2b (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
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Button, FontSize, IconButton, Size } from 'browndash-components';
import { action, computed, observable } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { FaBug, FaCamera } from 'react-icons/fa';
import { AclAdmin, Doc, DocListCast } from '../../../fields/Doc';
import { StrCast } from '../../../fields/Types';
import { GetEffectiveAcl } from '../../../fields/util';
import { DocumentManager } from '../../util/DocumentManager';
import { ReportManager } from '../../util/ReportManager';
import { SettingsManager } from '../../util/SettingsManager';
import { SharingManager } from '../../util/SharingManager';
import { UndoManager } from '../../util/UndoManager';
import { CollectionDockingView } from '../collections/CollectionDockingView';
import { ContextMenu } from '../ContextMenu';
import { DashboardView } from '../DashboardView';
import { Borders, Colors } from '../global/globalEnums';
import { MainView } from '../MainView';
import './TopBar.scss';

/**
 * ABOUT: This is the topbar in Dash, which included the current Dashboard as well as access to information on the user
 * and settings and help buttons. Future scope for this bar is to include the collaborators that are on the same Dashboard.
 */
@observer
export class TopBar extends React.Component {
    navigateToHome = () => {
        (CollectionDockingView.Instance?.CaptureThumbnail() ?? new Promise<void>(res => res())).then(() => {
            Doc.ActivePage = 'home';
            DashboardView.closeActiveDashboard(); // bcz: if we do this, we need some other way to keep track, for user convenience, of the last dashboard in use
        });
    };

    @observable textColor: string = Colors.LIGHT_GRAY;
    @observable backgroundColor: string = Colors.DARK_GRAY;

    /**
     * Returns the left hand side of the topbar.
     * This side of the topbar contains the different modes.
     * The modes include:
     * - Explore mode
     * - Tracking mode
     */
    @computed get topbarLeft() {
        return (
            <div className="topbar-left">
                {Doc.ActiveDashboard ? (
                    <IconButton onClick={this.navigateToHome} icon={<FontAwesomeIcon icon="home" />} isCircle={true} hoverStyle="gray" color={this.textColor} />
                ) : (
                    <div className="logo-container">
                        <img className="logo" src="/assets/medium-blue-light-blue-circle.png" alt="dash logo"></img>
                        <span style={{ color: Colors.LIGHT_GRAY, fontWeight: 200 }}>brown</span>
                        <span style={{ color: Colors.LIGHT_BLUE, fontWeight: 500 }}>dash</span>
                    </div>
                )}
                {Doc.ActiveDashboard && !Doc.noviceMode && (
                    <Button
                        text="Explore"
                        tooltip="Browsing mode for directly navigating to documents"
                        fontSize={FontSize.SECONDARY}
                        isActive={MainView.Instance._exploreMode}
                        size={Size.SMALL}
                        color={this.textColor}
                        borderRadius={5}
                        hoverStyle="gray"
                        iconPosition="right"
                        onClick={action(() => (MainView.Instance._exploreMode = !MainView.Instance._exploreMode))}
                    />
                )}
            </div>
        );
    }

    /**
     * Returns the center of the topbar
     * This part of the topbar contains everything related to the current dashboard including:
     * - Selection of dashboards
     * - Creating a new dashboard
     * - Taking a snapshot of a dashboard
     */
    @computed get topbarCenter() {
        const myDashboards = DocListCast(Doc.MyDashboards.data);
        const activeDashboard = Doc.ActiveDashboard;
        // const dashboardItems = myDashboards.map(board => {
        //     const boardTitle = StrCast(board.title);
        //     console.log(boardTitle);
        //     return {
        //         text: boardTitle,
        //         onClick: () => DashboardView.openDashboard(board),
        //         val: board,
        //     };
        // });
        return activeDashboard ? (
            <div className="topbar-center">
                <Button
                    text={StrCast(activeDashboard.title)}
                    tooltip="Browsing mode for directly navigating to documents"
                    fontSize={FontSize.SECONDARY}
                    size={Size.SMALL}
                    color={'white'}
                    type="outline"
                    backgroundColor={Colors.MEDIUM_BLUE}
                    borderRadius={5}
                    hoverStyle="none"
                    onClick={(e: React.MouseEvent) => {
                        const dashView = activeDashboard && DocumentManager.Instance.getDocumentView(activeDashboard);
                        ContextMenu.Instance.addItem({ description: 'Open Dashboard View', event: this.navigateToHome, icon: 'edit' });
                        ContextMenu.Instance.addItem({
                            description: 'Snapshot Dashboard',
                            event: async () => {
                                const batch = UndoManager.StartBatch('snapshot');
                                await DashboardView.snapshotDashboard();
                                batch.end();
                            },
                            icon: 'edit',
                        });
                        dashView?.showContextMenu(e.clientX + 20, e.clientY + 30);
                    }}
                />
                <Button
                    text={GetEffectiveAcl(Doc.GetProto(activeDashboard)) === AclAdmin ? 'Share' : 'View Original'}
                    onClick={() => {
                        SharingManager.Instance.open(undefined, activeDashboard);
                    }}
                    type="outline"
                    fontSize={FontSize.SECONDARY}
                    size={Size.SMALL}
                    borderRadius={5}
                    hoverStyle="gray"
                />
                {!Doc.noviceMode && (
                    <IconButton
                        fontSize={FontSize.SECONDARY}
                        isCircle={true}
                        tooltip="Work on a copy of the dashboard layout"
                        size={Size.SMALL}
                        color={this.textColor}
                        borderRadius={Borders.STANDARD}
                        hoverStyle="gray"
                        onClick={async () => {
                            const batch = UndoManager.StartBatch('snapshot');
                            await DashboardView.snapshotDashboard();
                            batch.end();
                        }}
                        icon={<FaCamera />}
                    />
                )}
            </div>
        ) : null;
    }

    /**
     * Returns the right hand side of the topbar.
     * This part of the topbar includes information about the current user,
     * and allows the user to access their account settings etc.
     */
    @computed get topbarRight() {
        return (
            <div className="topbar-right">
                <IconButton size={Size.SMALL} isCircle={true} color={Colors.LIGHT_GRAY} backgroundColor={Colors.DARK_GRAY} hoverStyle="gray" onClick={() => ReportManager.Instance.open()} icon={<FaBug />} />
                <IconButton
                    size={Size.SMALL}
                    isCircle={true}
                    color={Colors.LIGHT_GRAY}
                    backgroundColor={Colors.DARK_GRAY}
                    hoverStyle="gray"
                    onClick={() => window.open('https://brown-dash.github.io/Dash-Documentation/', '_blank')}
                    icon={<FontAwesomeIcon icon="question-circle" />}
                />
                <IconButton
                    size={Size.SMALL}
                    isCircle={true}
                    color={Colors.LIGHT_GRAY}
                    backgroundColor={Colors.DARK_GRAY}
                    hoverStyle="gray"
                    isActive={SettingsManager.Instance.isOpen}
                    onClick={() => SettingsManager.Instance.open()}
                    icon={<FontAwesomeIcon icon="cog" />}
                />
                {/* <Button text={'Logout'} borderRadius={5} hoverStyle={'gray'} backgroundColor={Colors.DARK_GRAY} color={this.textColor} fontSize={FontSize.SECONDARY} onClick={() => window.location.assign(Utils.prepend('/logout'))} /> */}
            </div>
        );
    }

    // render() {
    //     const activeDashboard = Doc.ActiveDashboard;
    //     return (
    //         //TODO:glr Add support for light / dark mode
    //         <div style={{ pointerEvents: 'all', background: Colors.DARK_GRAY, borderBottom: Borders.STANDARD }} className="topbar-container">
    //             <div className="topbar-inner-container">
    //                 <div className="topbar-left">
    //                     {activeDashboard ? (
    //                         <>
    //                             <div
    //                                 className="topbar-button-icon"
    //                                 onClick={e => {
    //                                     ContextMenu.Instance.addItem({ description: 'Logout', event: () => window.location.assign(Utils.prepend('/logout')), icon: 'edit' });
    //                                     ContextMenu.Instance.displayMenu(e.clientX + 5, e.clientY + 10);
    //                                 }}>
    //                                 {Doc.CurrentUserEmail}
    //                             </div>
    //                             <div className="topbar-button-icon" onClick={this.navigateToHome}>
    //                                 <FontAwesomeIcon icon="home" />
    //                             </div>
    //                         </>
    //                     ) : null}
    //                 </div>
    //                 <div className="topbar-center">
    //                     <div className="topbar-title" onClick={() => activeDashboard && SelectionManager.SelectView(DocumentManager.Instance.getDocumentView(activeDashboard)!, false)}>
    //                         {activeDashboard ? StrCast(activeDashboard.title) : 'Dash'}
    //                     </div>
    //                     <div
    //                         className="topbar-button-icon"
    //                         onClick={e => {
    //                             const dashView = activeDashboard && DocumentManager.Instance.getDocumentView(activeDashboard);
    //                             ContextMenu.Instance.addItem({ description: 'Open Dashboard View', event: this.navigateToHome, icon: 'edit' });
    //                             ContextMenu.Instance.addItem({
    //                                 description: 'Snapshot Dashboard',
    //                                 event: async () => {
    //                                     const batch = UndoManager.StartBatch('snapshot');
    //                                     await DashboardView.snapshotDashboard();
    //                                     batch.end();
    //                                 },
    //                                 icon: 'edit',
    //                             });
    //                             dashView?.showContextMenu(e.clientX + 20, e.clientY + 30);
    //                         }}>
    //                         <FontAwesomeIcon color="white" size="lg" icon="bars" />
    //                     </div>
    //                     <Tooltip title={<div className="dash-tooltip">Browsing mode for directly navigating to documents</div>} placement="bottom">
    //                         <div className="topbar-button-icon" style={{ background: MainView.Instance._exploreMode ? Colors.LIGHT_BLUE : undefined }} onClick={action(() => (MainView.Instance._exploreMode = !MainView.Instance._exploreMode))}>
    //                             <FontAwesomeIcon color={MainView.Instance._exploreMode ? 'red' : 'white'} icon="eye" size="lg" />
    //                         </div>
    //                     </Tooltip>
    //                 </div>
    //                 <div className="topbar-right">
    //                     {Doc.ActiveDashboard ? (
    //                         <div
    //                             className="topbar-button-icon"
    //                             onClick={() => {
    //                                 SharingManager.Instance.open(undefined, activeDashboard);
    //                             }}>
    //                             {GetEffectiveAcl(Doc.GetProto(Doc.ActiveDashboard)) === AclAdmin ? 'Share' : 'view original'}
    //                         </div>
    //                     ) : null}
    //                     <div className="topbar-button-icon" onClick={() => ReportManager.Instance.open()}>
    //                         <MdBugReport />
    //                     </div>
    //                     <div className="topbar-button-icon" onClick={() => window.open('https://brown-dash.github.io/Dash-Documentation/', '_blank')}>
    //                         <FontAwesomeIcon icon="question-circle" />
    //                     </div>
    //                     <div className="topbar-button-icon" onClick={() => SettingsManager.Instance.open()}>
    //                         <FontAwesomeIcon icon="cog" />
    //                     </div>
    //                 </div>
    //             </div>
    //         </div>
    //     );
    // }
    render() {
        return (
            //TODO:glr Add support for light / dark mode
            <div style={{ pointerEvents: 'all' }} className="topbar-container">
                <div
                    className="topbar-inner-container"
                    style={{
                        color: this.textColor,
                        background: this.backgroundColor,
                    }}>
                    {this.topbarLeft}
                    {this.topbarCenter}
                    {this.topbarRight}
                </div>
            </div>
        );
    }
}