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
f09118bd
Commit
f09118bd
authored
Jul 27, 2020
by
Kyle Wiebers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch '30769-foss-ee-protected-branches' into 'master'"
This reverts merge request !37499
parent
fe93883e
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
473 additions
and
332 deletions
+473
-332
app/assets/javascripts/pages/projects/settings/repository/form.js
...ts/javascripts/pages/projects/settings/repository/form.js
+1
-1
app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js
...ts/protected_branches/protected_branch_access_dropdown.js
+28
-0
app/assets/javascripts/protected_branches/protected_branch_create.js
...javascripts/protected_branches/protected_branch_create.js
+24
-85
app/assets/javascripts/protected_branches/protected_branch_edit.js
...s/javascripts/protected_branches/protected_branch_edit.js
+42
-129
app/assets/javascripts/protected_branches/protected_branch_edit_list.js
...ascripts/protected_branches/protected_branch_edit_list.js
+0
-1
ee/app/assets/javascripts/pages/projects/settings/repository/show/index.js
...ascripts/pages/projects/settings/repository/show/index.js
+4
-3
ee/app/assets/javascripts/projects/settings/access_dropdown.js
...p/assets/javascripts/projects/settings/access_dropdown.js
+66
-82
ee/app/assets/javascripts/projects/settings/constants.js
ee/app/assets/javascripts/projects/settings/constants.js
+0
-0
ee/app/assets/javascripts/protected_branches/constants.js
ee/app/assets/javascripts/protected_branches/constants.js
+0
-0
ee/app/assets/javascripts/protected_branches/index.js
ee/app/assets/javascripts/protected_branches/index.js
+2
-2
ee/app/assets/javascripts/protected_branches/protected_branch_create.js
...javascripts/protected_branches/protected_branch_create.js
+124
-0
ee/app/assets/javascripts/protected_branches/protected_branch_edit.js
...s/javascripts/protected_branches/protected_branch_edit.js
+159
-0
ee/app/assets/javascripts/protected_branches/protected_branch_edit_list.js
...ascripts/protected_branches/protected_branch_edit_list.js
+1
-2
ee/app/assets/javascripts/protected_environments/protected_environment_create.js
...ts/protected_environments/protected_environment_create.js
+1
-1
ee/app/assets/javascripts/protected_environments/protected_environment_edit.js
...ipts/protected_environments/protected_environment_edit.js
+1
-1
ee/app/assets/javascripts/protected_tags/protected_tag_create.js
...assets/javascripts/protected_tags/protected_tag_create.js
+1
-1
ee/app/assets/javascripts/protected_tags/protected_tag_edit.js
...p/assets/javascripts/protected_tags/protected_tag_edit.js
+1
-1
ee/app/views/projects/protected_branches/_update_protected_branch.html.haml
...cts/protected_branches/_update_protected_branch.html.haml
+10
-10
ee/spec/frontend/projects/settings/access_dropdown_spec.js
ee/spec/frontend/projects/settings/access_dropdown_spec.js
+2
-2
ee/spec/frontend/protected_branches/protected_branch_edit_spec.js
...frontend/protected_branches/protected_branch_edit_spec.js
+2
-2
spec/support/protected_branch_helpers.rb
spec/support/protected_branch_helpers.rb
+0
-5
spec/support/shared_examples/features/protected_branches_access_control_ce_shared_examples.rb
...s/protected_branches_access_control_ce_shared_examples.rb
+4
-4
No files found.
app/assets/javascripts/pages/projects/settings/repository/form.js
View file @
f09118bd
...
...
@@ -14,7 +14,7 @@ export default () => {
new
ProtectedTagEditList
();
initDeployKeys
();
initSettingsPanels
();
new
ProtectedBranchCreate
(
{
hasLicense
:
false
}
);
new
ProtectedBranchCreate
();
new
ProtectedBranchEditList
();
new
DueDateSelectors
();
fileUpload
(
'
.js-choose-file
'
,
'
.js-object-map-input
'
);
...
...
app/assets/javascripts/protected_branches/protected_branch_access_dropdown.js
0 → 100644
View file @
f09118bd
import
{
__
}
from
'
~/locale
'
;
export
default
class
ProtectedBranchAccessDropdown
{
constructor
(
options
)
{
this
.
options
=
options
;
this
.
initDropdown
();
}
initDropdown
()
{
const
{
$dropdown
,
data
,
onSelect
}
=
this
.
options
;
$dropdown
.
glDropdown
({
data
,
selectable
:
true
,
inputId
:
$dropdown
.
data
(
'
inputId
'
),
fieldName
:
$dropdown
.
data
(
'
fieldName
'
),
toggleLabel
(
item
,
$el
)
{
if
(
$el
.
is
(
'
.is-active
'
))
{
return
item
.
text
;
}
return
__
(
'
Select
'
);
},
clicked
(
options
)
{
options
.
e
.
preventDefault
();
onSelect
();
},
});
}
}
app/assets/javascripts/protected_branches/protected_branch_create.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
AccessDropdown
from
'
~/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
AccessorUtilities
from
'
~/lib/utils/accessor
'
;
import
Flash
from
'
~/flash
'
;
import
CreateItemDropdown
from
'
~/create_item_dropdown
'
;
import
{
ACCESS_LEVELS
,
LEVEL_TYPES
}
from
'
./constants
'
;
import
ProtectedBranchAccessDropdown
from
'
./protected_branch_access_dropdown
'
;
import
CreateItemDropdown
from
'
../create_item_dropdown
'
;
import
AccessorUtilities
from
'
../lib/utils/accessor
'
;
import
{
__
}
from
'
~/locale
'
;
export
default
class
ProtectedBranchCreate
{
constructor
(
options
)
{
this
.
hasLicense
=
options
.
hasLicense
;
constructor
()
{
this
.
$form
=
$
(
'
.js-new-protected-branch
'
);
this
.
isLocalStorageAvailable
=
AccessorUtilities
.
isLocalStorageAccessSafe
();
this
.
currentProjectUserDefaults
=
{};
this
.
buildDropdowns
();
this
.
$codeOwnerToggle
=
this
.
$form
.
find
(
'
.js-code-owner-toggle
'
);
this
.
bindEvents
();
}
bindEvents
()
{
if
(
this
.
hasLicense
)
{
this
.
$codeOwnerToggle
.
on
(
'
click
'
,
this
.
onCodeOwnerToggleClick
.
bind
(
this
));
}
this
.
$form
.
on
(
'
submit
'
,
this
.
onFormSubmit
.
bind
(
this
));
}
onCodeOwnerToggleClick
()
{
this
.
$codeOwnerToggle
.
toggleClass
(
'
is-checked
'
);
}
buildDropdowns
()
{
const
$allowedToMergeDropdown
=
this
.
$form
.
find
(
'
.js-allowed-to-merge
'
);
const
$allowedToPushDropdown
=
this
.
$form
.
find
(
'
.js-allowed-to-push
'
);
const
$protectedBranchDropdown
=
this
.
$form
.
find
(
'
.js-protected-branch-select
'
);
// Cache callback
this
.
onSelectCallback
=
this
.
onSelect
.
bind
(
this
);
// Allowed to Merge dropdown
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
]
=
new
AccessDropdown
({
this
.
protectedBranchMergeAccessDropdown
=
new
ProtectedBranch
AccessDropdown
({
$dropdown
:
$allowedToMergeDropdown
,
accessLevelsD
ata
:
gon
.
merge_access_levels
,
d
ata
:
gon
.
merge_access_levels
,
onSelect
:
this
.
onSelectCallback
,
accessLevel
:
ACCESS_LEVELS
.
MERGE
,
hasLicense
:
this
.
hasLicense
,
});
// Allowed to Push dropdown
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
]
=
new
AccessDropdown
({
this
.
protectedBranchPushAccessDropdown
=
new
ProtectedBranch
AccessDropdown
({
$dropdown
:
$allowedToPushDropdown
,
accessLevelsD
ata
:
gon
.
push_access_levels
,
d
ata
:
gon
.
push_access_levels
,
onSelect
:
this
.
onSelectCallback
,
accessLevel
:
ACCESS_LEVELS
.
PUSH
,
hasLicense
:
this
.
hasLicense
,
});
this
.
createItemDropdown
=
new
CreateItemDropdown
({
$dropdown
:
this
.
$form
.
find
(
'
.js-protected-branch-select
'
)
,
$dropdown
:
$protectedBranchDropdown
,
defaultToggleLabel
:
__
(
'
Protected Branch
'
),
fieldName
:
'
protected_branch[name]
'
,
onSelect
:
this
.
onSelectCallback
,
...
...
@@ -64,66 +43,26 @@ export default class ProtectedBranchCreate {
});
}
//
Enable submit button after selecting an option
//
This will run after clicked callback
onSelect
()
{
const
$allowedToMerge
=
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
].
getSelectedItems
();
const
$allowedToPush
=
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
].
getSelectedItems
();
const
toggle
=
!
(
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
).
val
()
&&
$allowedToMerge
.
length
&&
$allowedToPush
.
length
// Enable submit button
const
$branchInput
=
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
);
const
$allowedToMergeInput
=
this
.
$form
.
find
(
'
input[name="protected_branch[merge_access_levels_attributes][0][access_level]"]
'
,
);
const
$allowedToPushInput
=
this
.
$form
.
find
(
'
input[name="protected_branch[push_access_levels_attributes][0][access_level]"]
'
,
);
const
completedForm
=
!
(
$branchInput
.
val
()
&&
$allowedToMergeInput
.
length
&&
$allowedToPushInput
.
length
);
this
.
$form
.
find
(
'
input[type="submit"]
'
).
attr
(
'
disabled
'
,
toggle
);
this
.
$form
.
find
(
'
input[type="submit"]
'
).
prop
(
'
disabled
'
,
completedForm
);
}
static
getProtectedBranches
(
term
,
callback
)
{
callback
(
gon
.
open_branches
);
}
getFormData
()
{
const
formData
=
{
authenticity_token
:
this
.
$form
.
find
(
'
input[name="authenticity_token"]
'
).
val
(),
protected_branch
:
{
name
:
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
).
val
(),
code_owner_approval_required
:
this
.
$codeOwnerToggle
.
hasClass
(
'
is-checked
'
),
},
};
Object
.
keys
(
ACCESS_LEVELS
).
forEach
(
level
=>
{
const
accessLevel
=
ACCESS_LEVELS
[
level
];
const
selectedItems
=
this
[
`
${
accessLevel
}
_dropdown`
].
getSelectedItems
();
const
levelAttributes
=
[];
selectedItems
.
forEach
(
item
=>
{
if
(
item
.
type
===
LEVEL_TYPES
.
USER
)
{
levelAttributes
.
push
({
user_id
:
item
.
user_id
,
});
}
else
if
(
item
.
type
===
LEVEL_TYPES
.
ROLE
)
{
levelAttributes
.
push
({
access_level
:
item
.
access_level
,
});
}
else
if
(
item
.
type
===
LEVEL_TYPES
.
GROUP
)
{
levelAttributes
.
push
({
group_id
:
item
.
group_id
,
});
}
});
formData
.
protected_branch
[
`
${
accessLevel
}
_attributes`
]
=
levelAttributes
;
});
return
formData
;
}
onFormSubmit
(
e
)
{
e
.
preventDefault
();
axios
[
this
.
$form
.
attr
(
'
method
'
)](
this
.
$form
.
attr
(
'
action
'
),
this
.
getFormData
())
.
then
(()
=>
{
window
.
location
.
reload
();
})
.
catch
(()
=>
Flash
(
__
(
'
Failed to protect the branch
'
)));
}
}
app/assets/javascripts/protected_branches/protected_branch_edit.js
View file @
f09118bd
import
{
find
}
from
'
lodash
'
;
import
AccessDropdown
from
'
~/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
Flash
from
'
~/flash
'
;
import
{
ACCESS_LEVELS
,
LEVEL_TYPES
}
from
'
./constants
'
;
import
flash
from
'
../flash
'
;
import
axios
from
'
../lib/utils/axios_utils
'
;
import
ProtectedBranchAccessDropdown
from
'
./protected_branch_access_dropdown
'
;
import
{
__
}
from
'
~/locale
'
;
export
default
class
ProtectedBranchEdit
{
constructor
(
options
)
{
this
.
hasLicense
=
options
.
hasLicense
;
this
.
$wraps
=
{};
this
.
hasChanges
=
false
;
this
.
$wrap
=
options
.
$wrap
;
this
.
$allowedToMergeDropdown
=
this
.
$wrap
.
find
(
'
.js-allowed-to-merge
'
);
this
.
$allowedToPushDropdown
=
this
.
$wrap
.
find
(
'
.js-allowed-to-push
'
);
this
.
$codeOwnerToggle
=
this
.
$wrap
.
find
(
'
.js-code-owner-toggle
'
);
this
.
$wraps
[
ACCESS_LEVELS
.
MERGE
]
=
this
.
$allowedToMergeDropdown
.
closest
(
`.
${
ACCESS_LEVELS
.
MERGE
}
-container`
,
);
this
.
$wraps
[
ACCESS_LEVELS
.
PUSH
]
=
this
.
$allowedToPushDropdown
.
closest
(
`.
${
ACCESS_LEVELS
.
PUSH
}
-container`
,
);
this
.
onSelectCallback
=
this
.
onSelect
.
bind
(
this
);
this
.
buildDropdowns
();
this
.
bindEvents
();
}
bindEvents
()
{
if
(
this
.
hasLicense
)
{
this
.
$codeOwnerToggle
.
on
(
'
click
'
,
this
.
onCodeOwnerToggleClick
.
bind
(
this
));
}
}
onCodeOwnerToggleClick
()
{
this
.
$codeOwnerToggle
.
toggleClass
(
'
is-checked
'
);
this
.
$codeOwnerToggle
.
prop
(
'
disabled
'
,
true
);
const
formData
=
{
code_owner_approval_required
:
this
.
$codeOwnerToggle
.
hasClass
(
'
is-checked
'
),
};
this
.
updateCodeOwnerApproval
(
formData
);
}
updateCodeOwnerApproval
(
formData
)
{
axios
.
patch
(
this
.
$wrap
.
data
(
'
url
'
),
{
protected_branch
:
formData
,
})
.
then
(()
=>
{
this
.
$codeOwnerToggle
.
prop
(
'
disabled
'
,
false
);
})
.
catch
(()
=>
{
Flash
(
__
(
'
Failed to update branch!
'
));
});
}
buildDropdowns
()
{
// Allowed to merge dropdown
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
]
=
new
AccessDropdown
({
accessLevel
:
ACCESS_LEVELS
.
MERGE
,
accessLevelsData
:
gon
.
merge_access_levels
,
this
.
protectedBranchAccessDropdown
=
new
ProtectedBranchAccessDropdown
({
$dropdown
:
this
.
$allowedToMergeDropdown
,
onSelect
:
this
.
onSelectOption
.
bind
(
this
),
onHide
:
this
.
onDropdownHide
.
bind
(
this
),
hasLicense
:
this
.
hasLicense
,
data
:
gon
.
merge_access_levels
,
onSelect
:
this
.
onSelectCallback
,
});
// Allowed to push dropdown
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
]
=
new
AccessDropdown
({
accessLevel
:
ACCESS_LEVELS
.
PUSH
,
accessLevelsData
:
gon
.
push_access_levels
,
this
.
protectedBranchAccessDropdown
=
new
ProtectedBranchAccessDropdown
({
$dropdown
:
this
.
$allowedToPushDropdown
,
onSelect
:
this
.
onSelectOption
.
bind
(
this
),
onHide
:
this
.
onDropdownHide
.
bind
(
this
),
hasLicense
:
this
.
hasLicense
,
data
:
gon
.
push_access_levels
,
onSelect
:
this
.
onSelectCallback
,
});
}
onSelectOption
()
{
this
.
hasChanges
=
true
;
}
onDropdownHide
()
{
if
(
!
this
.
hasChanges
)
{
return
;
}
this
.
hasChanges
=
true
;
this
.
updatePermissions
();
}
onSelect
()
{
const
$allowedToMergeInput
=
this
.
$wrap
.
find
(
`input[name="
${
this
.
$allowedToMergeDropdown
.
data
(
'
fieldName
'
)}
"]`
,
);
const
$allowedToPushInput
=
this
.
$wrap
.
find
(
`input[name="
${
this
.
$allowedToPushDropdown
.
data
(
'
fieldName
'
)}
"]`
,
);
updatePermissions
()
{
const
formData
=
Object
.
keys
(
ACCESS_LEVELS
).
reduce
((
acc
,
level
)
=>
{
const
accessLevelName
=
ACCESS_LEVELS
[
level
];
const
inputData
=
this
[
`
${
accessLevelName
}
_dropdown`
].
getInputData
(
accessLevelName
);
acc
[
`
${
accessLevelName
}
_attributes`
]
=
inputData
;
// Do not update if one dropdown has not selected any option
if
(
!
(
$allowedToMergeInput
.
length
&&
$allowedToPushInput
.
length
))
return
;
return
acc
;
},
{}
);
this
.
$allowedToMergeDropdown
.
disable
()
;
this
.
$allowedToPushDropdown
.
disable
(
);
axios
.
patch
(
this
.
$wrap
.
data
(
'
url
'
),
{
protected_branch
:
formData
,
protected_branch
:
{
merge_access_levels_attributes
:
[
{
id
:
this
.
$allowedToMergeDropdown
.
data
(
'
accessLevelId
'
),
access_level
:
$allowedToMergeInput
.
val
(),
},
],
push_access_levels_attributes
:
[
{
id
:
this
.
$allowedToPushDropdown
.
data
(
'
accessLevelId
'
),
access_level
:
$allowedToPushInput
.
val
(),
},
],
},
})
.
then
(({
data
})
=>
{
this
.
hasChanges
=
false
;
Object
.
keys
(
ACCESS_LEVELS
).
forEach
(
level
=>
{
const
accessLevelName
=
ACCESS_LEVELS
[
level
];
// The data coming from server will be the new persisted *state* for each dropdown
this
.
setSelectedItemsToDropdown
(
data
[
accessLevelName
],
`
${
accessLevelName
}
_dropdown`
);
});
.
then
(()
=>
{
this
.
$allowedToMergeDropdown
.
enable
();
this
.
$allowedToPushDropdown
.
enable
();
})
.
catch
(()
=>
{
this
.
$allowedToMergeDropdown
.
enable
();
this
.
$allowedToPushDropdown
.
enable
();
Flash
(
__
(
'
Failed to update branch!
'
));
});
}
setSelectedItemsToDropdown
(
items
=
[],
dropdownName
)
{
const
itemsToAdd
=
items
.
map
(
currentItem
=>
{
if
(
currentItem
.
user_id
)
{
// Do this only for users for now
// get the current data for selected items
const
selectedItems
=
this
[
dropdownName
].
getSelectedItems
();
const
currentSelectedItem
=
find
(
selectedItems
,
{
user_id
:
currentItem
.
user_id
,
});
return
{
id
:
currentItem
.
id
,
user_id
:
currentItem
.
user_id
,
type
:
LEVEL_TYPES
.
USER
,
persisted
:
true
,
name
:
currentSelectedItem
.
name
,
username
:
currentSelectedItem
.
username
,
avatar_url
:
currentSelectedItem
.
avatar_url
,
};
}
else
if
(
currentItem
.
group_id
)
{
return
{
id
:
currentItem
.
id
,
group_id
:
currentItem
.
group_id
,
type
:
LEVEL_TYPES
.
GROUP
,
persisted
:
true
,
};
}
return
{
id
:
currentItem
.
id
,
access_level
:
currentItem
.
access_level
,
type
:
LEVEL_TYPES
.
ROLE
,
persisted
:
true
,
};
});
this
[
dropdownName
].
setSelectedItems
(
itemsToAdd
);
flash
(
__
(
'
Failed to update branch!
'
),
'
alert
'
,
document
.
querySelector
(
'
.js-protected-branches-list
'
),
);
});
}
}
app/assets/javascripts/protected_branches/protected_branch_edit_list.js
View file @
f09118bd
...
...
@@ -13,7 +13,6 @@ export default class ProtectedBranchEditList {
this
.
$wrap
.
find
(
'
.js-protected-branch-edit-form
'
).
each
((
i
,
el
)
=>
{
new
ProtectedBranchEdit
({
$wrap
:
$
(
el
),
hasLicense
:
false
,
});
});
}
...
...
ee/app/assets/javascripts/pages/projects/settings/repository/show/index.js
View file @
f09118bd
/* eslint-disable no-new */
import
ProtectedBranchCreate
from
'
~
/protected_branches/protected_branch_create
'
;
import
ProtectedBranchCreate
from
'
ee
/protected_branches/protected_branch_create
'
;
import
ProtectedBranchEditList
from
'
ee/protected_branches/protected_branch_edit_list
'
;
import
ProtectedTagCreate
from
'
ee/protected_tags/protected_tag_create
'
;
import
ProtectedTagEditList
from
'
ee/protected_tags/protected_tag_edit_list
'
;
...
...
@@ -8,6 +8,7 @@ import UsersSelect from '~/users_select';
import
UserCallout
from
'
~/user_callout
'
;
import
initSettingsPanels
from
'
~/settings_panels
'
;
import
initDeployKeys
from
'
~/deploy_keys
'
;
import
CEProtectedBranchCreate
from
'
~/protected_branches/protected_branch_create
'
;
import
CEProtectedBranchEditList
from
'
~/protected_branches/protected_branch_edit_list
'
;
import
CEProtectedTagCreate
from
'
~/protected_tags/protected_tag_create
'
;
import
CEProtectedTagEditList
from
'
~/protected_tags/protected_tag_edit_list
'
;
...
...
@@ -23,13 +24,13 @@ document.addEventListener('DOMContentLoaded', () => {
initSettingsPanels
();
if
(
document
.
querySelector
(
'
.js-protected-refs-for-users
'
))
{
new
ProtectedBranchCreate
(
{
hasLicense
:
true
}
);
new
ProtectedBranchCreate
();
new
ProtectedBranchEditList
();
new
ProtectedTagCreate
();
new
ProtectedTagEditList
();
}
else
{
new
ProtectedBranchCreate
({
hasLicense
:
false
}
);
new
CEProtectedBranchCreate
(
);
new
CEProtectedBranchEditList
();
new
CEProtectedTagCreate
();
...
...
app/assets/javascripts/projects/settings/access_dropdown.js
→
ee/
app/assets/javascripts/projects/settings/access_dropdown.js
View file @
f09118bd
...
...
@@ -7,9 +7,8 @@ import { LEVEL_TYPES, LEVEL_ID_PROP, ACCESS_LEVEL_NONE } from './constants';
export
default
class
AccessDropdown
{
constructor
(
options
)
{
const
{
$dropdown
,
accessLevel
,
accessLevelsData
,
hasLicense
=
true
}
=
options
;
const
{
$dropdown
,
accessLevel
,
accessLevelsData
}
=
options
;
this
.
options
=
options
;
this
.
hasLicense
=
hasLicense
;
this
.
groups
=
[];
this
.
accessLevel
=
accessLevel
;
this
.
accessLevelsData
=
accessLevelsData
.
roles
;
...
...
@@ -48,18 +47,9 @@ export default class AccessDropdown {
e
.
preventDefault
();
if
(
!
this
.
hasLicense
)
{
// We're not multiselecting quite yet with FOSS:
// remove all preselected items before selecting this item
// https://gitlab.com/gitlab-org/gitlab/-/merge_requests/37499
this
.
accessLevelsData
.
forEach
(
level
=>
{
this
.
removeSelectedItem
(
level
);
});
}
if
(
$el
.
is
(
'
.is-active
'
))
{
if
(
this
.
noOneObj
)
{
if
(
item
.
id
===
this
.
noOneObj
.
id
&&
this
.
hasLicense
)
{
if
(
item
.
id
===
this
.
noOneObj
.
id
)
{
// remove all others selected items
this
.
accessLevelsData
.
forEach
(
level
=>
{
if
(
level
.
id
!==
item
.
id
)
{
...
...
@@ -296,23 +286,21 @@ export default class AccessDropdown {
}
getData
(
query
,
callback
)
{
if
(
this
.
hasLicense
)
{
Promise
.
all
([
this
.
getUsers
(
query
),
this
.
groupsData
?
Promise
.
resolve
(
this
.
groupsData
)
:
this
.
getGroups
(),
])
.
then
(([
usersResponse
,
groupsResponse
])
=>
{
this
.
groupsData
=
groupsResponse
;
callback
(
this
.
consolidateData
(
usersResponse
.
data
,
groupsResponse
.
data
));
})
.
catch
(()
=>
Flash
(
__
(
'
Failed to load groups & users.
'
)));
}
else
{
callback
(
this
.
consolidateData
());
}
Promise
.
all
([
this
.
getUsers
(
query
),
this
.
groupsData
?
Promise
.
resolve
(
this
.
groupsData
)
:
this
.
getGroups
(),
])
.
then
(([
usersResponse
,
groupsResponse
])
=>
{
this
.
groupsData
=
groupsResponse
;
callback
(
this
.
consolidateData
(
usersResponse
.
data
,
groupsResponse
.
data
));
})
.
catch
(()
=>
Flash
(
__
(
'
Failed to load groups & users.
'
)));
}
consolidateData
(
usersResponse
=
[],
groupsResponse
=
[]
)
{
consolidateData
(
usersResponse
,
groupsResponse
)
{
let
consolidatedData
=
[];
const
map
=
[];
const
selectedItems
=
this
.
getSelectedItems
();
// ID property is handled differently locally from the server
//
...
...
@@ -328,6 +316,14 @@ export default class AccessDropdown {
// In dropdown: `id`
// For submit: `user_id`
/*
* Build groups
*/
const
groups
=
groupsResponse
.
map
(
group
=>
({
...
group
,
type
:
LEVEL_TYPES
.
GROUP
,
}));
/*
* Build roles
*/
...
...
@@ -342,6 +338,35 @@ export default class AccessDropdown {
return
level
;
});
/*
* Build users
*/
const
users
=
selectedItems
.
filter
(
item
=>
item
.
type
===
LEVEL_TYPES
.
USER
)
.
map
(
item
=>
{
// Save identifiers for easy-checking more later
map
.
push
(
LEVEL_TYPES
.
USER
+
item
.
user_id
);
return
{
id
:
item
.
user_id
,
name
:
item
.
name
,
username
:
item
.
username
,
avatar_url
:
item
.
avatar_url
,
type
:
LEVEL_TYPES
.
USER
,
};
});
// Has to be checked against server response
// because the selected item can be in filter results
usersResponse
.
forEach
(
response
=>
{
// Add is it has not been added
if
(
map
.
indexOf
(
LEVEL_TYPES
.
USER
+
response
.
id
)
===
-
1
)
{
const
user
=
{
...
response
};
user
.
type
=
LEVEL_TYPES
.
USER
;
users
.
push
(
user
);
}
});
if
(
roles
.
length
)
{
consolidatedData
=
consolidatedData
.
concat
(
[{
type
:
'
header
'
,
content
:
s__
(
'
AccessDropdown|Roles
'
)
}],
...
...
@@ -349,64 +374,23 @@ export default class AccessDropdown {
);
}
if
(
this
.
hasLicense
)
{
const
map
=
[];
const
selectedItems
=
this
.
getSelectedItems
();
/*
* Build groups
*/
const
groups
=
groupsResponse
.
map
(
group
=>
({
...
group
,
type
:
LEVEL_TYPES
.
GROUP
,
}));
/*
* Build users
*/
const
users
=
selectedItems
.
filter
(
item
=>
item
.
type
===
LEVEL_TYPES
.
USER
)
.
map
(
item
=>
{
// Save identifiers for easy-checking more later
map
.
push
(
LEVEL_TYPES
.
USER
+
item
.
user_id
);
return
{
id
:
item
.
user_id
,
name
:
item
.
name
,
username
:
item
.
username
,
avatar_url
:
item
.
avatar_url
,
type
:
LEVEL_TYPES
.
USER
,
};
});
// Has to be checked against server response
// because the selected item can be in filter results
usersResponse
.
forEach
(
response
=>
{
// Add is it has not been added
if
(
map
.
indexOf
(
LEVEL_TYPES
.
USER
+
response
.
id
)
===
-
1
)
{
const
user
=
{
...
response
};
user
.
type
=
LEVEL_TYPES
.
USER
;
users
.
push
(
user
);
}
});
if
(
groups
.
length
)
{
if
(
roles
.
length
)
{
consolidatedData
=
consolidatedData
.
concat
([{
type
:
'
divider
'
}]);
}
consolidatedData
=
consolidatedData
.
concat
(
[{
type
:
'
header
'
,
content
:
s__
(
'
AccessDropdown|Groups
'
)
}],
groups
,
);
if
(
groups
.
length
)
{
if
(
roles
.
length
)
{
consolidatedData
=
consolidatedData
.
concat
([{
type
:
'
divider
'
}]);
}
if
(
users
.
length
)
{
consolidatedData
=
consolidatedData
.
concat
(
[{
type
:
'
divider
'
}],
[{
type
:
'
header
'
,
content
:
s__
(
'
AccessDropdown|Users
'
)
}],
users
,
);
}
consolidatedData
=
consolidatedData
.
concat
(
[{
type
:
'
header
'
,
content
:
s__
(
'
AccessDropdown|Groups
'
)
}],
groups
,
);
}
if
(
users
.
length
)
{
consolidatedData
=
consolidatedData
.
concat
(
[{
type
:
'
divider
'
}],
[{
type
:
'
header
'
,
content
:
s__
(
'
AccessDropdown|Users
'
)
}],
users
,
);
}
return
consolidatedData
;
...
...
app/assets/javascripts/projects/settings/constants.js
→
ee/
app/assets/javascripts/projects/settings/constants.js
View file @
f09118bd
File moved
app/assets/javascripts/protected_branches/constants.js
→
ee/
app/assets/javascripts/protected_branches/constants.js
View file @
f09118bd
File moved
ee/app/assets/javascripts/protected_branches/index.js
View file @
f09118bd
/* eslint-disable no-unused-vars */
import
$
from
'
jquery
'
;
import
ProtectedBranchCreate
from
'
~/protected_branches
/protected_branch_create
'
;
import
ProtectedBranchCreate
from
'
.
/protected_branch_create
'
;
import
ProtectedBranchEditList
from
'
./protected_branch_edit_list
'
;
$
(()
=>
{
const
protectedBranchCreate
=
new
ProtectedBranchCreate
(
{
hasLicense
:
true
}
);
const
protectedBranchCreate
=
new
ProtectedBranchCreate
();
const
protectedBranchEditList
=
new
ProtectedBranchEditList
();
});
ee/app/assets/javascripts/protected_branches/protected_branch_create.js
0 → 100644
View file @
f09118bd
import
$
from
'
jquery
'
;
import
AccessDropdown
from
'
ee/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
AccessorUtilities
from
'
~/lib/utils/accessor
'
;
import
Flash
from
'
~/flash
'
;
import
CreateItemDropdown
from
'
~/create_item_dropdown
'
;
import
{
ACCESS_LEVELS
,
LEVEL_TYPES
}
from
'
./constants
'
;
import
{
__
}
from
'
~/locale
'
;
export
default
class
ProtectedBranchCreate
{
constructor
()
{
this
.
$form
=
$
(
'
.js-new-protected-branch
'
);
this
.
isLocalStorageAvailable
=
AccessorUtilities
.
isLocalStorageAccessSafe
();
this
.
currentProjectUserDefaults
=
{};
this
.
buildDropdowns
();
this
.
$branchInput
=
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
);
this
.
$codeOwnerToggle
=
this
.
$form
.
find
(
'
.js-code-owner-toggle
'
);
this
.
bindEvents
();
}
bindEvents
()
{
this
.
$codeOwnerToggle
.
on
(
'
click
'
,
this
.
onCodeOwnerToggleClick
.
bind
(
this
));
this
.
$form
.
on
(
'
submit
'
,
this
.
onFormSubmit
.
bind
(
this
));
}
onCodeOwnerToggleClick
()
{
this
.
$codeOwnerToggle
.
toggleClass
(
'
is-checked
'
);
}
buildDropdowns
()
{
const
$allowedToMergeDropdown
=
this
.
$form
.
find
(
'
.js-allowed-to-merge
'
);
const
$allowedToPushDropdown
=
this
.
$form
.
find
(
'
.js-allowed-to-push
'
);
// Cache callback
this
.
onSelectCallback
=
this
.
onSelect
.
bind
(
this
);
// Allowed to Merge dropdown
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
]
=
new
AccessDropdown
({
$dropdown
:
$allowedToMergeDropdown
,
accessLevelsData
:
gon
.
merge_access_levels
,
onSelect
:
this
.
onSelectCallback
,
accessLevel
:
ACCESS_LEVELS
.
MERGE
,
});
// Allowed to Push dropdown
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
]
=
new
AccessDropdown
({
$dropdown
:
$allowedToPushDropdown
,
accessLevelsData
:
gon
.
push_access_levels
,
onSelect
:
this
.
onSelectCallback
,
accessLevel
:
ACCESS_LEVELS
.
PUSH
,
});
this
.
createItemDropdown
=
new
CreateItemDropdown
({
$dropdown
:
this
.
$form
.
find
(
'
.js-protected-branch-select
'
),
defaultToggleLabel
:
__
(
'
Protected Branch
'
),
fieldName
:
'
protected_branch[name]
'
,
onSelect
:
this
.
onSelectCallback
,
getData
:
ProtectedBranchCreate
.
getProtectedBranches
,
});
}
// Enable submit button after selecting an option
onSelect
()
{
const
$allowedToMerge
=
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
].
getSelectedItems
();
const
$allowedToPush
=
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
].
getSelectedItems
();
const
toggle
=
!
(
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
).
val
()
&&
$allowedToMerge
.
length
&&
$allowedToPush
.
length
);
this
.
$form
.
find
(
'
input[type="submit"]
'
).
attr
(
'
disabled
'
,
toggle
);
}
static
getProtectedBranches
(
term
,
callback
)
{
callback
(
gon
.
open_branches
);
}
getFormData
()
{
const
formData
=
{
authenticity_token
:
this
.
$form
.
find
(
'
input[name="authenticity_token"]
'
).
val
(),
protected_branch
:
{
name
:
this
.
$form
.
find
(
'
input[name="protected_branch[name]"]
'
).
val
(),
code_owner_approval_required
:
this
.
$codeOwnerToggle
.
hasClass
(
'
is-checked
'
),
},
};
Object
.
keys
(
ACCESS_LEVELS
).
forEach
(
level
=>
{
const
accessLevel
=
ACCESS_LEVELS
[
level
];
const
selectedItems
=
this
[
`
${
accessLevel
}
_dropdown`
].
getSelectedItems
();
const
levelAttributes
=
[];
selectedItems
.
forEach
(
item
=>
{
if
(
item
.
type
===
LEVEL_TYPES
.
USER
)
{
levelAttributes
.
push
({
user_id
:
item
.
user_id
,
});
}
else
if
(
item
.
type
===
LEVEL_TYPES
.
ROLE
)
{
levelAttributes
.
push
({
access_level
:
item
.
access_level
,
});
}
else
if
(
item
.
type
===
LEVEL_TYPES
.
GROUP
)
{
levelAttributes
.
push
({
group_id
:
item
.
group_id
,
});
}
});
formData
.
protected_branch
[
`
${
accessLevel
}
_attributes`
]
=
levelAttributes
;
});
return
formData
;
}
onFormSubmit
(
e
)
{
e
.
preventDefault
();
axios
[
this
.
$form
.
attr
(
'
method
'
)](
this
.
$form
.
attr
(
'
action
'
),
this
.
getFormData
())
.
then
(()
=>
{
window
.
location
.
reload
();
})
.
catch
(()
=>
Flash
(
__
(
'
Failed to protect the branch
'
)));
}
}
ee/app/assets/javascripts/protected_branches/protected_branch_edit.js
0 → 100644
View file @
f09118bd
import
{
find
}
from
'
lodash
'
;
import
AccessDropdown
from
'
ee/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
Flash
from
'
~/flash
'
;
import
{
ACCESS_LEVELS
,
LEVEL_TYPES
}
from
'
./constants
'
;
import
{
__
}
from
'
~/locale
'
;
export
default
class
ProtectedBranchEdit
{
constructor
(
options
)
{
this
.
$wraps
=
{};
this
.
hasChanges
=
false
;
this
.
$wrap
=
options
.
$wrap
;
this
.
$allowedToMergeDropdown
=
this
.
$wrap
.
find
(
'
.js-allowed-to-merge
'
);
this
.
$allowedToPushDropdown
=
this
.
$wrap
.
find
(
'
.js-allowed-to-push
'
);
this
.
$codeOwnerToggle
=
this
.
$wrap
.
find
(
'
.js-code-owner-toggle
'
);
this
.
$wraps
[
ACCESS_LEVELS
.
MERGE
]
=
this
.
$allowedToMergeDropdown
.
closest
(
`.
${
ACCESS_LEVELS
.
MERGE
}
-container`
,
);
this
.
$wraps
[
ACCESS_LEVELS
.
PUSH
]
=
this
.
$allowedToPushDropdown
.
closest
(
`.
${
ACCESS_LEVELS
.
PUSH
}
-container`
,
);
this
.
buildDropdowns
();
this
.
bindEvents
();
}
bindEvents
()
{
this
.
$codeOwnerToggle
.
on
(
'
click
'
,
this
.
onCodeOwnerToggleClick
.
bind
(
this
));
}
onCodeOwnerToggleClick
()
{
this
.
$codeOwnerToggle
.
toggleClass
(
'
is-checked
'
);
this
.
$codeOwnerToggle
.
prop
(
'
disabled
'
,
true
);
const
formData
=
{
code_owner_approval_required
:
this
.
$codeOwnerToggle
.
hasClass
(
'
is-checked
'
),
};
this
.
updateCodeOwnerApproval
(
formData
);
}
updateCodeOwnerApproval
(
formData
)
{
axios
.
patch
(
this
.
$wrap
.
data
(
'
url
'
),
{
protected_branch
:
formData
,
})
.
then
(()
=>
{
this
.
$codeOwnerToggle
.
prop
(
'
disabled
'
,
false
);
})
.
catch
(()
=>
{
Flash
(
__
(
'
Failed to update branch!
'
));
});
}
buildDropdowns
()
{
// Allowed to merge dropdown
this
[
`
${
ACCESS_LEVELS
.
MERGE
}
_dropdown`
]
=
new
AccessDropdown
({
accessLevel
:
ACCESS_LEVELS
.
MERGE
,
accessLevelsData
:
gon
.
merge_access_levels
,
$dropdown
:
this
.
$allowedToMergeDropdown
,
onSelect
:
this
.
onSelectOption
.
bind
(
this
),
onHide
:
this
.
onDropdownHide
.
bind
(
this
),
});
// Allowed to push dropdown
this
[
`
${
ACCESS_LEVELS
.
PUSH
}
_dropdown`
]
=
new
AccessDropdown
({
accessLevel
:
ACCESS_LEVELS
.
PUSH
,
accessLevelsData
:
gon
.
push_access_levels
,
$dropdown
:
this
.
$allowedToPushDropdown
,
onSelect
:
this
.
onSelectOption
.
bind
(
this
),
onHide
:
this
.
onDropdownHide
.
bind
(
this
),
});
}
onSelectOption
()
{
this
.
hasChanges
=
true
;
}
onDropdownHide
()
{
if
(
!
this
.
hasChanges
)
{
return
;
}
this
.
hasChanges
=
true
;
this
.
updatePermissions
();
}
updatePermissions
()
{
const
formData
=
Object
.
keys
(
ACCESS_LEVELS
).
reduce
((
acc
,
level
)
=>
{
const
accessLevelName
=
ACCESS_LEVELS
[
level
];
const
inputData
=
this
[
`
${
accessLevelName
}
_dropdown`
].
getInputData
(
accessLevelName
);
acc
[
`
${
accessLevelName
}
_attributes`
]
=
inputData
;
return
acc
;
},
{});
axios
.
patch
(
this
.
$wrap
.
data
(
'
url
'
),
{
protected_branch
:
formData
,
})
.
then
(({
data
})
=>
{
this
.
hasChanges
=
false
;
Object
.
keys
(
ACCESS_LEVELS
).
forEach
(
level
=>
{
const
accessLevelName
=
ACCESS_LEVELS
[
level
];
// The data coming from server will be the new persisted *state* for each dropdown
this
.
setSelectedItemsToDropdown
(
data
[
accessLevelName
],
`
${
accessLevelName
}
_dropdown`
);
});
this
.
$allowedToMergeDropdown
.
enable
();
this
.
$allowedToPushDropdown
.
enable
();
})
.
catch
(()
=>
{
this
.
$allowedToMergeDropdown
.
enable
();
this
.
$allowedToPushDropdown
.
enable
();
Flash
(
__
(
'
Failed to update branch!
'
));
});
}
setSelectedItemsToDropdown
(
items
=
[],
dropdownName
)
{
const
itemsToAdd
=
items
.
map
(
currentItem
=>
{
if
(
currentItem
.
user_id
)
{
// Do this only for users for now
// get the current data for selected items
const
selectedItems
=
this
[
dropdownName
].
getSelectedItems
();
const
currentSelectedItem
=
find
(
selectedItems
,
{
user_id
:
currentItem
.
user_id
,
});
return
{
id
:
currentItem
.
id
,
user_id
:
currentItem
.
user_id
,
type
:
LEVEL_TYPES
.
USER
,
persisted
:
true
,
name
:
currentSelectedItem
.
name
,
username
:
currentSelectedItem
.
username
,
avatar_url
:
currentSelectedItem
.
avatar_url
,
};
}
else
if
(
currentItem
.
group_id
)
{
return
{
id
:
currentItem
.
id
,
group_id
:
currentItem
.
group_id
,
type
:
LEVEL_TYPES
.
GROUP
,
persisted
:
true
,
};
}
return
{
id
:
currentItem
.
id
,
access_level
:
currentItem
.
access_level
,
type
:
LEVEL_TYPES
.
ROLE
,
persisted
:
true
,
};
});
this
[
dropdownName
].
setSelectedItems
(
itemsToAdd
);
}
}
ee/app/assets/javascripts/protected_branches/protected_branch_edit_list.js
View file @
f09118bd
/* eslint-disable no-new */
import
$
from
'
jquery
'
;
import
ProtectedBranchEdit
from
'
~/protected_branches
/protected_branch_edit
'
;
import
ProtectedBranchEdit
from
'
.
/protected_branch_edit
'
;
export
default
class
ProtectedBranchEditList
{
constructor
()
{
...
...
@@ -14,7 +14,6 @@ export default class ProtectedBranchEditList {
this
.
$wrap
.
find
(
'
.js-protected-branch-edit-form
'
).
each
((
i
,
el
)
=>
{
new
ProtectedBranchEdit
({
$wrap
:
$
(
el
),
hasLicense
:
true
,
});
});
}
...
...
ee/app/assets/javascripts/protected_environments/protected_environment_create.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
AccessDropdown
from
'
~
/projects/settings/access_dropdown
'
;
import
AccessDropdown
from
'
ee
/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
AccessorUtilities
from
'
~/lib/utils/accessor
'
;
import
Flash
from
'
~/flash
'
;
...
...
ee/app/assets/javascripts/protected_environments/protected_environment_edit.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
{
find
}
from
'
lodash
'
;
import
AccessDropdown
from
'
~
/projects/settings/access_dropdown
'
;
import
AccessDropdown
from
'
ee
/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
Flash
from
'
~/flash
'
;
import
{
ACCESS_LEVELS
,
LEVEL_TYPES
}
from
'
./constants
'
;
...
...
ee/app/assets/javascripts/protected_tags/protected_tag_create.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
AccessDropdown
from
'
~
/projects/settings/access_dropdown
'
;
import
AccessDropdown
from
'
ee
/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
createFlash
from
'
~/flash
'
;
import
CreateItemDropdown
from
'
~/create_item_dropdown
'
;
...
...
ee/app/assets/javascripts/protected_tags/protected_tag_edit.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
{
find
}
from
'
lodash
'
;
import
AccessDropdown
from
'
~
/projects/settings/access_dropdown
'
;
import
AccessDropdown
from
'
ee
/projects/settings/access_dropdown
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
createFlash
from
'
~/flash
'
;
import
{
s__
}
from
'
~/locale
'
;
...
...
ee/app/views/projects/protected_branches/_update_protected_branch.html.haml
View file @
f09118bd
-
merge_access_level
s
=
protected_branch
.
merge_access_levels
.
for_role
-
push_access_level
s
=
protected_branch
.
push_access_levels
.
for_role
-
merge_access_level
=
protected_branch
.
merge_access_levels
.
for_role
.
first
-
push_access_level
=
protected_branch
.
push_access_levels
.
for_role
.
first
-
user_merge_access_levels
=
protected_branch
.
merge_access_levels
.
for_user
-
user_push_access_levels
=
protected_branch
.
push_access_levels
.
for_user
...
...
@@ -7,11 +7,11 @@
-
group_merge_access_levels
=
protected_branch
.
merge_access_levels
.
for_group
-
group_push_access_levels
=
protected_branch
.
push_access_levels
.
for_group
%td
.merge_access_levels-container
=
hidden_field_tag
"allowed_to_merge_
#{
protected_branch
.
id
}
"
,
merge_access_level
s
.
first
&
.
access_level
=
dropdown_tag
(
(
merge_access_level
s
.
first
&
.
humanize
||
'Select'
)
,
%td
=
hidden_field_tag
"allowed_to_merge_
#{
protected_branch
.
id
}
"
,
merge_access_level
&
.
access_level
=
dropdown_tag
(
(
merge_access_level
&
.
humanize
||
'Select'
)
,
options:
{
toggle_class:
'js-allowed-to-merge'
,
dropdown_class:
'dropdown-menu-selectable js-allowed-to-merge-container capitalize-header'
,
data:
{
field_name:
"allowed_to_merge_
#{
protected_branch
.
id
}
"
,
preselected_items:
access_levels_data
(
merge_access_levels
)
}})
data:
{
field_name:
"allowed_to_merge_
#{
protected_branch
.
id
}
"
,
access_level_id:
merge_access_level
&
.
id
}})
-
if
user_merge_access_levels
.
any?
%p
.small
The following
...
...
@@ -25,11 +25,11 @@
can also merge into this branch:
#{
group_merge_access_levels
.
map
(
&
:humanize
).
to_sentence
}
%td
.push_access_levels-container
=
hidden_field_tag
"allowed_to_push_
#{
protected_branch
.
id
}
"
,
push_access_level
s
.
first
&
.
access_level
=
dropdown_tag
(
(
push_access_level
s
.
first
&
.
humanize
||
'Select'
)
,
%td
=
hidden_field_tag
"allowed_to_push_
#{
protected_branch
.
id
}
"
,
push_access_level
&
.
access_level
=
dropdown_tag
(
(
push_access_level
&
.
humanize
||
'Select'
)
,
options:
{
toggle_class:
'js-allowed-to-push'
,
dropdown_class:
'dropdown-menu-selectable js-allowed-to-push-container capitalize-header'
,
data:
{
field_name:
"allowed_to_push_
#{
protected_branch
.
id
}
"
,
preselected_items:
access_levels_data
(
push_access_levels
)
}})
data:
{
field_name:
"allowed_to_push_
#{
protected_branch
.
id
}
"
,
access_level_id:
push_access_level
&
.
id
}})
-
if
user_push_access_levels
.
any?
%p
.small
The following
...
...
spec/frontend/projects/settings/access_dropdown_spec.js
→
ee/
spec/frontend/projects/settings/access_dropdown_spec.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
'
~/gl_dropdown
'
;
import
AccessDropdown
from
'
~
/projects/settings/access_dropdown
'
;
import
{
LEVEL_TYPES
}
from
'
~
/projects/settings/constants
'
;
import
AccessDropdown
from
'
ee
/projects/settings/access_dropdown
'
;
import
{
LEVEL_TYPES
}
from
'
ee
/projects/settings/constants
'
;
describe
(
'
AccessDropdown
'
,
()
=>
{
const
defaultLabel
=
'
dummy default label
'
;
...
...
ee/spec/frontend/protected_branches/protected_branch_edit_spec.js
View file @
f09118bd
import
$
from
'
jquery
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
ProtectedBranchEdit
from
'
~
/protected_branches/protected_branch_edit
'
;
import
ProtectedBranchEdit
from
'
ee
/protected_branches/protected_branch_edit
'
;
import
{
TEST_HOST
}
from
'
helpers/test_constants
'
;
import
flash
from
'
~/flash
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
...
...
@@ -30,7 +30,7 @@ describe('EE ProtectedBranchEdit', () => {
findCodeOwnerToggle
().
classList
.
add
(
IS_CHECKED_CLASS
);
}
return
new
ProtectedBranchEdit
({
$wrap
:
$
(
'
#wrap
'
)
,
hasLicense
:
true
});
return
new
ProtectedBranchEdit
({
$wrap
:
$
(
'
#wrap
'
)
});
};
afterEach
(()
=>
{
...
...
spec/support/protected_branch_helpers.rb
View file @
f09118bd
...
...
@@ -27,9 +27,4 @@ module ProtectedBranchHelpers
set_allowed_to
(
'merge'
)
set_allowed_to
(
'push'
)
end
def
click_on_protect
click_on
"Protect"
wait_for_requests
end
end
spec/support/shared_examples/features/protected_branches_access_control_ce_shared_examples.rb
View file @
f09118bd
...
...
@@ -22,7 +22,7 @@ RSpec.shared_examples "protected branches > access control > CE" do
end
end
click_on
_protect
click_on
"Protect"
expect
(
ProtectedBranch
.
count
).
to
eq
(
1
)
expect
(
ProtectedBranch
.
last
.
push_access_levels
.
map
(
&
:access_level
)).
to
eq
([
access_type_id
])
...
...
@@ -45,7 +45,7 @@ RSpec.shared_examples "protected branches > access control > CE" do
find
(
:link
,
'No one'
).
click
end
click_on
_protect
click_on
"Protect"
expect
(
ProtectedBranch
.
count
).
to
eq
(
1
)
...
...
@@ -85,7 +85,7 @@ RSpec.shared_examples "protected branches > access control > CE" do
find
(
:link
,
'No one'
).
click
end
click_on
_protect
click_on
"Protect"
expect
(
ProtectedBranch
.
count
).
to
eq
(
1
)
expect
(
ProtectedBranch
.
last
.
merge_access_levels
.
map
(
&
:access_level
)).
to
eq
([
access_type_id
])
...
...
@@ -108,7 +108,7 @@ RSpec.shared_examples "protected branches > access control > CE" do
find
(
:link
,
'No one'
).
click
end
click_on
_protect
click_on
"Protect"
expect
(
ProtectedBranch
.
count
).
to
eq
(
1
)
...
...
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