Caret/js/sessions.js

224 lines
5.7 KiB
JavaScript
Raw Normal View History

define([
"editor",
"dialog",
"command",
"file",
"settings!ace,user"
],
function(editor, dialog, command, File, Settings) {
2013-08-21 00:35:25 +00:00
var tabs = [];
2013-08-22 06:35:14 +00:00
var Session = ace.require("ace/edit_session").EditSession;
var cfg = Settings.get("ace");
var userConfig = Settings.get("user");
2013-08-21 00:35:25 +00:00
var renderTabs = function() {
var tabContainer = document.find(".tabs");
2013-08-21 00:35:25 +00:00
var contents = "";
2013-08-22 06:35:14 +00:00
var current = editor.getSession();
tabContainer.innerHTML = "";
2013-08-21 00:35:25 +00:00
tabs.forEach(function(tab, index) {
2013-08-22 06:35:14 +00:00
var span = document.createElement("span");
span.setAttribute("command", "session:raise-tab");
span.setAttribute("argument", index);
if (tab === current) {
span.className = "active";
}
span.innerHTML = tab.fileName + (tab.modified ? " *" : "");
var close = document.createElement("a");
close.innerHTML = "×";
close.className = "close";
close.setAttribute("command", "session:close-tab");
close.setAttribute("argument", index);
span.append(close);
tabContainer.append(span);
2013-08-21 00:35:25 +00:00
});
}
2013-09-01 04:21:21 +00:00
var setTabSyntax = function(tab) {
tab.setTabSize(userConfig.indentation || 2);
tab.setUseWrapMode(userConfig.wordWrap);
2013-09-01 04:21:21 +00:00
if (tab.file) {
2013-09-04 19:26:09 +00:00
var found = false;
2013-09-01 04:21:21 +00:00
var extension = tab.file.entry.name.split(".").pop();
for (var i = 0; i < cfg.modes.length; i++) {
var mode = cfg.modes[i];
if (mode.extensions.indexOf(extension) > -1) {
tab.setMode("ace/mode/" + mode.name);
syntax.value = mode.name;
2013-09-04 19:26:09 +00:00
found = true;
break;
}
}
2013-09-04 19:26:09 +00:00
if (!found) {
syntax.value = "plain_text";
tab.setMode("ace/mode/plain_text");
}
2013-09-01 04:21:21 +00:00
}
};
var saveFile = function(as) {
if (this.modified || as) {
2013-09-01 04:21:21 +00:00
var content = this.getValue();
2013-09-04 19:26:09 +00:00
var self = this;
var whenOpen = function() {
self.file.write(content);
self.modified = false;
self.once("change", function() {
self.modified = true;
renderTabs();
});
renderTabs();
}
2013-09-01 04:21:21 +00:00
if (!this.file) {
var file = this.file = new File();
return file.open("save", function() {
self.fileName = file.entry.name;
2013-09-04 19:26:09 +00:00
whenOpen();
2013-09-01 04:21:21 +00:00
});
}
2013-09-04 19:26:09 +00:00
whenOpen();
2013-09-01 04:21:21 +00:00
}
};
2013-08-21 00:47:07 +00:00
var addTab = function(contents, file) {
2013-08-22 06:35:14 +00:00
contents = contents || "";
var current = editor.getSession();
var session;
//reuse tab if opening a file into an empty tab
if (file && !current.file && !current.modified) {
2013-08-22 06:35:14 +00:00
session = current;
session.setValue(contents);
} else {
session = new Session(contents);
tabs.push(session);
editor.setSession(session);
}
session.fileName = file ? file.entry.name : "untitled.txt";
2013-08-21 00:47:07 +00:00
session.file = file;
2013-09-01 04:21:21 +00:00
setTabSyntax(session);
session.save = saveFile;
2013-08-22 06:35:14 +00:00
session.modified = false;
session.once("change", function() {
session.modified = true;
renderTabs();
});
editor.focus();
2013-08-21 00:35:25 +00:00
renderTabs();
};
2013-08-21 00:47:07 +00:00
var removeTab = function(index) {
2013-08-31 20:23:41 +00:00
if (!index) {
index = tabs.indexOf(editor.getSession());
}
var tab = tabs[index];
var continuation = function() {
tabs = tabs.filter(function(tab, i) {
if (i == index) {
//tab.save();
return false;
}
return true;
});
if (tabs.length == 0) {
return addTab();
2013-08-22 06:35:14 +00:00
}
var next = index - 1;
if (next < 0) {
next = 0;
}
raiseTab(next);
2013-08-22 06:35:14 +00:00
}
if (tab.modified) {
dialog(
tab.fileName + " has been modified. Do you want to save changes?",
[{label: "Save", value: true}, {label: "Don't save", value: false}],
function(confirm) {
if (confirm) {
tab.save();
}
continuation();
})
} else {
continuation();
2013-09-01 18:36:56 +00:00
}
2013-08-21 00:47:07 +00:00
};
2013-08-21 00:35:25 +00:00
var raiseTab = function(index) {
var tab = tabs[index];
editor.setSession(tab);
2013-08-22 06:35:14 +00:00
renderTabs();
editor.focus();
2013-08-21 00:47:07 +00:00
};
2013-08-21 00:35:25 +00:00
2013-09-01 04:21:21 +00:00
var switchTab = function(shift) {
shift = shift || 1;
var current = editor.getSession();
var currentIndex = tabs.indexOf(current);
var shifted = (currentIndex + shift) % tabs.length;
raiseTab(shifted);
}
2013-08-21 00:35:25 +00:00
var openFile = function() {
var f = new File();
f.open(function(file) {
f.read(function(err, data) {
2013-08-22 06:35:14 +00:00
addTab(data, file);
2013-08-21 00:35:25 +00:00
});
});
2013-09-01 04:21:21 +00:00
};
2013-08-21 00:35:25 +00:00
var syntax = document.find(".syntax");
2013-08-22 06:35:14 +00:00
var init = function() {
cfg.modes.forEach(function(mode) {
var option = document.createElement("option");
option.innerHTML = mode.label;
option.value = mode.name;
syntax.append(option);
});
addTab("");
reset();
};
var reset = function() {
cfg = Settings.get("ace");
2013-09-04 19:26:09 +00:00
userConfig = Settings.get("user");
syntax.value = "javascript";
editor.getSession().setMode("ace/mode/" + syntax.value);
2013-09-04 19:26:09 +00:00
tabs.forEach(setTabSyntax);
};
command.on("init:startup", init);
command.on("init:restart", reset);
command.on("session:syntax", function(mode) {
editor.getSession().setMode("ace/mode/" + mode);
});
2013-08-22 06:35:14 +00:00
command.on("session:new-file", function() { addTab() });
2013-08-21 00:35:25 +00:00
command.on("session:open-file", openFile);
command.on("session:raise-tab", raiseTab);
2013-08-22 06:35:14 +00:00
command.on("session:save-file", function() { editor.getSession().save() });
command.on("session:save-file-as", function() { editor.getSession().save(true) });
command.on("session:close-tab", removeTab);
2013-09-01 04:21:21 +00:00
command.on("session:change-tab", switchTab);
2013-08-20 00:53:03 +00:00
command.on("session:open-settings-file", function(name) {
Settings.load(name, function() {
var data = JSON.stringify(Settings.get(name), null, 2);
var file = Settings.getAsFile(name);
addTab(data, file);
});
});
return {
addFile: addTab
}
2013-08-20 00:53:03 +00:00
});