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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
63144cd0
Commit
63144cd0
authored
Nov 12, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9820 from huacnlee/avoid-render-form-in-notes-list
Avoid render edit_form in each notes.
parents
8ab5df9d
19740871
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
24 deletions
+18
-24
app/assets/javascripts/notes.js.coffee
app/assets/javascripts/notes.js.coffee
+6
-7
app/controllers/projects/notes_controller.rb
app/controllers/projects/notes_controller.rb
+6
-1
app/views/projects/notes/_note.html.haml
app/views/projects/notes/_note.html.haml
+1
-4
app/views/projects/notes/_notes_with_form.html.haml
app/views/projects/notes/_notes_with_form.html.haml
+1
-1
app/views/projects/notes/edit.js.erb
app/views/projects/notes/edit.js.erb
+2
-0
config/routes.rb
config/routes.rb
+1
-1
features/steps/project/issues/issues.rb
features/steps/project/issues/issues.rb
+1
-1
spec/features/notes_on_merge_requests_spec.rb
spec/features/notes_on_merge_requests_spec.rb
+0
-6
spec/features/task_lists_spec.rb
spec/features/task_lists_spec.rb
+0
-3
No files found.
app/assets/javascripts/notes.js.coffee
View file @
63144cd0
...
...
@@ -29,7 +29,6 @@ class @Notes
$
(
document
).
on
"ajax:success"
,
"form.edit_note"
,
@
updateNote
# Edit note link
$
(
document
).
on
"click"
,
".js-note-edit"
,
@
showEditForm
$
(
document
).
on
"click"
,
".note-edit-cancel"
,
@
cancelEdit
# Reopen and close actions for Issue/MR combined with note form submit
...
...
@@ -67,7 +66,6 @@ class @Notes
$
(
document
).
off
"ajax:success"
,
".js-main-target-form"
$
(
document
).
off
"ajax:success"
,
".js-discussion-note-form"
$
(
document
).
off
"ajax:success"
,
"form.edit_note"
$
(
document
).
off
"click"
,
".js-note-edit"
$
(
document
).
off
"click"
,
".note-edit-cancel"
$
(
document
).
off
"click"
,
".js-note-delete"
$
(
document
).
off
"click"
,
".js-note-attachment-delete"
...
...
@@ -287,13 +285,14 @@ class @Notes
Adds a hidden div with the original content of the note to fill the edit note form with
if the user cancels
###
showEditForm
:
(
e
)
->
e
.
preventDefault
()
note
=
$
(
this
).
closest
(
".note"
)
showEditForm
:
(
note
,
formHTML
)
->
nodeText
=
note
.
find
(
".note-text"
);
nodeText
.
hide
()
note
.
find
(
'.note-edit-form'
).
remove
()
nodeText
.
after
(
formHTML
)
note
.
find
(
".note-body > .note-text"
).
hide
()
note
.
find
(
".note-header"
).
hide
()
base_form
=
note
.
find
(
".note-edit-form"
)
form
=
base_form
.
clone
().
insertAfter
(
base_form
)
form
=
note
.
find
(
".note-edit-form"
)
form
.
addClass
(
'current-note-edit-form gfm-form'
)
form
.
find
(
'.div-dropzone'
).
remove
()
...
...
app/controllers/projects/notes_controller.rb
View file @
63144cd0
...
...
@@ -3,7 +3,7 @@ class Projects::NotesController < Projects::ApplicationController
before_action
:authorize_read_note!
before_action
:authorize_create_note!
,
only:
[
:create
]
before_action
:authorize_admin_note!
,
only:
[
:update
,
:destroy
]
before_action
:find_current_user_notes
,
except:
[
:destroy
,
:delete_attachment
]
before_action
:find_current_user_notes
,
except:
[
:destroy
,
:
edit
,
:
delete_attachment
]
def
index
current_fetched_at
=
Time
.
now
.
to_i
...
...
@@ -29,6 +29,11 @@ class Projects::NotesController < Projects::ApplicationController
end
end
def
edit
@note
=
note
render
layout:
false
end
def
update
@note
=
Notes
::
UpdateService
.
new
(
project
,
current_user
,
note_params
).
execute
(
note
)
...
...
app/views/projects/notes/_note.html.haml
View file @
63144cd0
...
...
@@ -7,7 +7,7 @@
.note-header
-
if
note_editable?
(
note
)
.note-actions
=
link_to
'#'
,
title:
'Edit comment'
,
class:
'js-note-edit'
do
=
link_to
edit_namespace_project_note_path
(
note
.
project
.
namespace
,
note
.
project
,
note
),
title:
'Edit comment'
,
remote:
true
,
class:
'js-note-edit'
do
=
icon
(
'pencil-square-o'
)
=
link_to
namespace_project_note_path
(
note
.
project
.
namespace
,
note
.
project
,
note
),
title:
'Remove comment'
,
method: :delete
,
data:
{
confirm:
'Are you sure you want to remove this comment?'
},
remote:
true
,
class:
'js-note-delete danger'
do
...
...
@@ -59,9 +59,6 @@
.note-text
=
preserve
do
=
markdown
(
note
.
note
,
{
no_header_anchors:
true
})
-
unless
note
.
system?
-# System notes can't be edited
=
render
'projects/notes/edit_form'
,
note:
note
-
if
note
.
attachment
.
url
.note-attachment
...
...
app/views/projects/notes/_notes_with_form.html.haml
View file @
63144cd0
...
...
@@ -7,4 +7,4 @@
=
render
"projects/notes/form"
,
view:
params
[
:view
]
:javascript
new
Notes
(
"
#{
namespace_project_notes_path
(
namespace_id:
@project
.
namespace
,
target_id:
@noteable
.
id
,
target_type:
@noteable
.
class
.
name
.
underscore
)
}
"
,
#{
@notes
.
map
(
&
:id
).
to_json
}
,
#{
Time
.
now
.
to_i
}
,
"
#{
params
[
:view
]
}
"
)
window
.
_notes
=
new
Notes
(
"
#{
namespace_project_notes_path
(
namespace_id:
@project
.
namespace
,
target_id:
@noteable
.
id
,
target_type:
@noteable
.
class
.
name
.
underscore
)
}
"
,
#{
@notes
.
map
(
&
:id
).
to_json
}
,
#{
Time
.
now
.
to_i
}
,
"
#{
params
[
:view
]
}
"
)
app/views/projects/notes/edit.js.erb
0 → 100644
View file @
63144cd0
$note = $('.note-row-
<%=
@note
.
id
%>
:visible');
_notes.showEditForm($note, '
<%=
escape_javascript
(
render
(
'edit_form'
,
note:
@note
))
%>
');
config/routes.rb
View file @
63144cd0
...
...
@@ -658,7 +658,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:notes
,
only:
[
:index
,
:create
,
:destroy
,
:update
],
constraints:
{
id:
/\d+/
}
do
resources
:notes
,
constraints:
{
id:
/\d+/
}
do
member
do
delete
:delete_attachment
end
...
...
features/steps/project/issues/issues.rb
View file @
63144cd0
...
...
@@ -219,7 +219,7 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
end
step
'The code block should be unchanged'
do
expect
(
page
).
to
have_content
(
"
```
\n
Command [1]: /usr/local/bin/git , see [text](doc/text)
\n
```
"
)
expect
(
page
).
to
have_content
(
"
Command [1]: /usr/local/bin/git , see [text](doc/text)
"
)
end
step
'project \'Shop\' has issue \'Bugfix1\' with description: \'Description for issue1\''
do
...
...
spec/features/notes_on_merge_requests_spec.rb
View file @
63144cd0
...
...
@@ -65,12 +65,6 @@ describe 'Comments', feature: true do
end
describe
'when editing a note'
,
js:
true
do
it
'should contain the hidden edit form'
do
page
.
within
(
"#note_
#{
note
.
id
}
"
)
do
is_expected
.
to
have_css
(
'.note-edit-form'
,
visible:
false
)
end
end
describe
'editing the note'
do
before
do
find
(
'.note'
).
hover
...
...
spec/features/task_lists_spec.rb
View file @
63144cd0
...
...
@@ -51,7 +51,6 @@ feature 'Task Lists', feature: true do
expect
(
page
).
to
have_selector
(
container
)
expect
(
page
).
to
have_selector
(
"
#{
container
}
.wiki .task-list .task-list-item .task-list-item-checkbox"
)
expect
(
page
).
to
have_selector
(
"
#{
container
}
.js-task-list-field"
)
expect
(
page
).
to
have_selector
(
'form.js-issuable-update'
)
expect
(
page
).
to
have_selector
(
'a.btn-close'
)
end
...
...
@@ -90,7 +89,6 @@ feature 'Task Lists', feature: true do
expect
(
page
).
to
have_selector
(
'.note .js-task-list-container'
)
expect
(
page
).
to
have_selector
(
'.note .js-task-list-container .task-list .task-list-item .task-list-item-checkbox'
)
expect
(
page
).
to
have_selector
(
'.note .js-task-list-container .js-task-list-field'
)
end
it
'is only editable by author'
do
...
...
@@ -127,7 +125,6 @@ feature 'Task Lists', feature: true do
expect
(
page
).
to
have_selector
(
container
)
expect
(
page
).
to
have_selector
(
"
#{
container
}
.wiki .task-list .task-list-item .task-list-item-checkbox"
)
expect
(
page
).
to
have_selector
(
"
#{
container
}
.js-task-list-field"
)
expect
(
page
).
to
have_selector
(
'form.js-issuable-update'
)
expect
(
page
).
to
have_selector
(
'a.btn-close'
)
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