Caret/js/sessions.js
2013-09-01 17:54:21 -07:00

187 lines
No EOL
4.8 KiB
JavaScript

define([
"editor",
"dialog",
"command",
"file",
"json!config/ace.json"
],
function(editor, dialog, command, File, cfg) {
var tabs = [];
var Session = ace.require("ace/edit_session").EditSession;
var syntax = document.find(".syntax");
cfg.modes.forEach(function(mode) {
var option = document.createElement("option");
option.innerHTML = mode.label;
option.value = mode.name;
syntax.append(option);
});
syntax.value = "javascript";
command.on("session:syntax", function(mode) {
editor.getSession().setMode("ace/mode/" + mode);
});
var renderTabs = function() {
var tabContainer = document.find(".tabs");
var contents = "";
var current = editor.getSession();
tabContainer.innerHTML = "";
tabs.forEach(function(tab, index) {
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);
});
}
var setTabSyntax = function(tab) {
tab.setTabSize(2);
tab.setUseWrapMode(true);
if (tab.file) {
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;
break;
}
}
}
};
var saveFile = function(as) {
if (this.modified || as) {
var content = this.getValue();
if (!this.file) {
var file = this.file = new File();
var self = this;
return file.open("save", function() {
file.write(content);
self.file = file;
self.fileName = file.entry.name;
self.modified = false;
renderTabs();
});
} else {
this.file.write(content);
}
this.modified = false;
renderTabs();
}
};
var addTab = function(contents, file) {
contents = contents || "";
var current = editor.getSession();
var session;
//reuse tab if opening a file into an empty tab
if (file && !current.file && !current.modified) {
session = current;
session.setValue(contents);
} else {
session = new Session(contents);
tabs.push(session);
editor.setSession(session);
}
session.fileName = file ? file.entry.name : "untitled.txt";
session.file = file;
setTabSyntax(session);
session.save = saveFile;
session.modified = false;
session.once("change", function() {
session.modified = true;
renderTabs();
});
editor.focus();
renderTabs();
};
var removeTab = function(index) {
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();
}
var next = index - 1;
if (next < 0) {
next = 0;
}
raiseTab(next);
}
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();
}
};
var raiseTab = function(index) {
var tab = tabs[index];
editor.setSession(tab);
renderTabs();
editor.focus();
};
var switchTab = function(shift) {
shift = shift || 1;
var current = editor.getSession();
var currentIndex = tabs.indexOf(current);
var shifted = (currentIndex + shift) % tabs.length;
raiseTab(shifted);
}
var openFile = function() {
var f = new File();
f.open(function(file) {
f.read(function(err, data) {
addTab(data, file);
});
});
};
addTab("");
renderTabs();
command.on("session:new-file", function() { addTab() });
command.on("session:open-file", openFile);
command.on("session:raise-tab", raiseTab);
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);
command.on("session:change-tab", switchTab);
});