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
Léo-Paul Géneau
gitlab-ce
Commits
28155c95
Commit
28155c95
authored
Mar 08, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dont show remove source branch checkbox when user cannot remove the branch
Closes #33264
parent
7734e85b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
99 additions
and
12 deletions
+99
-12
app/assets/javascripts/vue_merge_request_widget/components/source_branch_removal_status.vue
...equest_widget/components/source_branch_removal_status.vue
+34
-0
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_ready_to_merge.js
...uest_widget/components/states/mr_widget_ready_to_merge.js
+2
-2
app/assets/javascripts/vue_merge_request_widget/dependencies.js
...sets/javascripts/vue_merge_request_widget/dependencies.js
+3
-1
app/assets/javascripts/vue_merge_request_widget/mr_widget_options.js
...javascripts/vue_merge_request_widget/mr_widget_options.js
+8
-0
changelogs/unreleased/merge-request-widget-source-branch-improvements.yml
...eased/merge-request-widget-source-branch-improvements.yml
+6
-0
spec/features/merge_request/user_sees_merge_widget_spec.rb
spec/features/merge_request/user_sees_merge_widget_spec.rb
+1
-1
spec/javascripts/vue_mr_widget/components/states/mr_widget_ready_to_merge_spec.js
...widget/components/states/mr_widget_ready_to_merge_spec.js
+4
-8
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
+41
-0
No files found.
app/assets/javascripts/vue_merge_request_widget/components/source_branch_removal_status.vue
0 → 100644
View file @
28155c95
<
script
>
import
tooltip
from
'
../../vue_shared/directives/tooltip
'
;
import
{
__
}
from
'
../../locale
'
;
export
default
{
directives
:
{
tooltip
,
},
created
()
{
this
.
removesBranchText
=
__
(
'
<strong>Removes</strong> source branch
'
);
this
.
tooltipTitle
=
__
(
'
A user with write access to the source branch selected this option
'
);
},
};
</
script
>
<
template
>
<p
v-once
class=
"mr-info-list mr-links source-branch-removal-status append-bottom-0"
>
<span
class=
"status-text"
v-html=
"removesBranchText"
>
</span>
<i
v-tooltip
class=
"fa fa-question-circle"
:title=
"tooltipTitle"
:aria-label=
"tooltipTitle"
>
</i>
</p>
</
template
>
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_ready_to_merge.js
View file @
28155c95
...
...
@@ -93,7 +93,7 @@ export default {
||
this
.
mr
.
preventMerge
);
},
isRemoveSourceBranchButtonDisabled
()
{
return
this
.
isMergeButtonDisabled
||
!
this
.
mr
.
canRemoveSourceBranch
;
return
this
.
isMergeButtonDisabled
;
},
shouldShowSquashBeforeMerge
()
{
const
{
commitsCount
,
enableSquashBeforeMerge
}
=
this
.
mr
;
...
...
@@ -282,7 +282,7 @@ export default {
</span>
<div class="media-body-wrap space-children">
<template v-if="shouldShowMergeControls()">
<label>
<label
v-if="mr.canRemoveSourceBranch"
>
<input
id="remove-source-branch-input"
v-model="removeSourceBranch"
...
...
app/assets/javascripts/vue_merge_request_widget/dependencies.js
View file @
28155c95
...
...
@@ -40,7 +40,9 @@ export { default as MRWidgetStore } from './stores/mr_widget_store';
export
{
default
as
MRWidgetService
}
from
'
./services/mr_widget_service
'
;
export
{
default
as
eventHub
}
from
'
./event_hub
'
;
export
{
default
as
getStateKey
}
from
'
./stores/get_state_key
'
;
export
{
default
as
mrWidgetOptions
}
from
'
./mr_widget_options
'
;
export
{
default
as
stateMaps
}
from
'
./stores/state_maps
'
;
export
{
default
as
SquashBeforeMerge
}
from
'
./components/states/mr_widget_squash_before_merge
'
;
export
{
default
as
notify
}
from
'
../lib/utils/notify
'
;
export
{
default
as
SourceBranchRemovalStatus
}
from
'
./components/source_branch_removal_status.vue
'
;
export
{
default
as
mrWidgetOptions
}
from
'
./mr_widget_options
'
;
app/assets/javascripts/vue_merge_request_widget/mr_widget_options.js
View file @
28155c95
...
...
@@ -33,6 +33,7 @@ import {
stateMaps
,
SquashBeforeMerge
,
notify
,
SourceBranchRemovalStatus
,
}
from
'
./dependencies
'
;
import
{
setFavicon
}
from
'
../lib/utils/common_utils
'
;
...
...
@@ -69,6 +70,9 @@ export default {
shouldRenderDeployments
()
{
return
this
.
mr
.
deployments
.
length
;
},
shouldRenderSourceBranchRemovalStatus
()
{
return
!
this
.
mr
.
canRemoveSourceBranch
&&
this
.
mr
.
shouldRemoveSourceBranch
;
},
},
methods
:
{
createService
(
store
)
{
...
...
@@ -234,6 +238,7 @@ export default {
'
mr-widget-merge-when-pipeline-succeeds
'
:
MergeWhenPipelineSucceedsState
,
'
mr-widget-auto-merge-failed
'
:
AutoMergeFailed
,
'
mr-widget-rebase
'
:
RebaseState
,
SourceBranchRemovalStatus
,
},
template
:
`
<div class="mr-state-widget prepend-top-default">
...
...
@@ -259,6 +264,9 @@ export default {
v-if="shouldRenderRelatedLinks"
:state="mr.state"
:related-links="mr.relatedLinks" />
<source-branch-removal-status
v-if="shouldRenderSourceBranchRemovalStatus"
/>
</div>
<div
class="mr-widget-footer"
...
...
changelogs/unreleased/merge-request-widget-source-branch-improvements.yml
0 → 100644
View file @
28155c95
---
title
:
Fixes remove source branch checkbox being visible when user cannot remove the
branch
merge_request
:
author
:
type
:
changed
spec/features/merge_request/user_sees_merge_widget_spec.rb
View file @
28155c95
...
...
@@ -285,7 +285,7 @@ describe 'Merge request > User sees merge widget', :js do
end
it
'user cannot remove source branch'
do
expect
(
page
).
to
have_field
(
'remove-source-branch-input'
,
disabled:
true
)
expect
(
page
).
not_to
have_field
(
'remove-source-branch-input'
)
end
end
...
...
spec/javascripts/vue_mr_widget/components/states/mr_widget_ready_to_merge_spec.js
View file @
28155c95
...
...
@@ -517,13 +517,9 @@ describe('MRWidgetReadyToMerge', () => {
describe
(
'
Remove source branch checkbox
'
,
()
=>
{
describe
(
'
when user can merge but cannot delete branch
'
,
()
=>
{
it
(
'
isRemoveSourceBranchButtonDisabled should be true
'
,
()
=>
{
expect
(
vm
.
isRemoveSourceBranchButtonDisabled
).
toBe
(
true
);
});
it
(
'
should be disabled in the rendered output
'
,
()
=>
{
const
checkboxElement
=
vm
.
$el
.
querySelector
(
'
#remove-source-branch-input
'
);
expect
(
checkboxElement
.
getAttribute
(
'
disabled
'
)).
toBe
(
'
disabled
'
);
expect
(
checkboxElement
).
toBeNull
(
);
});
});
...
...
@@ -540,7 +536,7 @@ describe('MRWidgetReadyToMerge', () => {
it
(
'
should be enabled in rendered output
'
,
()
=>
{
const
checkboxElement
=
this
.
customVm
.
$el
.
querySelector
(
'
#remove-source-branch-input
'
);
expect
(
checkboxElement
.
getAttribute
(
'
disabled
'
))
.
toBeNull
();
expect
(
checkboxElement
).
not
.
toBeNull
();
});
});
});
...
...
@@ -549,12 +545,12 @@ describe('MRWidgetReadyToMerge', () => {
describe
(
'
when allowed to merge
'
,
()
=>
{
beforeEach
(()
=>
{
vm
=
createComponent
({
mr
:
{
isMergeAllowed
:
true
},
mr
:
{
isMergeAllowed
:
true
,
canRemoveSourceBranch
:
true
},
});
});
it
(
'
shows remove source branch checkbox
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.js-remove-source-branch-checkbox
'
)).
toBeDefined
();
expect
(
vm
.
$el
.
querySelector
(
'
.js-remove-source-branch-checkbox
'
)).
not
.
toBeNull
();
});
it
(
'
shows modify commit message button
'
,
()
=>
{
...
...
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
View file @
28155c95
...
...
@@ -81,6 +81,29 @@ describe('mrWidgetOptions', () => {
});
});
describe
(
'
shouldRenderSourceBranchRemovalStatus
'
,
()
=>
{
it
(
'
should return true when cannot remove source branch and branch will be removed
'
,
()
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
false
;
vm
.
mr
.
shouldRemoveSourceBranch
=
true
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
toBeTruthy
();
});
it
(
'
should return false when can remove source branch and branch will be removed
'
,
()
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
true
;
vm
.
mr
.
shouldRemoveSourceBranch
=
true
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
toBeFalsy
();
});
it
(
'
should return false when cannot remove source branch and branch will not be removed
'
,
()
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
false
;
vm
.
mr
.
shouldRemoveSourceBranch
=
false
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
toBeFalsy
();
});
});
describe
(
'
shouldRenderDeployments
'
,
()
=>
{
it
(
'
should return false for the initial data
'
,
()
=>
{
expect
(
vm
.
shouldRenderDeployments
).
toBeFalsy
();
...
...
@@ -379,4 +402,22 @@ describe('mrWidgetOptions', () => {
});
});
});
describe
(
'
rendering source branch removal status
'
,
()
=>
{
it
(
'
renders when user cannot remove branch and branch should be removed
'
,
(
done
)
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
false
;
vm
.
mr
.
shouldRemoveSourceBranch
=
true
;
vm
.
$nextTick
(()
=>
{
const
tooltip
=
vm
.
$el
.
querySelector
(
'
.fa-question-circle
'
);
expect
(
vm
.
$el
.
textContent
).
toContain
(
'
Removes source branch
'
);
expect
(
tooltip
.
getAttribute
(
'
data-original-title
'
)).
toBe
(
'
A user with write access to the source branch selected this option
'
,
);
done
();
});
});
});
});
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