43 lines
No EOL
1.3 KiB
JavaScript
43 lines
No EOL
1.3 KiB
JavaScript
define([
|
|
"command",
|
|
"settings!api"
|
|
], function(command, Settings) {
|
|
|
|
//handles sending custom messages based on Caret commands (builds, plugins, etc)
|
|
var targets = Settings.get("api");
|
|
command.on("init:restart", function() {
|
|
targets = Settings.get("api");
|
|
});
|
|
|
|
command.on("api:execute", function(id, c) {
|
|
if (!id in targets) return c();
|
|
var config = targets[id];
|
|
var message = Object.create(config.message);
|
|
var send = function() {
|
|
chrome.runtime.sendMessage(config.id, message, null, function() {
|
|
if (chrome.runtime.lastError) {
|
|
console.error(chrome.runtime.lastError);
|
|
}
|
|
if (c) c(chrome.runtime.lastError);
|
|
});
|
|
};
|
|
if (config.sendEditorContext) {
|
|
//add context information to the message
|
|
editor.session.file.getPath(function(err, path) {
|
|
message.context = {
|
|
path: path,
|
|
selection: editor.session.getTextRange()
|
|
};
|
|
send();
|
|
});
|
|
} else {
|
|
//send message as-is
|
|
send();
|
|
}
|
|
});
|
|
|
|
//External apps can send messages by matching Caret's command/argument config objects
|
|
chrome.runtime.onMessageExternal.addListener(function(message, sender, c) {
|
|
command.fire(message.command, message.argument, c);
|
|
});
|
|
}); |