2013-03-24 19:42:15 +00:00
|
|
|
function showError(msg) {
|
|
|
|
alert(msg);
|
|
|
|
}
|
2013-03-24 14:54:26 +00:00
|
|
|
|
2013-03-24 19:42:15 +00:00
|
|
|
var fileManager = (function($) {
|
2013-03-24 14:54:26 +00:00
|
|
|
|
|
|
|
var fileManager = {};
|
|
|
|
|
|
|
|
fileManager.init = function() {
|
2013-03-24 23:21:55 +00:00
|
|
|
fileManager.selectFile();
|
2013-03-24 14:54:26 +00:00
|
|
|
window.setInterval(function() {
|
|
|
|
fileManager.saveFile();
|
|
|
|
}, 5000);
|
2013-03-24 23:21:55 +00:00
|
|
|
$("#new-file").click(function() {
|
|
|
|
fileManager.saveFile();
|
|
|
|
fileManager.createFile();
|
|
|
|
fileManager.selectFile();
|
|
|
|
});
|
|
|
|
$("#file-title").click(function() {
|
|
|
|
$(this).hide();
|
|
|
|
$("#file-title-input").show().focus();
|
|
|
|
});
|
|
|
|
$("#file-title-input").blur(function() {
|
|
|
|
var title = $.trim($(this).val());
|
|
|
|
if(title) {
|
2013-03-25 12:03:22 +00:00
|
|
|
var fileIndex = localStorage["file.current"];
|
2013-03-24 23:21:55 +00:00
|
|
|
localStorage[fileIndex + ".title"] = title;
|
|
|
|
}
|
|
|
|
$(this).hide();
|
|
|
|
$("#file-title").show();
|
2013-03-25 12:03:22 +00:00
|
|
|
fileManager.updateFileTitleUI();
|
2013-03-24 23:21:55 +00:00
|
|
|
});
|
2013-03-24 14:54:26 +00:00
|
|
|
};
|
2013-03-24 23:21:55 +00:00
|
|
|
|
|
|
|
fileManager.selectFile = function() {
|
|
|
|
// If file system does not exist
|
|
|
|
if(!localStorage["file.count"]) {
|
|
|
|
localStorage.clear();
|
|
|
|
localStorage["file.count"] = 0;
|
|
|
|
}
|
|
|
|
this.updateFileTitleList();
|
|
|
|
// If no file create one
|
2013-03-25 12:03:22 +00:00
|
|
|
if(this.fileTitleList.length === 0) {
|
2013-03-24 23:21:55 +00:00
|
|
|
this.createFile();
|
|
|
|
this.updateFileTitleList();
|
|
|
|
}
|
|
|
|
// If no default file take first one
|
|
|
|
if(!localStorage["file.current"]) {
|
|
|
|
var fileCount = parseInt(localStorage["file.count"]);
|
|
|
|
for(var i=0; i<fileCount; i++) {
|
|
|
|
var fileIndex = "file." + i;
|
|
|
|
if(localStorage[fileIndex + ".title"]) {
|
|
|
|
localStorage["file.current"] = fileIndex;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Update the editor and the file title
|
|
|
|
var fileIndex = localStorage["file.current"];
|
|
|
|
$("#wmd-input").val(localStorage[fileIndex + ".content"]);
|
2013-03-25 12:03:22 +00:00
|
|
|
editor.refreshPreview();
|
|
|
|
this.updateFileTitleUI();
|
2013-03-24 14:54:26 +00:00
|
|
|
};
|
|
|
|
|
2013-03-24 23:21:55 +00:00
|
|
|
fileManager.createFile = function(title) {
|
|
|
|
if(!title) {
|
|
|
|
title = "New file";
|
|
|
|
}
|
|
|
|
var fileIndex = "file." + parseInt(localStorage["file.count"]);
|
|
|
|
localStorage[fileIndex + ".title"] = title;
|
|
|
|
localStorage[fileIndex + ".content"] = "";
|
|
|
|
localStorage["file.count"] = parseInt(localStorage["file.count"]) + 1;
|
|
|
|
localStorage["file.current"] = fileIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
fileManager.updateFileTitleList = function() {
|
|
|
|
var fileCount = parseInt(localStorage["file.count"]);
|
|
|
|
this.fileTitleList = [];
|
|
|
|
$("#file-selector").empty();
|
|
|
|
for(var i=0; i<fileCount; i++) {
|
|
|
|
var fileIndex = "file." + i;
|
|
|
|
var title = localStorage[fileIndex + ".title"];
|
|
|
|
if(title) {
|
|
|
|
this.fileTitleList[i] = title;
|
2013-03-25 12:03:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fileManager.updateFileTitleUI = function() {
|
|
|
|
// Update the editor and the file title
|
|
|
|
var fileIndex = localStorage["file.current"];
|
|
|
|
var title = localStorage[fileIndex + ".title"];
|
|
|
|
$("#file-title").text(title);
|
|
|
|
$("#file-title-input").val(title);
|
|
|
|
$("#file-selector").empty();
|
|
|
|
for(var i=0; i<this.fileTitleList.length; i++) {
|
|
|
|
title = this.fileTitleList[i];
|
|
|
|
if(title) {
|
|
|
|
var fileIndex1 = "file." + i;
|
2013-03-24 23:21:55 +00:00
|
|
|
var a = $("<a>").text(title);
|
|
|
|
var li = $("<li>").append(a);
|
2013-03-25 12:03:22 +00:00
|
|
|
if(fileIndex1 == fileIndex) {
|
2013-03-24 23:21:55 +00:00
|
|
|
li.addClass("disabled");
|
|
|
|
}
|
|
|
|
else {
|
2013-03-25 12:03:22 +00:00
|
|
|
a.attr("href", "javascript:void(0);")
|
|
|
|
.click((function(fileIndex) {
|
2013-03-24 23:21:55 +00:00
|
|
|
return function() {
|
|
|
|
localStorage["file.current"] = fileIndex;
|
|
|
|
fileManager.selectFile();
|
|
|
|
};
|
2013-03-25 12:03:22 +00:00
|
|
|
})(fileIndex1));
|
2013-03-24 23:21:55 +00:00
|
|
|
}
|
|
|
|
$("#file-selector").append(li);
|
|
|
|
}
|
|
|
|
}
|
2013-03-25 12:03:22 +00:00
|
|
|
};
|
2013-03-24 14:54:26 +00:00
|
|
|
|
|
|
|
fileManager.saveFile = function() {
|
2013-03-24 23:21:55 +00:00
|
|
|
var content = $("#wmd-input").val();
|
|
|
|
var fileIndex = localStorage["file.current"];
|
|
|
|
localStorage[fileIndex + ".content"] = content;
|
2013-03-24 19:42:15 +00:00
|
|
|
//insertFile(this.currentFile, this.content);
|
|
|
|
};
|
|
|
|
|
|
|
|
return fileManager;
|
|
|
|
})(jQuery);
|
|
|
|
|
|
|
|
var gdrive = (function($) {
|
|
|
|
|
|
|
|
var CLIENT_ID = '241271498917-jpto9lls9fqnem1e4h6ppds9uob8rpvu.apps.googleusercontent.com';
|
|
|
|
var SCOPES = [ 'https://www.googleapis.com/auth/drive.install',
|
|
|
|
'https://www.googleapis.com/auth/drive.file' ];
|
|
|
|
|
|
|
|
var driveEnabled = false;
|
|
|
|
|
|
|
|
var gdrive = {};
|
|
|
|
|
|
|
|
gdrive.init = function() {
|
|
|
|
function start() {
|
|
|
|
driveEnabled = true;
|
|
|
|
try {
|
|
|
|
var state = JSON.parse(decodeURI((/state=(.+?)(&|$)/
|
|
|
|
.exec(location.search) || [ , null ])[1]));
|
|
|
|
if (state.action == 'create') {
|
|
|
|
gdrive.createFile(state.folderId, fileManager.currentFile, fileManager.content);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function handleAuthResult(authResult) {
|
|
|
|
if (authResult && !authResult.error) {
|
|
|
|
$("#drive-link").hide();
|
|
|
|
gapi.client.load('drive', 'v2', function() {
|
|
|
|
start();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$("#drive-link").click(
|
|
|
|
function() {
|
|
|
|
gapi.auth.authorize({ 'client_id' : CLIENT_ID,
|
|
|
|
'scope' : SCOPES, 'immediate' : false }, handleAuthResult);
|
|
|
|
});
|
|
|
|
gapi.auth.authorize({ 'client_id' : CLIENT_ID, 'scope' : SCOPES,
|
|
|
|
'immediate' : true }, handleAuthResult);
|
2013-03-24 14:54:26 +00:00
|
|
|
};
|
|
|
|
|
2013-03-24 19:42:15 +00:00
|
|
|
gdrive.createFile = function(folderId, title, content) {
|
|
|
|
const boundary = '-------314159265358979323846';
|
|
|
|
const delimiter = "\r\n--" + boundary + "\r\n";
|
|
|
|
const close_delim = "\r\n--" + boundary + "--";
|
|
|
|
|
|
|
|
var contentType = 'text/x-markdown';
|
|
|
|
var metadata = { 'title' : title, 'mimeType' : contentType, 'parents' : [ { 'kind' : 'drive#fileLink', 'id' : folderId } ] };
|
|
|
|
|
|
|
|
var base64Data = btoa(content);
|
|
|
|
var multipartRequestBody = delimiter
|
|
|
|
+ 'Content-Type: application/json\r\n\r\n'
|
|
|
|
+ JSON.stringify(metadata) + delimiter + 'Content-Type: '
|
|
|
|
+ contentType + '\r\n' + 'Content-Transfer-Encoding: base64\r\n'
|
|
|
|
+ '\r\n' + base64Data + close_delim;
|
|
|
|
|
|
|
|
var request = gapi.client.request({
|
|
|
|
'path' : '/upload/drive/v2/files',
|
|
|
|
'method' : 'POST',
|
|
|
|
'params' : { 'uploadType' : 'multipart', },
|
|
|
|
'headers' : { 'Content-Type' : 'multipart/mixed; boundary="'
|
|
|
|
+ boundary + '"', }, 'body' : multipartRequestBody, });
|
2013-03-24 20:30:06 +00:00
|
|
|
request.execute(function(file) {
|
|
|
|
console.log(file);
|
|
|
|
});
|
2013-03-24 19:42:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return gdrive;
|
|
|
|
})(jQuery);
|
|
|
|
|
2013-03-25 12:03:22 +00:00
|
|
|
var converter;
|
|
|
|
var editor;
|
|
|
|
|
2013-03-24 19:42:15 +00:00
|
|
|
(function($) {
|
|
|
|
|
|
|
|
$(function() {
|
2013-03-25 12:03:22 +00:00
|
|
|
converter = Markdown.getSanitizingConverter();
|
|
|
|
editor = new Markdown.Editor(converter);
|
|
|
|
editor.run();
|
|
|
|
|
2013-03-24 19:42:15 +00:00
|
|
|
$(window).resize(resize);
|
|
|
|
resize();
|
|
|
|
|
|
|
|
if (typeof (Storage) !== "undefined") {
|
|
|
|
fileManager.init();
|
|
|
|
} else {
|
|
|
|
showError("Web storage is not available");
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2013-03-24 14:54:26 +00:00
|
|
|
function resize() {
|
|
|
|
$("#wmd-input").width($(window).width() / 2 - 60).height(
|
|
|
|
$(window).height() - 70);
|
|
|
|
$("#wmd-preview").width($(window).width() / 2 - 60).height(
|
|
|
|
$(window).height() - 100);
|
2013-03-24 19:42:15 +00:00
|
|
|
};
|
2013-03-24 14:54:26 +00:00
|
|
|
|
|
|
|
})(jQuery);
|