aboutsummaryrefslogtreecommitdiff
path: root/src/server/authentication/controllers/WorkspacesMenu.tsx
blob: 70c37774cdd6ff1126a4db6d1d727503257bf480 (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
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { observable, action, configure, reaction, computed, ObservableMap, runInAction } from 'mobx';
import { observer } from "mobx-react";
import * as request from 'request'
import './WorkspacesMenu.css'
import { Document } from '../../../fields/Document';
import { Server } from '../../../client/Server';
import { Field } from '../../../fields/Field';

export interface WorkspaceMenuProps {
    active: Document;
    open: (workspace: Document) => void;
    new: (init: boolean) => void;
    allWorkspaces: Document[];
}

@observer
export class WorkspacesMenu extends React.Component<WorkspaceMenuProps> {
    static Instance: WorkspacesMenu;
    @observable private workspacesExposed: boolean = false;

    constructor(props: WorkspaceMenuProps) {
        super(props);
        WorkspacesMenu.Instance = this;
        this.addNewWorkspace = this.addNewWorkspace.bind(this);
    }

    @action
    addNewWorkspace() {
        this.props.new(false);
        this.toggle();
    }

    @action
    toggle() {
        this.workspacesExposed = !this.workspacesExposed;
    }

    render() {
        let p = this.props;
        return (
            <div
                style={{
                    width: "auto",
                    height: "auto",
                    borderRadius: 5,
                    position: "absolute",
                    top: 55,
                    left: this.workspacesExposed ? 11 : -500,
                    background: "white",
                    border: "black solid 2px",
                    transition: "all 1s ease",
                    zIndex: 15,
                    padding: 10,
                    paddingRight: 12,
                }}>
                <img
                    src="https://bit.ly/2IBBkxk"
                    style={{
                        width: 20,
                        height: 20,
                        marginTop: 3,
                        marginLeft: 3,
                        marginBottom: 3,
                        cursor: "grab"
                    }}
                    onClick={this.addNewWorkspace}
                />
                {this.props.allWorkspaces.map(s =>
                    <li className={"ids"}
                        key={s.Id}
                        style={{
                            listStyleType: "none",
                            color: s.Id === this.props.active.Id ? "darkblue" : "black",
                            cursor: "grab"
                        }}
                        onClick={() => {
                            this.props.open(s);
                            console.log(this.props.allWorkspaces.length);
                        }}
                    >{s.Title}</li>
                )}
            </div>
        );
    }
}