Blame view
sources/apps/files_texteditor/js/editor.js
14.1 KB
|
d1bafeea1
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
function getFileExtension(file) {
var parts = file.split('.');
return parts[parts.length - 1];
}
function setSyntaxMode(ext) {
// Loads the syntax mode files and tells the editor
var filetype = new Array();
// add file extensions like this: filetype["extension"] = "filetype":
filetype["h"] = "c_cpp";
filetype["c"] = "c_cpp";
filetype["clj"] = "clojure";
filetype["coffee"] = "coffee"; // coffescript can be compiled to javascript
filetype["coldfusion"] = "cfc";
filetype["cpp"] = "c_cpp";
filetype["cs"] = "csharp";
filetype["css"] = "css";
filetype["groovy"] = "groovy";
filetype["haxe"] = "hx";
filetype["htm"] = "html";
filetype["html"] = "html";
|
|
6d9380f96
|
22 |
filetype["tt"] = "html"; |
|
d1bafeea1
|
23 24 25 26 27 |
filetype["java"] = "java"; filetype["js"] = "javascript"; filetype["jsm"] = "javascript"; filetype["json"] = "json"; filetype["latex"] = "latex"; |
|
6d9380f96
|
28 |
filetype["tex"] = "latex"; |
|
d1bafeea1
|
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
filetype["less"] = "less";
filetype["ly"] = "latex";
filetype["ily"] = "latex";
filetype["lua"] = "lua";
filetype["markdown"] = "markdown";
filetype["md"] = "markdown";
filetype["mdown"] = "markdown";
filetype["mdwn"] = "markdown";
filetype["mkd"] = "markdown";
filetype["ml"] = "ocaml";
filetype["mli"] = "ocaml";
filetype["pl"] = "perl";
filetype["php"] = "php";
filetype["powershell"] = "ps1";
filetype["py"] = "python";
filetype["rb"] = "ruby";
filetype["scad"] = "scad"; // seems to be something like 3d model files printed with e.g. reprap
filetype["scala"] = "scala";
filetype["scss"] = "scss"; // "sassy css"
filetype["sh"] = "sh";
filetype["sql"] = "sql";
filetype["svg"] = "svg";
filetype["textile"] = "textile"; // related to markdown
filetype["xml"] = "xml";
if (filetype[ext] != null) {
// Then it must be in the array, so load the custom syntax mode
// Set the syntax mode
OC.addScript('files_texteditor', 'vendor/ace/src-noconflict/mode-' + filetype[ext], function () {
var SyntaxMode = ace.require("ace/mode/" + filetype[ext]).Mode;
window.aceEditor.getSession().setMode(new SyntaxMode());
});
}
}
function showControls(dir, filename, writeable) {
// Loads the control bar at the top.
OC.Breadcrumb.show(dir, filename, '#');
// Load the new toolbar.
var editorbarhtml = '<div id="editorcontrols" style="display: none;">';
if (writeable) {
editorbarhtml += '<button id="editor_save">' + t('files_texteditor', 'Save') + '</button>';
}
editorbarhtml += '<label for="editorseachval">' + t('files_texteditor', 'Search');
editorbarhtml += '</label><input type="text" name="editorsearchval" id="editorsearchval">';
|
|
6d9380f96
|
74 75 |
editorbarhtml += '<button id="editor_close" class="icon-close svg"></button>'; editorbarhtml += '</div>'; |
|
d1bafeea1
|
76 77 78 |
$('#controls').append(editorbarhtml);
$('#editorcontrols').show();
|
|
6d9380f96
|
79 80 81 |
if (!OC.Util.hasSVGSupport()) {
OC.Util.replaceSVG($('#editorcontrols'));
}
|
|
d1bafeea1
|
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
}
function bindControlEvents() {
$('#content').on('click', '#editor_save', doFileSave);
$('#content').on('click', '#editor_close', hideFileEditor);
$('#content').on('keyup', '#editorsearchval', doSearch);
$('#content').on('click', '#clearsearchbtn', resetSearch);
$('#content').on('click', '#nextsearchbtn', nextSearchResult);
}
// returns true or false if the editor is in view or not
function editorIsShown() {
return is_editor_shown;
}
//resets the search
function resetSearch() {
$('#editorsearchval').val('');
$('#nextsearchbtn').remove();
$('#clearsearchbtn').remove();
window.aceEditor.gotoLine(0);
}
// moves the cursor to the next search resukt
function nextSearchResult() {
window.aceEditor.findNext();
}
// Performs the initial search
function doSearch() {
// check if search box empty?
if ($('#editorsearchval').val() == '') {
// Hide clear button
window.aceEditor.gotoLine(0);
$('#nextsearchbtn').remove();
$('#clearsearchbtn').remove();
} else {
// New search
// Reset cursor
window.aceEditor.gotoLine(0);
// Do search
window.aceEditor.find($('#editorsearchval').val(), {
backwards: false,
wrap: false,
caseSensitive: false,
wholeWord: false,
regExp: false
});
// Show next and clear buttons
// check if already there
if ($('#nextsearchbtn').length == 0) {
var nextbtnhtml = '<button id="nextsearchbtn">' + t('files_texteditor', 'Next') + '</button>';
var clearbtnhtml = '<button id="clearsearchbtn">' + t('files_texteditor', 'Clear') + '</button>';
$('#editorsearchval').after(nextbtnhtml).after(clearbtnhtml);
}
}
}
// Tries to save the file.
function doFileSave() {
if (editorIsShown()) {
// Changed contents?
if ($('#editor').attr('data-edited') == 'true') {
|
|
6d9380f96
|
144 145 |
$('#editor').attr('data-edited', 'false');
$('#editor').attr('data-saving', 'true');
|
|
d1bafeea1
|
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
// Get file path
var path = $('#editor').attr('data-dir') + '/' + $('#editor').attr('data-filename');
// Get original mtime
var mtime = $('#editor').attr('data-mtime');
// Show saving spinner
$("#editor_save").die('click', doFileSave);
$('#save_result').remove();
$('#editor_save').text(t('files_texteditor', 'Saving...'));
// Get the data
var filecontents = window.aceEditor.getSession().getValue();
// Send the data
$.post(OC.filePath('files_texteditor', 'ajax', 'savefile.php'), { filecontents: filecontents, path: path, mtime: mtime }, function (jsondata) {
if (jsondata.status != 'success') {
// Save failed
$('#editor_save').text(t('files_texteditor', 'Save'));
$('#notification').html(t('files_texteditor', 'Failed to save file'));
$('#notification').fadeIn();
|
|
6d9380f96
|
163 164 |
$('#editor').attr('data-edited', 'true');
$('#editor').attr('data-saving', 'false');
|
|
d1bafeea1
|
165 166 167 168 169 |
} else {
// Save OK
// Update mtime
$('#editor').attr('data-mtime', jsondata.data.mtime);
$('#editor_save').text(t('files_texteditor', 'Save'));
|
|
d1bafeea1
|
170 |
// Update titles |
|
6d9380f96
|
171 172 173 174 175 |
if($('#editor').attr('data-edited') != 'true') {
$('.crumb.last a').text($('#editor').attr('data-filename'));
document.title = $('#editor').attr('data-filename') + ' - ownCloud';
}
$('#editor').attr('data-saving', 'false');
|
|
d1bafeea1
|
176 |
} |
|
6d9380f96
|
177 |
$('#editor_save').live('click', doFileSave);
|
|
d1bafeea1
|
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
}, 'json');
}
}
giveEditorFocus();
};
// Gives the editor focus
function giveEditorFocus() {
window.aceEditor.focus();
};
// Loads the file editor. Accepts two parameters, dir and filename.
function showFileEditor(dir, filename) {
// Check if unsupported file format
if(FileActions.getCurrentMimeType() === 'text/rtf') {
// Download the file instead.
window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val());
} else {
if (!editorIsShown()) {
is_editor_shown = true;
// Delete any old editors
if ($('#notification').data('reopeneditor')) {
OC.Notification.hide();
}
$('#editor').remove();
// Loads the file editor and display it.
$('#content').append('<div id="editor_container"><div id="editor"></div></div>');
|
|
6d9380f96
|
205 206 207 |
// bigger text for better readability
document.getElementById('editor').style.fontSize = '16px';
|
|
d1bafeea1
|
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
var data = $.getJSON(
OC.filePath('files_texteditor', 'ajax', 'loadfile.php'),
{file: filename, dir: dir},
function (result) {
if (result.status === 'success') {
// Save mtime
$('#editor').attr('data-mtime', result.data.mtime);
// Initialise the editor
if (window.FileList){
FileList.setViewerMode(true);
enableEditorUnsavedWarning(true);
$('#fileList').on('changeDirectory.texteditor', textEditorOnChangeDirectory);
}
// Show the control bar
showControls(dir, filename, result.data.writeable);
// Update document title
$('body').attr('old_title', document.title);
document.title = filename + ' - ownCloud';
$('#editor').text(result.data.filecontents);
$('#editor').attr('data-dir', dir);
$('#editor').attr('data-filename', filename);
$('#editor').attr('data-edited', 'false');
window.aceEditor = ace.edit("editor");
aceEditor.setShowPrintMargin(false);
aceEditor.getSession().setUseWrapMode(true);
if ( ! result.data.writeable ) {
aceEditor.setReadOnly(true);
}
if (result.data.mime && result.data.mime === 'text/html') {
setSyntaxMode('html');
} else {
setSyntaxMode(getFileExtension(filename));
}
OC.addScript('files_texteditor', 'vendor/ace/src-noconflict/theme-clouds', function () {
window.aceEditor.setTheme("ace/theme/clouds");
});
window.aceEditor.getSession().on('change', function () {
if ($('#editor').attr('data-edited') != 'true') {
$('#editor').attr('data-edited', 'true');
|
|
6d9380f96
|
247 248 249 250 |
if($('#editor').attr('data-saving') != 'true') {
$('.crumb.last a').text($('.crumb.last a').text() + ' *');
document.title = $('#editor').attr('data-filename') + ' * - ownCloud';
}
|
|
d1bafeea1
|
251 252 253 254 255 256 257 258 259 260 261 |
}
});
// Add the ctrl+s event
window.aceEditor.commands.addCommand({
name: "save",
bindKey: {
win: "Ctrl-S",
mac: "Command-S",
sender: "editor"
},
exec: function () {
|
|
6d9380f96
|
262 263 264 |
if(!$('#editor').attr('data-saving')){
doFileSave();
}
|
|
d1bafeea1
|
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 |
}
});
giveEditorFocus();
} else {
// Failed to get the file.
OC.dialogs.alert(result.data.message, t('files_texteditor', 'An error occurred!'));
}
// End success
}
// End ajax
);
return data;
}
}
}
function enableEditorUnsavedWarning(enable) {
$(window).unbind('beforeunload.texteditor');
if (enable) {
$(window).bind('beforeunload.texteditor', function () {
if ($('#editor').attr('data-edited') == 'true') {
return t('files_texteditor', 'There are unsaved changes in the text editor');
}
});
}
}
function textEditorOnChangeDirectory(ev){
// if the directory is changed, it is usually due to browser back
// navigation. In this case, simply close the editor
hideFileEditor();
}
// Fades out the editor.
function hideFileEditor() {
$('#fileList').off('changeDirectory.texteditor');
enableEditorUnsavedWarning(false);
if (window.FileList){
// reload the directory content with the updated file size + thumbnail
// and also the breadcrumb
window.FileList.reload();
}
if ($('#editor').attr('data-edited') == 'true') {
// Hide, not remove
$('#editorcontrols,#editor_container').hide();
// Fade out editor
// Reset document title
document.title = $('body').attr('old_title');
FileList.setViewerMode(false);
$('#content table').show();
OC.Notification.show(t('files_texteditor', 'There were unsaved changes, click here to go back'));
$('#notification').data('reopeneditor', true);
is_editor_shown = false;
} else {
// Fade out editor
$('#editor_container, #editorcontrols').remove();
// Reset document title
document.title = $('body').attr('old_title');
FileList.setViewerMode(false);
$('#content table').show();
is_editor_shown = false;
}
}
// Reopens the last document
function reopenEditor() {
FileList.setViewerMode(true);
enableEditorUnsavedWarning(true);
$('#fileList').on('changeDirectory.texteditor', textEditorOnChangeDirectory);
$('#controls .last').not('#breadcrumb_file').removeClass('last');
$('#editor_container').show();
$('#editorcontrols').show();
OC.Breadcrumb.show($('#editor').attr('data-dir'), $('#editor').attr('data-filename') + ' *', '#');
document.title = $('#editor').attr('data-filename') + ' * - ownCloud';
is_editor_shown = true;
giveEditorFocus();
}
var is_editor_shown = false;
$(document).ready(function () {
if ($('#isPublic').val()){
// disable editor in public mode (not supported yet)
return;
}
if (typeof FileActions !== 'undefined') {
FileActions.register('text', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('text', 'Edit');
FileActions.register('application/xml', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/xml', 'Edit');
FileActions.register('application/x-empty', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/x-empty', 'Edit');
FileActions.register('inode/x-empty', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('inode/x-empty', 'Edit');
FileActions.register('application/x-php', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/x-php', 'Edit');
FileActions.register('application/javascript', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/javascript', 'Edit');
FileActions.register('application/x-pearl', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/x-pearl', 'Edit');
|
|
6d9380f96
|
378 379 380 381 |
FileActions.register('application/x-tex', 'Edit', OC.PERMISSION_READ, '', function (filename) {
showFileEditor($('#dir').val(), filename);
});
FileActions.setDefault('application/x-tex', 'Edit');
|
|
d1bafeea1
|
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
}
//legacy search result customization
OC.search.customResults.Text = function (row, item) {
var text = item.link.substr(item.link.indexOf('download') + 8);
var a = row.find('td.result a');
a.data('file', text);
a.attr('href', '#');
a.click(function () {
text = decodeURIComponent(text);
var pos = text.lastIndexOf('/');
var file = text.substr(pos + 1);
var dir = text.substr(0, pos);
showFileEditor(dir, file);
});
};
// customize file results when we can edit them
OC.search.customResults.file = function (row, item) {
var validFile = /(text\/*|application\/xml)/;
if (validFile.test(item.mime_type)) {
var a = row.find('td.result a');
a.data('file', item.name);
a.attr('href', '#');
a.click(function () {
showFileEditor(OC.dirname(item.path), item.name);
});
}
};
// Binds the file save and close editor events, and gotoline button
bindControlEvents();
$('#editor_container').remove();
$('#notification').click(function () {
if ($('#notification').data('reopeneditor')) {
reopenEditor();
OC.Notification.hide();
}
});
});
|