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
|
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: () => 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();
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: 50,
left: this.workspacesExposed ? 8 : -500,
background: "white",
border: "black solid 2px",
transition: "all 1s ease",
zIndex: 15,
padding: 10,
}}>
<img
src="https://bit.ly/2IBBkxk"
style={{
width: 20,
height: 20,
marginBottom: 10,
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)}
>{s.Title}</li>
)}
</div>
);
}
}
|