-
Notifications
You must be signed in to change notification settings - Fork 1
/
notes.js
230 lines (205 loc) · 7.15 KB
/
notes.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// $scope.user = {};
// $scope.firebaseUser;
// //auth variables
// var userFactory = UserFactory;
// var signIn = userFactory.signIn();
// var signOut = userFactory.signOut();
// $scope.auth = AuthFactory
//MARK:------FIREBASE BRAIN
//listens to changes for database refrences. ie: task added to db.ref(user.uid) -> fires function to update scope.
//ps. this is always running and listening for changes, even user == null.
// $scope.auth.$onAuthStateChanged(function(user) {
// $scope.firebaseUser = user;
// if (user != null) {
//
// $scope.user.uid = user.uid;
// $scope.user.email = user.email;
//
// }
// });
// //UTILITY FUNCTIONS
// function makeSnapshotObject(data) {
// var tempArray = [];
// _.pairs(data) //uses underscorejs to format object and update $scope.user.taskList
// .forEach(function(dataArray) {
// dataArray[1].key = dataArray[0];
// tempArray.push(
// dataArray[1]
// )
// })
//
// return tempArray;
// }
//------------------------------------------------------------------------------
//--------------------------EXAMPLE FIREBASE FUNCTIONS--------------------------
//------------------------------------------------------------------------------
//MARK:------DELETE REQUEST
// function deleteTask(task) {
// var dbRef = firebase.database()
// .ref()
// .child('taskdb')
// .child($scope.user.uid)
// .child(task.key)
// .remove();
// }
//MARK: POST REQUEST ------------------------------------------------
// function postData(data){
// var datestr = new Date()
// dateStr = dateStr.toString();
// var dbRef = firebase.database()
// .ref()
// .child('exampledb')
// .child($scope.user.uid)
// .push({date: datestr, data: data})
// }
//MARK: GET REQUEST --------------------------------------------------
// function updateUserObject() {
//
// var exampleDB = firebase.database()
// .ref()
// .child('exampleDB')
// .child(user.uid); //CREATES FIREBASE REFRENCE FOR ALL DATA CREATED BY CURRENT USER
//
// var tempArray = makeSnapshotObject(data); //NECESSARY TO GET KEYS OF OBJECTS
//
//
// //updates $scope.user
// //NOTE: NEED $TIMEOUT IN AN ASYNC CALL VIA FIREBASE
// $timeout(function() {
// $scope.user.db = tempArray;
// findFoldersToShow();
// }, 0);
//
//
// }
//MARK: PUT REQUEST --------------------------------------------------
// function updateListItem(task) {
// var dbRef = firebase.database()
// .ref()
// .child('taskdb')
// .child($scope.user.uid)
// .child(task.key)
// .child('is_complete')
// .set(true)
//
// // NOTE: if you update multiple lines you must set the FULL object
// //
// //
// // var dbRef = firebase.database() //creates ref
// // .ref()
// // .child('taskdb')
// // .child($scope.user.uid)
// // .child(task.key) //finds the tasks key
// // .set({ //replaces the full object. (FULL OBJECT) v imporant.
// // date: task.date,
// // title: task.title,
// // scrum: task.scrum,
// // folder: task.folder,
// // is_complete: task.is_complete
// // });
// }
//MARK:EXAMPLE
//----FIREBASE BRAIN
//listens to changes for database refrences. ie: task added to db.ref(user.uid) -> fires function to update scope.
//ps. this is always running and listening for changes, even user == null.
// $scope.auth.$onAuthStateChanged(function(user) {
//
// if (user != null) {
// //LISTENER: USER TASK LIST
// var taskRef = firebase.database()
// .ref()
// .child('taskdb')
// .child(user.uid)
// taskRef.on('value', snap => {
// //scope init funcs.
// console.log('ish changed in db :)')
// updateUserObject(user, snap.val()) //snap.val() = user tasklist;
// })
//
//
// //LISTENER: GLOBAL BUG_INFO LIST
// var bugRef = firebase.database()
// .ref()
// .child('taskdb')
// .child('bugs')
// bugRef.on('value', snap => {
// var tempArray = makeSnapshotObject(snap.val())
// $timeout(function() {
// $scope.user.bugs = tempArray;
// }, 0);
// })
//
//
// //LISTENER: SHARED POJO LISTS
// var pojoRef = firebase.database()
// .ref()
// .child('pojodb')
//
// // pojoRef.push({members:['[email protected]', '[email protected]'], taskList: [{scrum:2,title:'make this work'}, {scrum:5, title:'fix this ish'}], title: 'myfirstpojo'});
// //badbadbadbadbad TODO: OPTIMIZE THIS //WILL CAUSE PROBLEMS IN FUTURE IF YOU DONT!!
// pojoRef.on('value', data => {
// var userPojos = [];
// var pojos = makeSnapshotObject(data.val()) // yes.. we're listening for all of them atm and pulling all in.. wtf
// pojos.forEach(pojo => {
// var isMember = _.indexOf(pojo.members, user.email);
// if (isMember != -1) {
// userPojos.push(pojo);
// }
// })
//
// $timeout(function() {
// $scope.user.pojos = userPojos;
// }, 0)
//
// });
//
//
// //LISTENER: FRIENDS LIST/REQUESTS
// var friendRef = firebase.database()
// .ref()
// .child('frienddb')
// .child(user.uid)
// friendRef.on('value', x => {
// var tempArray = makeSnapshotObject(x.val())
//
// $timeout(function() {
// $scope.user.friends = tempArray;
// findFriendRequests()
// })
// })
//
//
//
// //LISTENER: GLOBAL USERDB W/ PUBLIC INFO
// var userdbRef = firebase.database()
// .ref()
// .child('userdb')
// checkNewUser(userdbRef, user)
//
// //LISTENER: USER SETTINGS
// var currentUserRef = firebase.database()
// .ref()
// .child('userdb')
// .child(user.uid)
// currentUserRef.on('value', x => {
// var tempArray = makeSnapshotObject(x.val())
// //IF USER SETTINGS CHANGE:
// //update $scope.user.settings
// })
//
// //LISTNER: TIMER -need for offline->online capablities
// //uses time started + time paused refrences to calcualte time remaining while comparing current time:
// //is_paused: time | null;
// //amount paused: int | null;
// //started_at: time;
//
// }
// });
//Cool functions
//KEY EVENT LISTENER !!! :D
// $document.bind("keydown", function(event) {
// console.log(event);
// if (event.key == "Tab") {
// event.preventDefault(); //would prevent from tabbing all over the screen
// }
// });