-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.js
301 lines (256 loc) · 7.28 KB
/
app.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
const config = {
baseURL: "https://skygear-demo.github.io/skypad",
skygearAPIEndpoint: "https://skypad.skygeario.com/", // trailing slash is required
skygearAPIKey: "ac59c61350b14227ad5a6114a40176ba",
writerUser: "writer",
writerPass: "writerpass"
}
let skygearPad = $("div#skypad-display");
let skygearTitle = $("div#skypad-title input");
let noteList = $("#note-list");
let codeHighlightSelector = $(".code-highlight-selector");
const Note = skygear.Record.extend("Note");
let thisNote = null;
let ramdomToken = Math.random().toString(36).substring(7); // for distinguishing tabs
let cachedCode = '';
function logoutDefaultUser(callback) {
if (skygear.auth.currentUser && skygear.auth.currentUser.username == config.writerUser) {
skygear.auth.logout().then(
skygear.auth.signupAnonymously().then(
function(user) {
callback(user);
}
)
);
}
}
function createNoteListItem (note) {
let li = document.createElement('li');
let item = document.createElement('a');
let noteURL = config.baseURL+"#"+note._id;
item.textContent = note.title;
item.setAttribute('href', noteURL);
li.append(item)
return li;
}
function createNote() {
var note = new Note({
title:"",
content: "",
viewcount: 0
});
note.setPublicReadWriteAccess();
return skygear.publicDB.save(note);
}
function saveNote(content) {
thisNote['content'] = content;
var toSaveNote = new Note({
_id: thisNote.id,
content: thisNote.content
});
skygear.publicDB.save(toSaveNote);
}
function updateTitleUI(title) {
document.title = "Skypad - "+ title + " ";
}
function saveTitle(title) {
thisNote['title'] = title;
var toSaveNote = new Note({
_id: thisNote.id,
title: thisNote.title
});
skygear.publicDB.save(toSaveNote);
}
function increaseNoteCount(note) {
var viewCount = note.viewcount;
viewCount = (viewCount == undefined)? 0 :viewCount;
var toSaveNote = new Note({
_id: note.id,
viewcount: viewCount + 1
});
skygear.publicDB.save(toSaveNote);
}
function fireSyncTitle(title) {
if (thisNote) {
skygear.pubsub.publish('note/' + thisNote._id, {
token: ramdomToken,
title: title
});
updateTitleUI(title);
saveTitle(title);
}
}
function fireSync(content) {
if (thisNote) {
skygear.pubsub.publish('note/' + thisNote._id, {
token: ramdomToken,
content: content
});
saveNote(content);
}
}
function sync(data) {
if (data.content !== undefined) {
if (data.token === ramdomToken) {
return;
} else {
cachedCode = data.content;
flask.update(data.content);
}
} else {
syncTitle(data);
}
}
function syncTitle(data) {
loadUserNotes(skygear.auth.currentUser._id);
if (data.token === ramdomToken) {
return;
} else {
skygearTitle.val(data.title);
}
}
function loadUserNotes(userId) { // User created notes, not included notes user has edited
const query = new skygear.Query(Note);
query.equalTo('_created_by', userId);
query.addDescending('_created_at');
skygear.publicDB.query(query)
.then(function(records) {
if (records.length == 0) {
console.log("No Record for " + userId);
return;
}
console.log(`Found ${records.length} notes for user.`);
noteList.empty();
for (let note of records) {
let noteItem = createNoteListItem(note);
noteList.append(noteItem);
}
}, function(error) {
console.error(error);
});
}
function loadExistingNote(noteId) {
const query = new skygear.Query(Note);
query.equalTo('_id', noteId);
skygear.publicDB.query(query)
.then(function(records) {
if (records.length == 0) {
console.log("No Record for " + noteId);
flask.update(
"// ❌ 404 not found.\n\nYou can create a new pad at " + config.baseURL
);
return;
}
const record = records[0];
var noteURL = config.baseURL+"#"+record._id;
increaseNoteCount(record);
skygear.pubsub.on('note/' + record._id, sync);
thisNote = record;
flask.update(record.content);
displaySharingOptions(noteURL);
var titleText = record.title? record.title : "untitled";
skygearTitle.val(titleText);
updateTitleUI(titleText);
}, function(error) {
console.error(error);
});
}
function initNote (user) {
var noteId = getHashFromURL();
codeHighlightSelector.show();
if (noteId) {
loadExistingNote(noteId);
loadUserNotes(skygear.auth.currentUser._id)
} else {
createNote().then(function(note) {
var noteURL = config.baseURL + "#" + note._id;
thisNote = note;
skygear.pubsub.on('note/' + note._id, sync);
window.location.hash = note._id;
var initTitle = 'untitled';
var initContent = '// Welcome to Skypad!' +
'\n// 😎 Share with this URL ' + noteURL +
'\n\n// Start typing.';
initContent += '\n\n// Now supports Syntax highlight. Uncomment the following lines to try:'+
'\n'+
'\n/*'+
'\nfunction hello(name) {'+
'\n console.log(`hello ${name}!`);'+
'\n}'+
'\n'+
'\nhello(\'world\');'+
'\n*/';
flask.update(initContent);
skygearTitle.val(initTitle);
displaySharingOptions(noteURL)
fireSync(initContent);
fireSyncTitle(initTitle);
loadUserNotes(skygear.auth.currentUser._id);
});
}
}
function configSkygear(apiEndpoint, apiKey) {
skygear.config({
'endPoint': apiEndpoint,
'apiKey': apiKey,
}).then(function() {
if (skygear.auth.currentUser) {
logoutDefaultUser(initNote);
initNote(skygear.auth.currentUser);
} else {
skygear.auth.signupAnonymously().then(function(user) {
initNote(user);
});
}
}, function(error) {
console.error(error.message);
});
}
function getHashFromURL() {
var readNote = null;
if (window.location.hash) {
// Fragment exists
readNote = window.location.hash.substr(1);
}
return readNote;
}
function displaySharingOptions(noteURL) {
var shareBarEl = $("#share-bar");
var shareURLEl = $("#share-url");
var shareTwitterEl = $("#share-twitter");
var shareFBEl = $("#share-fb");
shareURLEl[0].href = noteURL;
noteURL=noteURL.replace("#","%23");
shareTwitterEl[0].href = shareTwitterEl[0].href.replace('{{note-url}}',noteURL);
shareFBEl[0].href = shareFBEl[0].href.replace('{{note-url}}',noteURL);
shareBarEl.show();
}
$().ready(function() {
configSkygear(config.skygearAPIEndpoint, config.skygearAPIKey);
})
// Code highlight
var flask = new CodeFlask;
flask.run('#skypad-display', { language: 'javascript'});
$('#code-highlight-caption').text("JavaScript");
flask.onUpdate(function(code) {
if (cachedCode !== code) {
cachedCode = code;
fireSync(code);
}
skygearTitle.on("keyup change blur", function(e){
var title = skygearTitle.val();
fireSyncTitle(title);
})
});
$(".code-highlight-selector ul li a").on("click touch", function(e) {
var langChosen = e.target.dataset.lang;
flask.run('#skypad-display', { language: langChosen});
langChosen = (langChosen =="clike")? "C" : langChosen;
$('#code-highlight-caption').text(langChosen);
flask.onUpdate(function(code) {
if (cachedCode !== code) {
cachedCode = code;
fireSync(code);
}
});
})