aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/topbar/TopBar.tsx
blob: 7e728306c129f7eb11b627c1c621fdb507991dcc (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
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 dashboardItems = myDashboards.map(board => {
        //     const boardTitle = StrCast(board.title);
        //     console.log(boardTitle);
        //     return {
        //         text: boardTitle,
        //         onClick: () => DashboardView.openDashboard(board),
        //         val: board,
        //     };
        // });
        return Doc.ActiveDashboard ? (
            <div className="topbar-center">
                <Button
                    text={StrCast(Doc.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 = Doc.ActiveDashboard && DocumentManager.Instance.getDocumentView(Doc.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(Doc.ActiveDashboard)) === AclAdmin ? 'Share' : 'View Original'}
                    onClick={() => {
                        SharingManager.Instance.open(undefined, Doc.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() {
        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>
        );
    }
}