BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
bd875692
Commit
bd875692
authored
Dec 19, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'show-inline-edit-btn' into 'master'
Show inline edit button for issues Closes #37474 See merge request gitlab-org/gitlab-ce!15812
parents
76f3ee2f
271ebe66
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
21 deletions
+10
-21
app.vue
app/assets/javascripts/issue_show/components/app.vue
+1
-1
title.vue
app/assets/javascripts/issue_show/components/title.vue
+1
-1
index.js
app/assets/javascripts/issue_show/index.js
+0
-7
show.html.haml
app/views/projects/issues/show.html.haml
+0
-5
show-inline-edit-btn.yml
changelogs/unreleased/show-inline-edit-btn.yml
+5
-0
issue_detail_spec.rb
spec/features/issues/issue_detail_spec.rb
+1
-1
issuable_templates_spec.rb
spec/features/projects/issuable_templates_spec.rb
+2
-6
No files found.
app/assets/javascripts/issue_show/components/app.vue
View file @
bd875692
...
@@ -32,7 +32,7 @@ export default {
...
@@ -32,7 +32,7 @@ export default {
showInlineEditButton
:
{
showInlineEditButton
:
{
type
:
Boolean
,
type
:
Boolean
,
required
:
false
,
required
:
false
,
default
:
fals
e
,
default
:
tru
e
,
},
},
showDeleteButton
:
{
showDeleteButton
:
{
type
:
Boolean
,
type
:
Boolean
,
...
...
app/assets/javascripts/issue_show/components/title.vue
View file @
bd875692
...
@@ -79,7 +79,7 @@
...
@@ -79,7 +79,7 @@
v-tooltip
v-tooltip
v-if=
"showInlineEditButton && canUpdate"
v-if=
"showInlineEditButton && canUpdate"
type=
"button"
type=
"button"
class=
"btn btn-default btn-edit btn-svg"
class=
"btn btn-default btn-edit btn-svg
js-issuable-edit
"
v-html=
"pencilIcon"
v-html=
"pencilIcon"
title=
"Edit title and description"
title=
"Edit title and description"
data-placement=
"bottom"
data-placement=
"bottom"
...
...
app/assets/javascripts/issue_show/index.js
View file @
bd875692
import
Vue
from
'vue'
;
import
Vue
from
'vue'
;
import
eventHub
from
'./event_hub'
;
import
issuableApp
from
'./components/app.vue'
;
import
issuableApp
from
'./components/app.vue'
;
import
'../vue_shared/vue_resource_interceptor'
;
import
'../vue_shared/vue_resource_interceptor'
;
...
@@ -7,12 +6,6 @@ document.addEventListener('DOMContentLoaded', () => {
...
@@ -7,12 +6,6 @@ document.addEventListener('DOMContentLoaded', () => {
const
initialDataEl
=
document
.
getElementById
(
'js-issuable-app-initial-data'
);
const
initialDataEl
=
document
.
getElementById
(
'js-issuable-app-initial-data'
);
const
props
=
JSON
.
parse
(
initialDataEl
.
innerHTML
.
replace
(
/"/g
,
'"'
));
const
props
=
JSON
.
parse
(
initialDataEl
.
innerHTML
.
replace
(
/"/g
,
'"'
));
$
(
'.js-issuable-edit'
).
on
(
'click'
,
(
e
)
=>
{
e
.
preventDefault
();
eventHub
.
$emit
(
'open.form'
);
});
return
new
Vue
({
return
new
Vue
({
el
:
document
.
getElementById
(
'js-issuable-app'
),
el
:
document
.
getElementById
(
'js-issuable-app'
),
components
:
{
components
:
{
...
...
app/views/projects/issues/show.html.haml
View file @
bd875692
...
@@ -39,8 +39,6 @@
...
@@ -39,8 +39,6 @@
=
icon
(
'caret-down'
)
=
icon
(
'caret-down'
)
.dropdown-menu.dropdown-menu-align-right.hidden-lg
.dropdown-menu.dropdown-menu-align-right.hidden-lg
%ul
%ul
-
if
can_update_issue
%li
=
link_to
'Edit'
,
edit_project_issue_path
(
@project
,
@issue
),
class:
'js-issuable-edit'
-
unless
current_user
==
@issue
.
author
-
unless
current_user
==
@issue
.
author
%li
=
link_to
'Report abuse'
,
new_abuse_report_path
(
user_id:
@issue
.
author
.
id
,
ref_url:
issue_url
(
@issue
))
%li
=
link_to
'Report abuse'
,
new_abuse_report_path
(
user_id:
@issue
.
author
.
id
,
ref_url:
issue_url
(
@issue
))
-
if
can_update_issue
-
if
can_update_issue
...
@@ -52,9 +50,6 @@
...
@@ -52,9 +50,6 @@
%li
.divider
%li
.divider
%li
=
link_to
'New issue'
,
new_project_issue_path
(
@project
),
title:
'New issue'
,
id:
'new_issue_link'
%li
=
link_to
'New issue'
,
new_project_issue_path
(
@project
),
title:
'New issue'
,
id:
'new_issue_link'
-
if
can_update_issue
=
link_to
'Edit'
,
edit_project_issue_path
(
@project
,
@issue
),
class:
'hidden-xs hidden-sm btn btn-grouped js-issuable-edit'
=
render
'shared/issuable/close_reopen_button'
,
issuable:
@issue
,
can_update:
can_update_issue
=
render
'shared/issuable/close_reopen_button'
,
issuable:
@issue
,
can_update:
can_update_issue
-
if
can_report_spam
-
if
can_report_spam
...
...
changelogs/unreleased/show-inline-edit-btn.yml
0 → 100644
View file @
bd875692
---
title
:
Move edit button to second row on issue page (and change it to a pencil icon)
merge_request
:
author
:
type
:
changed
spec/features/issues/issue_detail_spec.rb
View file @
bd875692
...
@@ -24,7 +24,7 @@ feature 'Issue Detail', :js do
...
@@ -24,7 +24,7 @@ feature 'Issue Detail', :js do
visit
project_issue_path
(
project
,
issue
)
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
wait_for_requests
click_link
'Edit'
page
.
find
(
'.js-issuable-edit'
).
click
fill_in
'issuable-title'
,
with:
'issue title'
fill_in
'issuable-title'
,
with:
'issue title'
click_button
'Save'
click_button
'Save'
wait_for_requests
wait_for_requests
...
...
spec/features/projects/issuable_templates_spec.rb
View file @
bd875692
...
@@ -32,9 +32,7 @@ feature 'issuable templates', :js do
...
@@ -32,9 +32,7 @@ feature 'issuable templates', :js do
message:
'added issue template'
,
message:
'added issue template'
,
branch_name:
'master'
)
branch_name:
'master'
)
visit
project_issue_path
project
,
issue
visit
project_issue_path
project
,
issue
page
.
within
(
'.js-issuable-actions'
)
do
page
.
find
(
'.js-issuable-edit'
).
click
click_on
'Edit'
end
fill_in
:'issuable-title'
,
with:
'test issue title'
fill_in
:'issuable-title'
,
with:
'test issue title'
end
end
...
@@ -77,9 +75,7 @@ feature 'issuable templates', :js do
...
@@ -77,9 +75,7 @@ feature 'issuable templates', :js do
message:
'added issue template'
,
message:
'added issue template'
,
branch_name:
'master'
)
branch_name:
'master'
)
visit
project_issue_path
project
,
issue
visit
project_issue_path
project
,
issue
page
.
within
(
'.js-issuable-actions'
)
do
page
.
find
(
'.js-issuable-edit'
).
click
click_on
'Edit'
end
fill_in
:'issuable-title'
,
with:
'test issue title'
fill_in
:'issuable-title'
,
with:
'test issue title'
fill_in
:'issue-description'
,
with:
prior_description
fill_in
:'issue-description'
,
with:
prior_description
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