blob: c7d4d178665453653686dcd190ff9ab2597c6f49 (
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
|
import { observable, runInAction, action } from "mobx";
import * as React from "react";
import MainViewModal from "../views/MainViewModal";
import { observer } from "mobx-react";
import { library } from '@fortawesome/fontawesome-svg-core';
import * as fa from '@fortawesome/free-solid-svg-icons';
import { SelectionManager } from "./SelectionManager";
import "./SettingsManager.scss";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Identified } from "../Network";
library.add(fa.faWindowClose);
@observer
export default class SettingsManager extends React.Component<{}> {
public static Instance: SettingsManager;
@observable private isOpen = false;
@observable private dialogueBoxOpacity = 1;
@observable private overlayOpacity = 0.4;
private curr_password_ref = React.createRef<HTMLInputElement>();
public open = action(() => {
SelectionManager.DeselectAll();
this.isOpen = true;
});
public close = action(() => {
this.isOpen = false;
});
constructor(props: {}) {
super(props);
SettingsManager.Instance = this;
}
private dispatchRequest = async () => {
const curr_pass = this.curr_password_ref.current!.value;
const { error: resultError, ...others } = await Identified.PostToServer('/internalResetPassword', { curr_pass });
if (resultError) {
// we failed
}
// do stuff with response
}
private get settingsInterface() {
return (
<div className={"settings-interface"}>
<div className="settings-heading">
<h1>settings</h1>
<div className={"close-button"} onClick={this.close}>
<FontAwesomeIcon icon={fa.faWindowClose} size={"lg"} />
</div>
</div>
<div className="settings-body">
<div className="settings-type">
<p>changeable settings</p>
<p>static data</p>
</div>
<div className="settings-content">
<input ref={this.curr_password_ref}></input>
this changes with what you select!
</div>
</div>
</div>
);
}
render() {
return (
<MainViewModal
contents={this.settingsInterface}
isDisplayed={this.isOpen}
interactive={true}
dialogueBoxDisplayedOpacity={this.dialogueBoxOpacity}
overlayDisplayedOpacity={this.overlayOpacity}
/>
);
}
}
|