-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·128 lines (113 loc) · 3.45 KB
/
index.js
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
//tabs handler
let tasks = document.getElementById("tasks");
let done = document.getElementById("done");
let create = document.getElementById("create");
let login = document.getElementById("login");
let logout = document.getElementById("logout");
let themename = document.getElementById("light");
let theme = document.getElementById("theme");
let thememode = 0;
//Theme switcher
light.addEventListener('click',function(){
if(thememode==1){
theme.href='';
thememode=0;
document.getElementById("light").style.backgroundImage='url("./lightmode.svg")';
}
else{
theme.href='light.css';
thememode=1;
document.getElementById("light").style.backgroundImage = "url('darkmode.svg')";
}
});
tasks.addEventListener('click',shownotes);
create.addEventListener('click',createTasks);
done.addEventListener('click',showdoneTasks);
login.addEventListener('click',userlogin);
function userlogin(){
console.log('login pressed');
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "login.php", true);
xmlhttp.send();
}
function signup(){
console.log("hist");
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "signup.php", true);
xmlhttp.send();
}
function shownotes(){
console.log("hist");
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "tasks.php", true);
xmlhttp.send();
}
function createTasks(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "create.php", true);
xmlhttp.send();
}
function showdoneTasks(){
console.log("done task clicked!");
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "done.php", true);
xmlhttp.send();
}
function deleteTask($id){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "deleteTask.php?id="+$id, true);
xmlhttp.send();
}
function doneTask($id){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "doneTask.php?id="+$id, true);
xmlhttp.send();
}
function pendingTask($id){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("notes").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "pending.php?id="+$id, true);
xmlhttp.send();
}
function test(){
console.log("Hey");
}