-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.js
146 lines (118 loc) · 5.03 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
/*
* Copyright (c) 2012-2013 Tim Burgess. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50, white: true, debug: true */
/*global define, brackets, $, Mustache */
define(function (require, exports, module) {
"use strict";
var COMMAND_ID = "timburgess.pagesuck.getpage";
// Brackets modules
var DocumentManager = brackets.getModule("document/DocumentManager"),
EditorManager = brackets.getModule("editor/EditorManager"),
ExtensionUtils = brackets.getModule("utils/ExtensionUtils"),
CommandManager = brackets.getModule("command/CommandManager"),
KeyBindingManager = brackets.getModule("command/KeyBindingManager"),
Dialogs = brackets.getModule("widgets/Dialogs"),
Strings = brackets.getModule("strings");
// local modules
var mainDialog = require("text!htmlContent/dialog-template.html");
var toolbar = require("text!htmlContent/pagesuck-toolbar.html");
/**
* With html retrieved, creates a new untitled document and
* put the html into it
*/
function loadPage(html) {
var counter = 1;
var doc = DocumentManager.createUntitledDocument(counter, ".html");
doc.setText(html);
}
/**
* Show dialog for URL to suck
*/
function showUrlDialog() {
var templateVars = {
title: "Enter a URL to get",
label: "URL:",
baseUrl: "http://",
Strings: Strings
};
Dialogs.showModalDialogUsingTemplate(Mustache.render(mainDialog, templateVars), false);
// add handlers and focus to input
var $dlg = $(".pagesuck-dialog.instance");
var $urlInput = $dlg.find("input.url");
$urlInput.focus();
$dlg.find(".dialog-button[data-button-id='cancel']").on("click", function() {
Dialogs.cancelModalDialogIfOpen("pagesuck-dialog");
});
$dlg.find(".dialog-button[data-button-id='ok']").on("click", function() {
// get input URL and retrieve content
var baseUrlValue = $urlInput.val();
console.log("Sucking " + baseUrlValue);
getPageHtml(baseUrlValue);
// change button text
$(this).html($(this)[0].attributes['data-loading-text'].nodeValue);
});
}
// get url from selected text if any, otherwise fallback to dialog
function getUrlInput() {
var editor = EditorManager.getActiveEditor(),
url;
if (editor) {
url = editor.getSelectedText();
if (url) {
getPageHtml(url);
}
else {
showUrlDialog();
}
}
}
// add protocol to url if missing and retrieve page
function getPageHtml(url) {
if (url.substr(0, 7) !== 'http://' && url.substr(0, 8) !== 'https://') {
url = 'http://' + url;
}
$.ajax({
url: url,
dataType: 'html'
})
.done(function (html) {
// load the page then close the dialog
loadPage(html);
Dialogs.cancelModalDialogIfOpen("pagesuck-dialog");
})
.fail(function() {
console.error('could not open ' + url);
});
}
// load stylesheet
ExtensionUtils.loadStyleSheet(module, "styles/styles.css");
// add icon to toolbar and listen
$("#main-toolbar .buttons").append(toolbar);
$("#toolbar-pagesuck").on('click', function() {
showUrlDialog();
});
// wegister with the wabbit
CommandManager.register("PageSuck", COMMAND_ID, getUrlInput);
KeyBindingManager.addBinding(COMMAND_ID, "Alt-S", "mac");
KeyBindingManager.addBinding(COMMAND_ID, "Alt-S", "win");
});