Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
85fab13e
Commit
85fab13e
authored
Jun 17, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved manual todos
Based on feedback from !4502
parent
f011b86b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
85 additions
and
28 deletions
+85
-28
app/assets/javascripts/right_sidebar.js.coffee
app/assets/javascripts/right_sidebar.js.coffee
+10
-6
app/controllers/projects/todos_controller.rb
app/controllers/projects/todos_controller.rb
+13
-12
app/helpers/issuables_helper.rb
app/helpers/issuables_helper.rb
+3
-3
app/helpers/todos_helper.rb
app/helpers/todos_helper.rb
+1
-1
app/views/shared/issuable/_sidebar.html.haml
app/views/shared/issuable/_sidebar.html.haml
+5
-5
config/routes.rb
config/routes.rb
+1
-1
spec/controllers/projects/todo_controller_spec.rb
spec/controllers/projects/todo_controller_spec.rb
+42
-0
spec/features/issues/todo_spec.rb
spec/features/issues/todo_spec.rb
+10
-0
No files found.
app/assets/javascripts/right_sidebar.js.coffee
View file @
85fab13e
...
@@ -51,11 +51,15 @@ class @Sidebar
...
@@ -51,11 +51,15 @@ class @Sidebar
$this
=
$
(
e
.
currentTarget
)
$this
=
$
(
e
.
currentTarget
)
$todoLoading
=
$
(
'.js-issuable-todo-loading'
)
$todoLoading
=
$
(
'.js-issuable-todo-loading'
)
$btnText
=
$
(
'.js-issuable-todo-text'
,
$this
)
$btnText
=
$
(
'.js-issuable-todo-text'
,
$this
)
ajaxType
=
if
$this
.
attr
(
'data-id'
)
then
'PATCH'
else
'POST'
ajaxType
=
if
$this
.
attr
(
'data-delete-path'
)
then
'DELETE'
else
'POST'
ajaxUrlExtra
=
if
$this
.
attr
(
'data-id'
)
then
"/
#{
$this
.
attr
(
'data-id'
)
}
"
else
''
if
$this
.
attr
(
'data-delete-path'
)
url
=
"
#{
$this
.
attr
(
'data-delete-path'
)
}
"
else
url
=
"
#{
$this
.
data
(
'url'
)
}
"
$
.
ajax
(
$
.
ajax
(
url
:
"
#{
$this
.
data
(
'url'
)
}#{
ajaxUrlExtra
}
"
url
:
url
type
:
ajaxType
type
:
ajaxType
dataType
:
'json'
dataType
:
'json'
data
:
data
:
...
@@ -82,15 +86,15 @@ class @Sidebar
...
@@ -82,15 +86,15 @@ class @Sidebar
else
else
$todoPendingCount
.
removeClass
'hidden'
$todoPendingCount
.
removeClass
'hidden'
if
data
.
todo
?
if
data
.
delete_path
?
$btn
$btn
.
attr
'aria-label'
,
$btn
.
data
(
'mark-text'
)
.
attr
'aria-label'
,
$btn
.
data
(
'mark-text'
)
.
attr
'data-
id'
,
data
.
todo
.
id
.
attr
'data-
delete-path'
,
data
.
delete_path
$btnText
.
text
$btn
.
data
(
'mark-text'
)
$btnText
.
text
$btn
.
data
(
'mark-text'
)
else
else
$btn
$btn
.
attr
'aria-label'
,
$btn
.
data
(
'todo-text'
)
.
attr
'aria-label'
,
$btn
.
data
(
'todo-text'
)
.
removeAttr
'data-
id
'
.
removeAttr
'data-
delete-path
'
$btnText
.
text
$btn
.
data
(
'todo-text'
)
$btnText
.
text
$btn
.
data
(
'todo-text'
)
sidebarDropdownLoading
:
(
e
)
->
sidebarDropdownLoading
:
(
e
)
->
...
...
app/controllers/projects/todos_controller.rb
View file @
85fab13e
class
Projects::TodosController
<
Projects
::
ApplicationController
class
Projects::TodosController
<
Projects
::
ApplicationController
def
create
before_action
:authorize_read_issue!
,
only:
[
:create
]
todos
=
TodoService
.
new
.
mark_todo
(
issuable
,
current_user
)
render
json:
{
def
create
todo:
todos
,
todo
=
TodoService
.
new
.
mark_todo
(
issuable
,
current_user
)
count:
current_user
.
todos
.
pending
.
count
,
}
end
def
update
current_user
.
todos
.
find_by_id
(
params
[
:id
]).
update
(
state: :done
)
render
json:
{
render
json:
{
count:
current_user
.
todos
.
pending
.
count
,
todo:
todo
,
count:
TodosFinder
.
new
(
current_user
,
state: :pending
).
execute
.
count
,
delete_path:
dashboard_todo_path
(
todo
)
}
}
end
end
...
@@ -22,7 +17,13 @@ class Projects::TodosController < Projects::ApplicationController
...
@@ -22,7 +17,13 @@ class Projects::TodosController < Projects::ApplicationController
@issuable
||=
begin
@issuable
||=
begin
case
params
[
:issuable_type
]
case
params
[
:issuable_type
]
when
"issue"
when
"issue"
@project
.
issues
.
find
(
params
[
:issuable_id
])
issue
=
@project
.
issues
.
find
(
params
[
:issuable_id
])
if
can?
(
current_user
,
:read_issue
,
issue
)
issue
else
render_404
end
when
"merge_request"
when
"merge_request"
@project
.
merge_requests
.
find
(
params
[
:issuable_id
])
@project
.
merge_requests
.
find
(
params
[
:issuable_id
])
end
end
...
...
app/helpers/issuables_helper.rb
View file @
85fab13e
...
@@ -67,9 +67,9 @@ module IssuablesHelper
...
@@ -67,9 +67,9 @@ module IssuablesHelper
end
end
end
end
def
has
_todo
(
issuable
)
def
issuable
_todo
(
issuable
)
unless
current_user
.
nil?
if
issuable
current_user
.
todos
.
find_by
(
target
_id:
issuable
.
id
,
state: :pending
)
current_user
.
todos
.
find_by
(
target
:
issuable
,
state: :pending
)
end
end
end
end
...
...
app/helpers/todos_helper.rb
View file @
85fab13e
...
@@ -12,7 +12,7 @@ module TodosHelper
...
@@ -12,7 +12,7 @@ module TodosHelper
when
Todo
::
ASSIGNED
then
'assigned you'
when
Todo
::
ASSIGNED
then
'assigned you'
when
Todo
::
MENTIONED
then
'mentioned you on'
when
Todo
::
MENTIONED
then
'mentioned you on'
when
Todo
::
BUILD_FAILED
then
'The build failed for your'
when
Todo
::
BUILD_FAILED
then
'The build failed for your'
when
Todo
::
MARKED
then
'
marked this as a T
odo for'
when
Todo
::
MARKED
then
'
added a t
odo for'
end
end
end
end
...
...
app/views/shared/issuable/_sidebar.html.haml
View file @
85fab13e
-
todo
=
has
_todo
(
issuable
)
-
todo
=
issuable
_todo
(
issuable
)
%aside
.right-sidebar
{
class:
sidebar_gutter_collapsed_class
}
%aside
.right-sidebar
{
class:
sidebar_gutter_collapsed_class
}
.issuable-sidebar
.issuable-sidebar
-
can_edit_issuable
=
can?
(
current_user
,
:"admin_
#{
issuable
.
to_ability_name
}
"
,
@project
)
-
can_edit_issuable
=
can?
(
current_user
,
:"admin_
#{
issuable
.
to_ability_name
}
"
,
@project
)
...
@@ -9,12 +9,12 @@
...
@@ -9,12 +9,12 @@
%a
.gutter-toggle.pull-right.js-sidebar-toggle
{
role:
"button"
,
href:
"#"
,
aria:
{
label:
"Toggle sidebar"
}
}
%a
.gutter-toggle.pull-right.js-sidebar-toggle
{
role:
"button"
,
href:
"#"
,
aria:
{
label:
"Toggle sidebar"
}
}
=
sidebar_gutter_toggle_icon
=
sidebar_gutter_toggle_icon
-
if
current_user
-
if
current_user
%button
.btn.btn-default.issuable-header-btn.pull-right.js-issuable-todo
{
type:
"button"
,
aria:
{
label:
(
todo
.
nil?
?
"Add Todo"
:
"Mark Done"
)
},
data:
{
todo_text:
"Add Todo"
,
mark_text:
"Mark Done"
,
id:
(
todo
.
id
unless
todo
.
nil?
),
issuable:
issuable
.
id
,
issuable_type:
issuable
.
class
.
name
.
underscore
,
url:
namespace_project_todos_path
(
@project
.
namespace
,
@project
)
}
}
%button
.btn.btn-default.issuable-header-btn.pull-right.js-issuable-todo
{
type:
"button"
,
aria:
{
label:
(
todo
.
nil?
?
"Add Todo"
:
"Mark Done"
)
},
data:
{
todo_text:
"Add Todo"
,
mark_text:
"Mark Done"
,
id:
(
todo
.
id
unless
todo
.
nil?
),
issuable:
issuable
.
id
,
issuable_type:
issuable
.
class
.
name
.
underscore
,
url:
namespace_project_todos_path
(
@project
.
namespace
,
@project
)
,
delete_path:
(
dashboard_todo_path
(
todo
)
if
todo
)
}
}
%span
.js-issuable-todo-text
%span
.js-issuable-todo-text
-
if
todo
.
nil?
-
if
todo
Add Todo
-
else
Mark Done
Mark Done
-
else
Add Todo
=
icon
(
'spin spinner'
,
class:
'hidden js-issuable-todo-loading'
)
=
icon
(
'spin spinner'
,
class:
'hidden js-issuable-todo-loading'
)
=
form_for
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
,
issuable
],
remote:
true
,
format: :json
,
html:
{
class:
'issuable-context-form inline-update js-issuable-update'
}
do
|
f
|
=
form_for
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
,
issuable
],
remote:
true
,
format: :json
,
html:
{
class:
'issuable-context-form inline-update js-issuable-update'
}
do
|
f
|
...
...
config/routes.rb
View file @
85fab13e
...
@@ -797,7 +797,7 @@ Rails.application.routes.draw do
...
@@ -797,7 +797,7 @@ Rails.application.routes.draw do
end
end
end
end
resources
:todos
,
only:
[
:create
,
:update
]
,
constraints:
{
id:
/\d+/
}
resources
:todos
,
only:
[
:create
,
:update
]
resources
:uploads
,
only:
[
:create
]
do
resources
:uploads
,
only:
[
:create
]
do
collection
do
collection
do
...
...
spec/controllers/projects/todo_controller_spec.rb
0 → 100644
View file @
85fab13e
require
(
'spec_helper'
)
describe
Projects
::
TodosController
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
describe
'POST #create'
do
before
do
sign_in
(
user
)
project
.
team
<<
[
user
,
:developer
]
end
it
'should create todo for issue'
do
expect
do
post
(
:create
,
namespace_id:
project
.
namespace
.
path
,
project_id:
project
.
path
,
issuable_id:
issue
.
id
,
issuable_type:
"issue"
)
end
.
to
change
{
user
.
todos
.
count
}.
by
(
1
)
expect
(
response
.
status
).
to
eq
(
200
)
end
end
describe
'POST #create when not authorized'
do
before
do
sign_in
(
user
)
end
it
'should create todo for issue'
do
expect
do
post
(
:create
,
namespace_id:
project
.
namespace
.
path
,
project_id:
project
.
path
,
issuable_id:
issue
.
id
,
issuable_type:
"issue"
)
end
.
to
change
{
user
.
todos
.
count
}.
by
(
0
)
expect
(
response
.
status
).
to
eq
(
404
)
end
end
end
spec/features/issues/todo_spec.rb
View file @
85fab13e
...
@@ -20,6 +20,12 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
...
@@ -20,6 +20,12 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
page
.
within
'.header-content .todos-pending-count'
do
page
.
within
'.header-content .todos-pending-count'
do
expect
(
page
).
to
have_content
'1'
expect
(
page
).
to
have_content
'1'
end
end
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
page
.
within
'.header-content .todos-pending-count'
do
expect
(
page
).
to
have_content
'1'
end
end
end
it
'should mark a todo as done'
do
it
'should mark a todo as done'
do
...
@@ -29,5 +35,9 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
...
@@ -29,5 +35,9 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
end
end
expect
(
page
).
to
have_selector
(
'.todos-pending-count'
,
visible:
false
)
expect
(
page
).
to
have_selector
(
'.todos-pending-count'
,
visible:
false
)
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
expect
(
page
).
to
have_selector
(
'.todos-pending-count'
,
visible:
false
)
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment