summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-07-04 15:00:39 +0100
committerDouwe Maan <douwe@selenight.nl>2016-07-24 13:10:38 -0600
commitb550e6ee67ebfc1cfbbb7a77414f9fe05ffad419 (patch)
tree74bd51c0a48c7408644f9443dadb6139eacfdad7
parent662f5edd36b6910074df222474bab4ff4849d313 (diff)
downloadgitlab-ce-b550e6ee67ebfc1cfbbb7a77414f9fe05ffad419.tar.gz
Posts to rails to update note eventually
-rw-r--r--app/assets/javascripts/line_comments/application.js.coffee1
-rw-r--r--app/assets/javascripts/line_comments/components/resolve_all.js.coffee19
-rw-r--r--app/assets/javascripts/line_comments/components/resolve_btn.js.coffee20
-rw-r--r--app/assets/javascripts/line_comments/services/resolve.js.coffee19
-rw-r--r--app/assets/javascripts/line_comments/stores/comments.js.coffee5
-rw-r--r--app/assets/stylesheets/pages/notes.scss2
-rw-r--r--app/controllers/projects/notes_controller.rb5
-rw-r--r--app/views/projects/merge_requests/_show.html.haml3
-rw-r--r--app/views/projects/notes/_note.html.haml8
-rw-r--r--config/routes.rb1
10 files changed, 69 insertions, 14 deletions
diff --git a/app/assets/javascripts/line_comments/application.js.coffee b/app/assets/javascripts/line_comments/application.js.coffee
index cb9ff54ac05..b15b09e5fa2 100644
--- a/app/assets/javascripts/line_comments/application.js.coffee
+++ b/app/assets/javascripts/line_comments/application.js.coffee
@@ -1,5 +1,6 @@
#= require vue
#= require_directory ./stores
+#= require_directory ./services
#= require_directory ./components
$ =>
diff --git a/app/assets/javascripts/line_comments/components/resolve_all.js.coffee b/app/assets/javascripts/line_comments/components/resolve_all.js.coffee
index 76add1ed005..f8a56293d67 100644
--- a/app/assets/javascripts/line_comments/components/resolve_all.js.coffee
+++ b/app/assets/javascripts/line_comments/components/resolve_all.js.coffee
@@ -1,6 +1,7 @@
@ResolveAll = Vue.extend
data: ->
- { comments: CommentsStore.state }
+ comments: CommentsStore.state
+ loading: false
computed:
resolved: ->
resolvedCount = 0
@@ -10,8 +11,18 @@
commentsCount: ->
Object.keys(this.comments).length
buttonText: ->
- if this.resolved is this.commentsCount then 'Un-resolve all' else 'Resolve all'
+ if this.allResolved then 'Un-resolve all' else 'Resolve all'
+ allResolved: ->
+ this.resolved is this.commentsCount
methods:
updateAll: ->
- resolveAll = !(this.resolved is this.commentsCount)
- CommentsStore.updateAll(resolveAll)
+ ids = CommentsStore.getAllForState(this.allResolved)
+ this.$set('loading', true)
+
+ promise = if this.allResolved then ResolveService.resolveAll(ids) else ResolveService.resolveAll(ids)
+
+ promise
+ .done =>
+ CommentsStore.updateAll(!this.allResolved)
+ .always =>
+ this.$set('loading', false)
diff --git a/app/assets/javascripts/line_comments/components/resolve_btn.js.coffee b/app/assets/javascripts/line_comments/components/resolve_btn.js.coffee
index 5ade02c56f5..79f97aa354e 100644
--- a/app/assets/javascripts/line_comments/components/resolve_btn.js.coffee
+++ b/app/assets/javascripts/line_comments/components/resolve_btn.js.coffee
@@ -2,22 +2,32 @@
props:
noteId: Number
resolved: Boolean
- data: -> comments: CommentsStore.state
+ endpoint: String
+ data: ->
+ comments: CommentsStore.state
+ loading: false
computed:
buttonText: ->
if this.comments[this.noteId] then "Mark as un-resolved" else "Mark as resolved"
isResolved: -> this.comments[this.noteId]
methods:
updateTooltip: ->
- $(this.$el)
+ $(this.$els.button)
.tooltip('hide')
.tooltip('fixTitle')
resolve: ->
- CommentsStore.update(this.noteId, !this.comments[this.noteId])
+ this.$set('loading', true)
+ ResolveService
+ .resolve(this.endpoint, !this.isResolved)
+ .done =>
+ this.$set('loading', false)
+ CommentsStore.update(this.noteId, !this.isResolved)
- this.$nextTick this.updateTooltip
+ this.$nextTick this.updateTooltip
+ .always =>
+ this.$set('loading', false)
compiled: ->
- $(this.$el).tooltip()
+ $(this.$els.button).tooltip()
destroyed: ->
CommentsStore.delete(this.noteId)
created: ->
diff --git a/app/assets/javascripts/line_comments/services/resolve.js.coffee b/app/assets/javascripts/line_comments/services/resolve.js.coffee
new file mode 100644
index 00000000000..690fcad6232
--- /dev/null
+++ b/app/assets/javascripts/line_comments/services/resolve.js.coffee
@@ -0,0 +1,19 @@
+@ResolveService =
+ resolve: (endpoint, resolve) ->
+ $.ajax
+ data:
+ resolved: resolve
+ type: 'post'
+ url: endpoint
+ resolveAll: (ids) ->
+ $.ajax
+ data:
+ id: ids
+ type: 'get'
+ url: '/'
+ unResolveAll: (ids) ->
+ $.ajax
+ data:
+ id: ids
+ type: 'get'
+ url: '/'
diff --git a/app/assets/javascripts/line_comments/stores/comments.js.coffee b/app/assets/javascripts/line_comments/stores/comments.js.coffee
index ae44ab90290..9bea16d3de0 100644
--- a/app/assets/javascripts/line_comments/stores/comments.js.coffee
+++ b/app/assets/javascripts/line_comments/stores/comments.js.coffee
@@ -9,3 +9,8 @@
updateAll: (state) ->
for id,resolved of this.state
this.update(id, state) if resolved isnt state
+ getAllForState: (state) ->
+ ids = []
+ for id,resolved of this.state
+ ids.push(id) if resolved is state
+ ids
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss
index 540d134d77b..8a5d3215077 100644
--- a/app/assets/stylesheets/pages/notes.scss
+++ b/app/assets/stylesheets/pages/notes.scss
@@ -387,7 +387,7 @@ ul.notes {
.line-resolve-all {
padding: 10px;
border: 1px solid $border-color;
- border-radius: 2px;
+ border-radius: $border-radius-default;
.btn {
margin-right: 10px;
diff --git a/app/controllers/projects/notes_controller.rb b/app/controllers/projects/notes_controller.rb
index 766b7e9cf22..5ace460d02f 100644
--- a/app/controllers/projects/notes_controller.rb
+++ b/app/controllers/projects/notes_controller.rb
@@ -66,6 +66,11 @@ class Projects::NotesController < Projects::ApplicationController
end
end
+ def resolve
+ sleep 2
+ render nothing: true, status: 200
+ end
+
private
def note
diff --git a/app/views/projects/merge_requests/_show.html.haml b/app/views/projects/merge_requests/_show.html.haml
index be38341c6b2..765ff68aeb1 100644
--- a/app/views/projects/merge_requests/_show.html.haml
+++ b/app/views/projects/merge_requests/_show.html.haml
@@ -47,7 +47,8 @@
#resolve-all-app{ "v-cloak" => true }
%resolve-all{ "inline-template" => true }
.line-resolve-all{ "v-show" => "commentsCount > 0" }
- %button.btn.btn-gray{ type: "button", "aria-label" => "Resolve all", "@click" => "updateAll" }
+ %button.btn.btn-gray{ type: "button", "aria-label" => "Resolve all", "@click" => "updateAll", ":disabled" => "loading" }
+ = icon("spinner spin", "v-show" => "loading")
{{ buttonText }}
%span.line-resolve-text
{{ resolved }}/{{ commentsCount }} comments resolved
diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml
index 0c42296e492..57ffd6e5432 100644
--- a/app/views/projects/notes/_note.html.haml
+++ b/app/views/projects/notes/_note.html.haml
@@ -21,9 +21,11 @@
- if access and not note.system
%span.note-role.hidden-xs= access
- unless note.system
- %resolve-btn{ ":note-id" => note.id, ":resolved" => "false", "inline-template" => true, "v-ref:note_#{note.id}" => true }
- %button.note-action-button.line-resolve-btn{ type: "button", ":class" => "{ 'is-active': isResolved }", ":aria-label" => "buttonText", "@click" => "resolve", ":title" => "buttonText" }
- = icon("check")
+ %resolve-btn{ ":endpoint" => "'#{resolve_namespace_project_note_path(note.project.namespace, note.project, note)}'", ":note-id" => note.id, ":resolved" => "false", "inline-template" => true, "v-ref:note_#{note.id}" => true }
+ .note-action-button
+ = icon("spin spinner", "v-show" => "loading")
+ %button.line-resolve-btn{ type: "button", ":class" => "{ 'is-active': isResolved }", ":aria-label" => "buttonText", "@click" => "resolve", ":title" => "buttonText", "v-show" => "!loading", "v-el:button" => true }
+ = icon("check")
- if current_user and not note.system
= link_to '#', title: 'Award Emoji', class: 'note-action-button note-emoji-button js-add-award js-note-emoji', data: { position: 'right' } do
= icon('spinner spin')
diff --git a/config/routes.rb b/config/routes.rb
index 21f3585bacd..9be5d423052 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -828,6 +828,7 @@ Rails.application.routes.draw do
member do
post :toggle_award_emoji
delete :delete_attachment
+ post :resolve
end
end