summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-19 12:34:14 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-19 12:34:14 +0200
commit5bf3a898edbbd0fc4f7a4557f6ffaea8ffabfbc7 (patch)
tree8e04d6b7e9f815e95343ce64de6c12e0998cf67b
parent1752c6dc8b755bc2fbff2757e8549521b0823048 (diff)
downloadgitlab-ce-5bf3a898edbbd0fc4f7a4557f6ffaea8ffabfbc7.tar.gz
Remove wall from basic notes logic
-rw-r--r--app/assets/javascripts/notes.js141
-rw-r--r--app/contexts/notes/load_context.rb13
-rw-r--r--app/views/notes/_reversed_notes_with_form.html.haml12
-rw-r--r--app/views/notes/create.js.haml7
-rw-r--r--app/views/notes/index.js.haml13
5 files changed, 3 insertions, 183 deletions
diff --git a/app/assets/javascripts/notes.js b/app/assets/javascripts/notes.js
index 4333d823178..2485f70797d 100644
--- a/app/assets/javascripts/notes.js
+++ b/app/assets/javascripts/notes.js
@@ -4,31 +4,16 @@ var NoteList = {
target_params: null,
target_id: 0,
target_type: null,
- top_id: 0,
- bottom_id: 0,
loading_more_disabled: false,
- reversed: false,
init: function(tid, tt, path) {
NoteList.notes_path = path + ".js";
NoteList.target_id = tid;
NoteList.target_type = tt;
- NoteList.reversed = $("#notes-list").is(".reversed");
NoteList.target_params = "target_type=" + NoteList.target_type + "&target_id=" + NoteList.target_id;
NoteList.setupMainTargetNoteForm();
- if(NoteList.reversed) {
- var form = $(".js-main-target-form");
- form.find(".note-form-actions").hide();
- var textarea = form.find(".js-note-text");
- textarea.css("height", "40px");
- textarea.on("focus", function(){
- textarea.css("height", "80px");
- form.find(".note-form-actions").show();
- });
- }
-
// get initial set of notes
NoteList.getContent();
@@ -344,128 +329,11 @@ var NoteList = {
* Replaces the content of #notes-list with the given html.
*/
setContent: function(newNoteIds, html) {
- NoteList.top_id = newNoteIds.first();
- NoteList.bottom_id = newNoteIds.last();
$("#notes-list").html(html);
-
- // for the wall
- if (NoteList.reversed) {
- // init infinite scrolling
- NoteList.initLoadMore();
-
- // init getting new notes
- NoteList.initRefreshNew();
- }
},
/**
- * Handle loading more notes when scrolling to the bottom of the page.
- * The id of the last note in the list is in NoteList.bottom_id.
- *
- * Set up refreshing only new notes after all notes have been loaded.
- */
-
-
- /**
- * Initializes loading more notes when scrolling to the bottom of the page.
- */
- initLoadMore: function() {
- $(document).endlessScroll({
- bottomPixels: 400,
- fireDelay: 1000,
- fireOnce:true,
- ceaseFire: function() {
- return NoteList.loading_more_disabled;
- },
- callback: function(i) {
- NoteList.getMore();
- }
- });
- },
-
- /**
- * Gets an additional set of notes.
- */
- getMore: function() {
- // only load more notes if there are no "new" notes
- $('.loading').show();
- $.ajax({
- url: NoteList.notes_path,
- data: NoteList.target_params + "&loading_more=1&" + (NoteList.reversed ? "before_id" : "after_id") + "=" + NoteList.bottom_id,
- complete: function(){ $('.js-notes-busy').removeClass("loading")},
- beforeSend: function() { $('.js-notes-busy').addClass("loading") },
- dataType: "script"
- });
- },
-
- /**
- * Called in response to getMore().
- * Append notes to #notes-list.
- */
- appendMoreNotes: function(newNoteIds, html) {
- var lastNewNoteId = newNoteIds.last();
- if(lastNewNoteId != NoteList.bottom_id) {
- NoteList.bottom_id = lastNewNoteId;
- $("#notes-list").append(html);
- }
- },
-
- /**
- * Called in response to getMore().
- * Disables loading more notes when scrolling to the bottom of the page.
- */
- finishedLoadingMore: function() {
- NoteList.loading_more_disabled = true;
-
- // make sure we are up to date
- NoteList.updateVotes();
- },
-
-
- /**
- * Handle refreshing and adding of new notes.
- *
- * New notes are all notes that are created after the site has been loaded.
- * The "old" notes are in #notes-list the "new" ones will be in #new-notes-list.
- * The id of the last "old" note is in NoteList.bottom_id.
- */
-
-
- /**
- * Initializes getting new notes every n seconds.
- *
- * Note: only used on wall.
- */
- initRefreshNew: function() {
- setInterval("NoteList.getNew()", 10000);
- },
-
- /**
- * Gets the new set of notes.
- *
- * Note: only used on wall.
- */
- getNew: function() {
- $.ajax({
- url: NoteList.notes_path,
- data: NoteList.target_params + "&loading_new=1&after_id=" + (NoteList.reversed ? NoteList.top_id : NoteList.bottom_id),
- dataType: "script"
- });
- },
-
- /**
- * Called in response to getNew().
- * Replaces the content of #new-notes-list with the given html.
- *
- * Note: only used on wall.
- */
- replaceNewNotes: function(newNoteIds, html) {
- $("#new-notes-list").html(html);
- NoteList.updateVotes();
- },
-
- /**
* Adds a single common note to #notes-list.
*/
appendNewNote: function(id, html) {
@@ -498,15 +366,6 @@ var NoteList = {
},
/**
- * Adds a single wall note to #new-notes-list.
- *
- * Note: only used on wall.
- */
- appendNewWallNote: function(id, html) {
- $("#new-notes-list").prepend(html);
- },
-
- /**
* Called in response the main target form has been successfully submitted.
*
* Removes any errors.
diff --git a/app/contexts/notes/load_context.rb b/app/contexts/notes/load_context.rb
index e3875e1d4e2..234e9ac3cdd 100644
--- a/app/contexts/notes/load_context.rb
+++ b/app/contexts/notes/load_context.rb
@@ -3,8 +3,6 @@ module Notes
def execute
target_type = params[:target_type]
target_id = params[:target_id]
- after_id = params[:after_id]
- before_id = params[:before_id]
@notes = case target_type
@@ -16,17 +14,6 @@ module Notes
project.merge_requests.find(target_id).mr_and_commit_notes.inc_author.fresh
when "snippet"
project.snippets.find(target_id).notes.fresh
- when "wall"
- # this is the only case, where the order is DESC
- project.notes.common.inc_author_project.order("created_at DESC, id DESC").limit(50)
- end
-
- @notes = if after_id
- @notes.where("id > ?", after_id)
- elsif before_id
- @notes.where("id < ?", before_id)
- else
- @notes
end
end
end
diff --git a/app/views/notes/_reversed_notes_with_form.html.haml b/app/views/notes/_reversed_notes_with_form.html.haml
deleted file mode 100644
index bb583b8c3b8..00000000000
--- a/app/views/notes/_reversed_notes_with_form.html.haml
+++ /dev/null
@@ -1,12 +0,0 @@
-.js-main-target-form
-- if can? current_user, :write_note, @project
- = render "notes/form"
-
-%ul#new-notes-list.reversed.notes
-%ul#notes-list.reversed.notes
-.notes-busy.js-notes-busy
-
-:javascript
- $(function(){
- NoteList.init("#{@target_id}", "#{@target_type}", "#{project_notes_path(@project)}");
- });
diff --git a/app/views/notes/create.js.haml b/app/views/notes/create.js.haml
index c573d406b73..43e79c69f11 100644
--- a/app/views/notes/create.js.haml
+++ b/app/views/notes/create.js.haml
@@ -2,10 +2,7 @@
var noteHtml = "#{escape_javascript(render "notes/note", note: @note)}";
- if note_for_main_target?(@note)
- - if @note.for_wall?
- NoteList.appendNewWallNote(#{@note.id}, noteHtml);
- - else
- NoteList.appendNewNote(#{@note.id}, noteHtml);
+ NoteList.appendNewNote(#{@note.id}, noteHtml);
- else
:plain
var firstDiscussionNoteHtml = "#{escape_javascript(render "notes/diff_notes_with_reply", notes: [@note])}";
@@ -18,4 +15,4 @@
- if note_for_main_target?(@note)
NoteList.errorsOnForm(errorsHtml);
- else
- NoteList.errorsOnForm(errorsHtml, "#{@note.discussion_id}"); \ No newline at end of file
+ NoteList.errorsOnForm(errorsHtml, "#{@note.discussion_id}");
diff --git a/app/views/notes/index.js.haml b/app/views/notes/index.js.haml
index f0826100fbf..826862b1a86 100644
--- a/app/views/notes/index.js.haml
+++ b/app/views/notes/index.js.haml
@@ -1,15 +1,4 @@
- unless @notes.blank?
var notesHtml = "#{escape_javascript(render 'notes/notes')}";
- new_note_ids = @notes.map(&:id)
- - if loading_more_notes?
- NoteList.appendMoreNotes(#{new_note_ids}, notesHtml);
-
- - elsif loading_new_notes?
- NoteList.replaceNewNotes(#{new_note_ids}, notesHtml);
-
- - else
- NoteList.setContent(#{new_note_ids}, notesHtml);
-
-- else
- - if loading_more_notes?
- NoteList.finishedLoadingMore();
+ NoteList.setContent(#{new_note_ids}, notesHtml);