From 9d918b5ac83c1d491ea7ecfab5d3487580b099f6 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Tue, 4 Oct 2011 16:31:26 +0100 Subject: [PATCH] Updated control bar styling and save feedback. --- apps/files_texteditor/css/style.css | 9 ++++++--- apps/files_texteditor/js/editor.js | 30 ++++++++++++++++------------- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/apps/files_texteditor/css/style.css b/apps/files_texteditor/css/style.css index 3555119dffc..2a9066839c3 100644 --- a/apps/files_texteditor/css/style.css +++ b/apps/files_texteditor/css/style.css @@ -14,9 +14,12 @@ left: 160px; display: none; } -#editorbar{ +#editor_close{ margin-left: auto; - margin-right: 10px; + margin-right: 167px; display: block; - width: 300px; +} +#editor_save{ + margin-left: 7px; + float: left; } \ No newline at end of file diff --git a/apps/files_texteditor/js/editor.js b/apps/files_texteditor/js/editor.js index e6364a3ec6a..1823b5155a1 100644 --- a/apps/files_texteditor/js/editor.js +++ b/apps/files_texteditor/js/editor.js @@ -33,17 +33,17 @@ function setSyntaxMode(ext){ } } -function showControlBar(filename){ +function showControls(filename){ // Loads the control bar at the top. $('.actions,#file_action_panel').fadeOut('slow').promise().done(function() { // Load the new toolbar. - var html = '
'; - if($('#editorbar').length==0){ - $('#controls').append(html); - $('#editorbar').fadeIn('slow'); - } + var savebtnhtml = ''; + var html = ''; + $('#controls').append(html); + $('#editorbar').fadeIn('slow'); var breadcrumbhtml = '
'+filename+'
'; $('.actions').before(breadcrumbhtml); + $('.actions').before(savebtnhtml); }); } @@ -56,7 +56,13 @@ function bindControlEvents(){ hideFileEditor(); }); - $(document).bind('keydown', 'Ctrl+s', doFileSave); + $(window).keypress(function(event) { + if (!(event.which == 115 && (event.ctrlKey || event.metaKey)) && !(event.which == 19)) return true; + event.preventDefault(); + alert("Saved file"); + doFileSave(); + return false; + }); } function editorIsShown(){ @@ -78,7 +84,7 @@ function updateSessionFileHash(path){ function doFileSave(){ if(editorIsShown()){ - $('#editor_save').val(t('files_texteditor','Saving')+'...').css('background-color','#84E79F'); + $('#editor_save').val(t('files_texteditor','Saving')+'...'); var filecontents = window.aceEditor.getSession().getValue(); var dir = $('#editor').attr('data-dir'); var file = $('#editor').attr('data-filename'); @@ -90,7 +96,6 @@ function doFileSave(){ $.post(OC.filePath('files_texteditor','ajax','savefile.php'),{ filecontents: filecontents, file: file, dir: dir, force: 'true' },function(jsondata){ if(jsondata.status =='success'){ $('#editor_save').val(t('files_texteditor','Save')); - $('#editor_save').effect("highlight", {color:'#4BFF8D'}, 3000); } else { // Save error @@ -107,7 +112,6 @@ function doFileSave(){ else if(jsondata.status == 'success'){ // Success $('#editor_save').val(t('files_texteditor','Save')); - $('#editor_save').effect("highlight", {color:'#4BFF8D'}, 3000); } }, 'json'); giveEditorFocus(); @@ -127,7 +131,7 @@ function showFileEditor(dir,filename){ complete: function(data){ // Initialise the editor updateSessionFileHash(dir+'/'+filename); - showControlBar(filename); + showControls(filename); $('table').fadeOut('slow', function() { $('#editor').text(data.responseText); // encodeURIComponenet? @@ -150,12 +154,12 @@ function showFileEditor(dir,filename){ function hideFileEditor(){ // Fade out controls - $('#editorbar').fadeOut('slow'); + $('#editor_close').fadeOut('slow'); // Fade out breadcrumb $('.actions').prev().fadeOut('slow'); // Fade out editor $('#editor').fadeOut('slow', function(){ - $('#editorbar').remove(); + $('#editor_close').remove(); $('#editor').remove(); $('.actions').prev().remove(); var editorhtml = '
'; -- 2.39.5