notes.kaplon.us/views/index.hbs

114 lines
3.9 KiB
Handlebars
Raw Normal View History

2016-02-16 17:52:38 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-10-02 15:24:52 -04:00
<title>Jody's Notes</title>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
2016-02-16 17:52:38 -05:00
<link rel="stylesheet" href="lib/codemirror.css">
2016-05-27 13:39:49 -04:00
<link rel="stylesheet" href="addon/dialog/dialog.css">
2016-02-16 17:52:38 -05:00
<script src="lib/codemirror.js"></script>
2016-10-05 13:59:59 -04:00
<script src="addon/selection/active-line.js"></script>
2016-05-27 13:39:49 -04:00
<script src="addon/dialog/dialog.js"></script>
<script src="addon/search/searchcursor.js"></script>
2016-02-16 17:52:38 -05:00
<script src="mode/markdown/markdown.js"></script>
<script src="addon/edit/matchbrackets.js"></script>
2016-02-16 17:52:38 -05:00
<script src="keymap/vim.js"></script>
2016-11-09 11:14:32 -05:00
<script src="https://cdn.socket.io/socket.io-1.4.5.js"></script>
2016-02-16 17:52:38 -05:00
<style type="text/css">
html, body { height: 100%; margin: 0; padding: 0; }
.wrap {
position: relative;
height: 100%;
background: #eee;
padding: 15px;
box-sizing: border-box;
}
.border {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #999;
position: relative;
height: 100%;
padding: 1px;
}
2016-02-16 17:52:38 -05:00
.CodeMirror {
height: 96%;
2016-02-16 17:52:38 -05:00
}
</style>
2016-10-17 14:28:29 -04:00
<!-- favicon design by Rockicon of thenounproject.com -->
2016-02-16 17:52:38 -05:00
</head>
<body>
<div class=wrap>
<div class=border>
<!-- <textarea id="editor" name="editor">{{{notetxt}}}</textarea> -->
<textarea id="editor" name="editor"></textarea>
</div>
</div>
2016-02-16 17:52:38 -05:00
<script>
var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
mode: "markdown",
lineNumbers: "true",
keyMap: "vim",
matchBrackets: true,
2016-05-27 13:39:49 -04:00
showCursorWhenSelecting: true,
viewportMargin: Infinity,
indentUnit: 4,
styleActiveLine: true,
autofocus: true
2016-02-16 17:52:38 -05:00
});
2016-05-27 13:39:49 -04:00
// Add my .vimrc stuff.
CodeMirror.Vim.map('jj', '<Esc>', 'insert')
// Hacked semi-colon/colon swap remap into /assets/keymap/vim.js...kind of a heavy hammer might bite me later.
// ...and it's already confused me later the same day. I deleted ~/notes.kaplon.us/CodeMirror w/out realizing I'd symlinked it into /assets!
// This no worky, there's no concept of <leader> in CodeMirror, but i was hoping this would work-around it.
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
2016-11-09 11:14:32 -05:00
CodeMirror.commands.save = function(){
//alert("Saving");
var socket = io();
socket.emit('cm-save', 'codemirror save event');
}
2016-02-16 17:52:38 -05:00
var socket = io();
//socket.on('server event', function(msg){
//console.log(msg);
//});
socket.on('sending allNotes', function(msg){
//console.log(msg);
editor.getDoc().setValue(msg);
});
var userKeypress = false;
document.onkeydown = function(){ userKeypress = true; };
2016-02-16 17:52:38 -05:00
var typingTimer;
editor.on("changes", function() {
if (!userKeypress) { return; }; // Do nothing if no keys hit yet, avoids infinite loop since 'changes' event fires after initial websocket content loading.
2016-02-16 17:52:38 -05:00
clearTimeout(typingTimer);
typingTimer = setTimeout(
function() {
2016-05-27 13:39:49 -04:00
//console.log(editor.getValue());
//var request = new XMLHttpRequest();
//request.onreadystatechange = function () {
//var DONE = this.DONE || 4;
//if (this.readyState === DONE){
//console.log('ajax is done.');
//}
//};
//request.open('POST', '/', true);
//request.send(editor.getValue());
var socket = io();
socket.emit('sending allNotes', editor.getValue());
2016-02-16 17:52:38 -05:00
},
2000
);
});
</script>
</body>
</html>