haste-server/static/application.js

154 lines
3.7 KiB
JavaScript
Raw Normal View History

2011-11-18 16:49:00 +01:00
///// represents a single document
2011-11-18 16:17:41 +01:00
var heist_document = function() {
this.locked = false;
};
heist_document.prototype.save = function(data, callback) {
2011-11-18 21:18:38 +01:00
2011-11-18 16:17:41 +01:00
if (this.locked) {
return false;
}
2011-11-18 16:49:00 +01:00
2011-11-18 21:18:38 +01:00
this.data = data;
var _this = this;
2011-11-18 16:49:00 +01:00
$.ajax('/documents', {
type: 'post',
data: data,
dataType: 'json',
success: function(res) {
2011-11-18 21:18:38 +01:00
_this.locked = true;
2011-11-18 16:49:00 +01:00
var high = hljs.highlightAuto(data);
callback({
value: high.value,
uuid: res.uuid,
language: high.language
});
}
});
2011-11-18 16:17:41 +01:00
};
2011-11-18 16:49:00 +01:00
///// represents the paste application
2011-11-18 16:17:41 +01:00
var heist = function(appName) {
this.appName = appName;
this.$textarea = $('textarea');
this.$box = $('#box');
this.$code = $('#box code');
this.configureShortcuts();
};
// Set the page title - include the appName
heist.prototype.setTitle = function(ext) {
var title = ext ? this.appName + ' - ' + ext : this.appName;
document.title = title;
};
// Remove the current document (if there is one)
// and set up for a new one
heist.prototype.newDocument = function(ext) {
this.doc = new heist_document();
this.$box.hide();
2011-11-18 16:19:44 +01:00
this.setTitle();
2011-11-18 21:55:01 +01:00
window.history.pushState(null, this.appName, '/');
2011-11-18 16:17:41 +01:00
this.$textarea.val('').show().focus();
}
2011-11-18 21:18:38 +01:00
// Duplicate the current document - only if locked
heist.prototype.duplicateDocument = function() {
if (this.doc.locked) {
var currentData = this.doc.data;
this.newDocument();
this.$textarea.val(currentData);
}
};
2011-11-18 16:17:41 +01:00
// Lock the current document
heist.prototype.lockDocument = function() {
var _this = this;
this.doc.save(this.$textarea.val(), function(ret) {
if (ret) {
_this.$code.html(ret.value);
2011-11-18 16:49:00 +01:00
_this.setTitle(ret.language + '-' + ret.uuid);
2011-11-18 21:55:01 +01:00
window.history.pushState(null, _this.appName + '-' + ret.uuid, '/' + ret.uuid);
2011-11-18 16:17:41 +01:00
_this.$textarea.val('').hide();
_this.$box.show();
}
});
};
// Configure keyboard shortcuts for the textarea
heist.prototype.configureShortcuts = function() {
var _this = this;
this.$textarea.keyup(function(evt) {
2011-11-18 21:18:38 +01:00
// ^L or ^S for lock
if (evt.ctrlKey && (evt.keyCode === 76 || evt.keyCode === 83)) {
evt.preventDefault();
2011-11-18 16:17:41 +01:00
_this.lockDocument();
}
2011-11-18 21:18:38 +01:00
// ^N for new document
2011-11-18 16:19:44 +01:00
else if (evt.ctrlKey && evt.keyCode === 78) {
2011-11-18 21:18:38 +01:00
evt.preventDefault();
2011-11-18 16:19:44 +01:00
_this.newDocument();
}
2011-11-18 21:18:38 +01:00
// ^D for duplicate - only when locked
else if (_this.doc.locked && evt.ctrlKey && evt.keyCode === 68) {
evt.preventDefault();
_this.duplicateDocument();
}
2011-11-18 16:17:41 +01:00
});
};
2011-11-18 21:44:28 +01:00
// TODO handle not found gracefully
2011-11-18 16:17:41 +01:00
// TODO refuse to lock empty documents
// TODO support for browsers without pushstate
// TODO support for push state navigation
2011-11-18 16:49:00 +01:00
///// Tab behavior in the textarea - 2 spaces per tab
2011-11-18 16:17:41 +01:00
2011-11-18 16:49:00 +01:00
$(function() {
2011-11-18 16:17:41 +01:00
$('textarea').keydown(function(evt) {
if (evt.keyCode === 9) {
evt.preventDefault();
var myValue = ' ';
// http://stackoverflow.com/questions/946534/insert-text-into-textarea-with-jquery
// For browsers like Internet Explorer
if (document.selection) {
this.focus();
sel = document.selection.createRange();
sel.text = myValue;
this.focus();
}
// Mozilla and Webkit
else if (this.selectionStart || this.selectionStart == '0') {
var startPos = this.selectionStart;
var endPos = this.selectionEnd;
var scrollTop = this.scrollTop;
this.value = this.value.substring(0, startPos) + myValue +
this.value.substring(endPos,this.value.length);
this.focus();
this.selectionStart = startPos + myValue.length;
this.selectionEnd = startPos + myValue.length;
this.scrollTop = scrollTop;
}
else {
this.value += myValue;
this.focus();
}
}
});
});