-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.js
415 lines (335 loc) · 15.5 KB
/
main.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*global define, brackets, $, Mustache, btoa */
define(function (require, exports, module) {
"use strict";
var panel = require("text!templates/panel.html"),
content = require("text!templates/content.html"),
gist = require("text!templates/gist.html"),
button = require("text!templates/button.html"),
newGistDialog = require("text!templates/newGistDialog.html"),
successGistDialog = require("text!templates/successGistDialog.html");
var CommandManager = brackets.getModule("command/CommandManager"),
DocumentManager = brackets.getModule("document/DocumentManager"),
PreferencesManager = brackets.getModule("preferences/PreferencesManager"),
Dialogs = brackets.getModule("widgets/Dialogs"),
EditorManager = brackets.getModule("editor/EditorManager"),
ExtensionUtils = brackets.getModule("utils/ExtensionUtils"),
Menus = brackets.getModule("command/Menus"),
PanelManager = brackets.getModule("view/PanelManager");
var Strings = require("strings");
var $panel = $(),
$content = $(),
$button = $(),
gists = null;
var PREFIX = "gist-manager",
TOGGLE_PANEL = PREFIX + ".run",
GIST_FROM_CURRENT_FILE = PREFIX + ".fromfile",
GM_PANEL = PREFIX + ".panel",
NEW_GIST_MENU = PREFIX + ".menu";
// Load preferences var
var prefs = PreferencesManager.getExtensionPrefs(PREFIX);
var auths = prefs.get("auths") || false;
if (!auths) {
auths = {};
prefs.set("auths", auths);
prefs.save();
}
// If showButton preference is not defined, set it to true
if (prefs.get("showButton") === undefined) {
prefs.set("showButton", true);
prefs.save();
}
// Make :contains case insensitive (:containsIN)
$.extend($.expr[":"], {
"containsIN": function(elem, i, match) {
return (elem.textContent || elem.innerText || "").toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
}
});
// Show or hide Gist Manager panel when called
function _handlePanelToggle() {
if ($panel.is(":visible")) {
$panel.hide();
$button.removeClass("active");
CommandManager.get(TOGGLE_PANEL).setChecked(false);
EditorManager.focusEditor();
} else {
$panel.show();
$button.addClass("active");
CommandManager.get(TOGGLE_PANEL).setChecked(true);
}
EditorManager.resizeEditor();
}
// Render a given Gist inside the Gist Manager panel
function renderGist(gistData) {
// If the gist we are trying to render is already loded
// don't load it again but just show the cached version
// if is not cached then load it from Gist API
if (!$panel.find("#" + gistData.id).data("loaded")) {
// Load Gist data and prepare it for Mustache
$.getJSON(gistData.url, function(gistData) {
// Convert .files from object to array (needed because Mustache is stupid I guess, or maybe I'm)
gistData.files = $.map(gistData.files, function(value) {
return [value];
});
// Render Gist using Mustache
var vars = gistData;
$.extend(vars, Strings);
var $gist = $(Mustache.render(gist, vars));
// Inject the rendered Gist in the Gist Manager panel
$panel.find("#" + gistData.id).html($gist).data("loaded", true);
});
}
// Move things around to show the selected Gist
$panel
.find(".gist").hide().end()
.find("a").removeClass("active").end()
.find("a[href=#" + gistData.id + "]").addClass("active").end()
.find("#" + gistData.id).show();
}
function getAuth(username, password, action) {
// These will be used in our Ajax call
var url,
headers;
// Set headers and API URL depending if we are trying to get public gists
// user's public gists or user's public & secret gists
if (username.length && password.length && password.length !== 40) {
// Basic login with username and password
url = "https://api.github.com/gists";
headers = { "Authorization": "Basic " + btoa(username + ":" + password) };
} else if (username.length && !password.length) {
// No login but filter by username
url = "https://api.github.com/users/" + username + "/gists";
headers = { };
} else if (username.length && password.length == 40) {
// OAuth login with authorization token
url = "https://api.github.com/gists";
headers = { "Authorization": "token " + password };
// Store Auth token to Brackets preferences file
auths[username] = {};
auths[username].username = username;
auths[username].password = password;
prefs.set("auths", auths);
prefs.save();
} else {
// No login, show public gists
url = "https://api.github.com/gists";
headers = { };
}
if (action === "GET") {
return {"url": url, "headers": headers};
} else if (action === "DELETE") {
if (headers.Authorization) {
return {"url": "https://api.github.com/gists/", "headers": headers};
}
}
}
// Load list of Gists
// if no username is provided then load the public list
// if username is provided then load the list of the selected username
// if password is provided then load even the secret Gists of the selected user
function loadContent(username, password) {
// These will be used in our Ajax call
var auth = getAuth(username, password, "GET");
$.ajax({
type: "GET",
url: auth.url,
dataType: "json",
headers: auth.headers,
success: function (data) {
gists = data;
$.map(gists, function(gist) {
gist.shortDescription = "gist:" + gist.id;
if (typeof gist.description != null && gist.description != null) {
if (gist.description.length) {
gist.shortDescription = gist.description.substring(0, 20);
}
}
return gist;
});
_renderContent(gists);
},
error: function (err) {
var response = JSON.parse(err.responseText);
Dialogs.showModalDialog("error-dialog", Strings.LOADING_ERROR, response.message);
console.error("gist-manager:", err);
}
});
// Renders a given list of Gists inside the panel
function _renderContent(gists) {
var vars = {"gists": gists};
$content = $(Mustache.render(content, vars));
$panel.find(".gist-manager-content").html($content);
// Render the first gist
renderGist(gists[0]);
// Add event handler on the list of Gists
$panel.on("click", ".list-group-item", function(event) {
gists.forEach( function(gist) {
if (gist.id == $(event.target).data("id")) {
renderGist(gist);
return;
}
});
});
}
}
function deleteGist(username, password, id) {
// These will be used in our Ajax call
var auth = getAuth(username, password, "DELETE");
if (typeof auth === undefined || auth === undefined) {
Dialogs.showModalDialog("error-dialog", Strings.DELETING_ERROR, "You do not own this Gist, please check your login details.");
return;
}
$.ajax({
type: "DELETE",
url: auth.url + id,
dataType: "json",
headers: auth.headers,
success: function () {
$panel.find("#" + id).remove();
$panel.find("*[data-id=" + id + "]").parent().remove();
$panel.find(".list li").first().addClass("active").find("a").trigger("click");
},
error: function (err) {
var response = JSON.parse(err.responseText);
Dialogs.showModalDialog("error-dialog", Strings.LOADING_ERROR, response.message);
console.error("gist-manager:", err);
}
});
}
function filterContent(query) {
$panel.find(".gist-manager-content .list li").show();
$panel.find(".gist-manager-content .list li:not(:containsIN('" + query + "'))").hide();
}
// Post a new Gist
function newGist(username, password, entireFile) {
var content = "",
gistFileName = "",
filename = DocumentManager.getCurrentDocument().file._name,
selection = EditorManager.getCurrentFullEditor().getSelectedText();
if (entireFile) {
content = DocumentManager.getCurrentDocument()._masterEditor.document.file._contents;
} else if (selection.length) {
content = selection;
}
if (content.length && filename.length) {
gistFileName = filename;
}
var vars = $.extend({"content": content, "filename": gistFileName, "secret": (username.length && password.length)}, Strings);
var dialog = Dialogs.showModalDialogUsingTemplate(Mustache.render(newGistDialog, vars)),
$dialog = dialog.getElement();
$dialog.
on("click", "#add-file", function() {
$dialog.find("#prototype-file .file").first().clone().appendTo("#files");
});
dialog.done(function (buttonId) {
if (buttonId === "create-public-gist" || buttonId === "create-secret-gist") {
var url = "https://api.github.com/gists",
headers;
var gistData = {
"description": $dialog.find("[name=description]").val(),
"public": (buttonId === "create-public-gist"),
"files": { }
};
$dialog.find("#files .file").each( function() {
gistData.files[$(this).find(".filename").val()] = {};
gistData.files[$(this).find(".filename").val()].content = $(this).find(".content").val();
});
// Set header if user wants to be authenticated
if (username.length && password.length) {
headers = { "Authorization": "Basic " + btoa(username + ":" + password) };
} else {
headers = { };
}
$.ajax({
type: "POST",
url: url,
dataType: "json",
headers: headers,
data: JSON.stringify(gistData),
success: function (response) {
var vars = $.extend(response, Strings);
var dialog = Dialogs.showModalDialogUsingTemplate(Mustache.render(successGistDialog, vars));
dialog.done(function (buttonId) {
if (buttonId === "open") {
brackets.app.openURLInDefaultBrowser(response.html_url);
}
});
if (username.length && password.length) {
loadContent(username, password);
}
},
error: function (err) {
var response = JSON.parse(err.responseText);
Dialogs.showModalDialog("error-dialog", Strings.CREATION_ERROR, response.message);
console.error("gist-manager:", err);
}
});
}
});
}
function loadToken(username) {
if (auths[username]) {
$panel.find("#github-password").val(auths[username].password);
} else {
$panel.find("#github-password").val("");
}
}
function init() {
// Load compiled CSS of Gist Manager
ExtensionUtils.loadStyleSheet(module, "styles/gist-manager.css");
// Add menu option to toggle Gist Manager panel
CommandManager.register(Strings.SHOW_GIST_MANAGER, TOGGLE_PANEL, _handlePanelToggle);
var menu = Menus.getMenu(Menus.AppMenuBar.VIEW_MENU);
menu.addMenuItem(TOGGLE_PANEL, null, Menus.AFTER);
// Add menu option to create Gist of the current file
CommandManager.register(Strings.GIST_FROM_CURRENT_FILE, GIST_FROM_CURRENT_FILE, function() {
newGist($panel.find("#github-username").val(), $panel.find("#github-password").val(), true);
});
var editMenu = Menus.getMenu(Menus.AppMenuBar.EDIT_MENU);
editMenu.addMenuItem(GIST_FROM_CURRENT_FILE, null, Menus.AFTER);
// Add context menu option to create gist
CommandManager.register(
Strings.CREATE_NEW_GIST,
NEW_GIST_MENU,
function() { newGist($panel.find("#github-username").val(), $panel.find("#github-password").val()); }
);
var contextMenu = Menus.getContextMenu(Menus.ContextMenuIds.EDITOR_MENU);
contextMenu.addMenuItem(NEW_GIST_MENU);
// Create Gist Manager panel
var vars = Strings,
authsMustache = [];
$.each(auths, function(auth) {
authsMustache.push(auth);
});
$.extend(vars, {"auths": authsMustache});
PanelManager.createBottomPanel(GM_PANEL, $(Mustache.render(panel, vars)), 200);
// Cache selection of Gist Manager panel
$panel = $("#gist-manager");
// Add events handler to Gist Manager panel
$panel
.on("click", "#load-gists", function() {
loadContent($panel.find("#github-username").val(), $panel.find("#github-password").val());
})
.on("click", "#new-gist", function() {
newGist($panel.find("#github-username").val(), $panel.find("#github-password").val());
})
.on("keyup", "#filter-content", function() {
filterContent($panel.find("#filter-content").val());
})
.on("keyup", "#github-username", function() {
loadToken($panel.find("#github-username").val());
})
.on("click", ".delete-gist", function() {
deleteGist($panel.find("#github-username").val(), $panel.find("#github-password").val(), $(this).attr("data-id"));
})
.on("click", ".close", _handlePanelToggle);
// Create button only if required by user settings
if (prefs.get("showButton")) {
// Append button to toolbar
$("#main-toolbar .buttons").append(Mustache.render(button));
$button = $("#gist-manager-button");
// Add events handler to Gist Manager button if required
$(document).on("click", "#gist-manager-button", _handlePanelToggle);
}
}
init();
});