-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaxios.js
119 lines (111 loc) · 1.85 KB
/
axios.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
//FILL IN DATA OBJECTS PLEASE
//USE THIS TO GET PROFILE INFO OF USERS
axios({
method: 'get',
url: '/profile',
data: {
email:
}
}).then(function(res) {
//SENDING BACK
//FULL PROFILE INFO
//ALL PROJECTS
//ALL NOTIFICATIONS
}
//USE THIS TO UPDATE PROFILE
axios({
method: 'post',
url: '/updateprofile',
data: {
email:
name:
position:
description:
availability:
location:
imageurl:
title:
}
}).then(function(res) {
//NOT SENDING STUFF BACK TO CLIENT
//USE REDUX TO RENDER UPDATED INFO
}
//USE THIS TO STORE USER INFO FROM SIGNUP
axios({
method: 'post',
url: '/signup',
data: {
name:
email:
position:
availability:
description:
location:
imageurl:
title:
}
}).then(function(res) {
//NOT GONNA SEND STUFF BACK
}
//USE THIS TO SEARCH PROJECTS
axios({
method: 'post',
url: '/projectsearch',
data: {
query:
}
}).then(function(res) {
//RESPONSE IS AN ARRAY OF ALL MATCHING PROJECTS ;)
}
//USE THIS TO SEARCH USERS
axios({
method: 'post',
url: '/usersearch',
data: {
query:
}
}).then(function(res) {
//RESPONSE IS AN ARRAY OF ALL MATCHING USERS ;)
}
//USE THIS TO ADD NOTIFICATIONS
axios({
method: 'post',
url: '/notification',
data: {
email:
type:
}
}).then(function(res) {
//NO RESPONSE BACK >:)
}
//USE THIS TO CREATE A PROJECT XD
axios({
method: 'post',
url: '/createproject',
data: {
email: //USERS email
name:
headquarters:
description:
imageurl:
techstack:
websites:
}
}).then(function(res) {
//RESPONSE IS AN ARRAY OF ALL MATCHING PROJECTS ;)
}
//USE THIS TO UPDATE A PROJECT
axios({
method: 'post',
url: '/updateproject',
data: {
name:
headquarters:
description:
imageurl:
techstack:
websites:
}
}).then(function(res) {
//NO RESPONSE USE REDUX TO RENDER ;D
}