diff options
author | git-marijus <mario@mariovavti.com> | 2018-04-09 13:18:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-09 13:18:09 +0200 |
commit | 9dc831f1ef5e59a91eeda2756842b7ac262e1ac6 (patch) | |
tree | 08faa8318ab53966279b6de5f3fb51dd595f6aac /view/js | |
parent | 6844d7c752a0d8614aa7490287d72a84a95b3a73 (diff) | |
parent | f9ec3c66ff1305ca0647454d27793ac5365f7f4a (diff) | |
download | volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.tar.gz volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.tar.bz2 volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.zip |
Merge pull request #1051 from anaqreon/auto-save
Auto-save comment and post text
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index e700c4e6e..c3c2c850f 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -166,6 +166,16 @@ function handle_comment_form(e) { $('#' + commentElm).addClass('expanded').removeAttr('placeholder'); $('#' + commentElm).attr('tabindex','9'); $('#' + submitElm).attr('tabindex','10'); + + if(auto_save_draft) { + var commentBody = localStorage.getItem("comment_body"); + if(commentBody && $('#' + commentElm).val() === '') { + $('#' + commentElm).val(commentBody); + } + } else { + localStorage.removeItem("comment_body"); + } + form.find(':not(:visible)').show(); } @@ -185,6 +195,30 @@ function handle_comment_form(e) { form.find(':not(.comment-edit-text)').hide(); } }); + + var commentSaveTimer = null; + var emptyCommentElm = form.find('.comment-edit-text').attr('id'); + $(document).on('focusout','#' + emptyCommentElm,function(e){ + if(commentSaveTimer) + clearTimeout(commentSaveTimer); + commentSaveChanges(true); + commentSaveTimer = null; + }); + + $(document).on('focusin','#' + emptyCommentElm,function(e){ + commentSaveTimer = setTimeout(function () { + commentSaveChanges(false); + },10000); + }); + + function commentSaveChanges(isFinal = false) { + if(auto_save_draft) { + localStorage.setItem("comment_body", $('#' + emptyCommentElm).val()); + if( !isFinal) { + commentSaveTimer = setTimeout(commentSaveChanges,10000); + } + } + } } function commentClose(obj, id) { @@ -1106,6 +1140,7 @@ function post_comment(id) { $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { + localStorage.removeItem("comment_body"); $("#comment-edit-preview-" + id).hide(); $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); |