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
c7206978
Commit
c7206978
authored
Jul 20, 2017
by
kushalpandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up to be consistent with Protected Tags code
parent
3d4cfc3d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
15 deletions
+22
-15
ee/app/assets/javascripts/protected_branches/protected_branch_dropdown.js
...vascripts/protected_branches/protected_branch_dropdown.js
+22
-15
No files found.
ee/app/assets/javascripts/protected_branches/protected_branch_dropdown.js
View file @
c7206978
/* eslint-disable comma-dangle, no-unused-vars */
class
ProtectedBranchDropdown
{
export
default
class
ProtectedBranchDropdown
{
/**
* @param {Object} options containing
* `$dropdown` target element
* `onSelect` event callback
* $dropdown must be an element created using `dropdown_tag()` rails helper
*/
constructor
(
options
)
{
this
.
onSelect
=
options
.
onSelect
;
this
.
$dropdown
=
options
.
$dropdown
;
...
...
@@ -12,7 +16,7 @@ class ProtectedBranchDropdown {
this
.
bindEvents
();
// Hide footer
this
.
$dropdownFooter
.
addClass
(
'
hidden
'
);
this
.
toggleFooter
(
true
);
}
buildDropdown
()
{
...
...
@@ -21,7 +25,7 @@ class ProtectedBranchDropdown {
filterable
:
true
,
remote
:
false
,
search
:
{
fields
:
[
'
title
'
]
fields
:
[
'
title
'
]
,
},
selectable
:
true
,
toggleLabel
(
selected
)
{
...
...
@@ -36,10 +40,9 @@ class ProtectedBranchDropdown {
},
onFilter
:
this
.
toggleCreateNewButton
.
bind
(
this
),
clicked
:
(
options
)
=>
{
const
{
$el
,
e
}
=
options
;
e
.
preventDefault
();
options
.
e
.
preventDefault
();
this
.
onSelect
();
}
}
,
});
}
...
...
@@ -64,19 +67,23 @@ class ProtectedBranchDropdown {
}
toggleCreateNewButton
(
branchName
)
{
this
.
selectedBranch
=
{
title
:
branchName
,
id
:
branchName
,
text
:
branchName
};
if
(
branchName
)
{
this
.
selectedBranch
=
{
title
:
branchName
,
id
:
branchName
,
text
:
branchName
,
};
this
.
$dropdownContainer
.
find
(
'
.js-create-new-protected-branch code
'
)
.
text
(
branchName
);
}
this
.
$dropdownFooter
.
toggleClass
(
'
hidden
'
,
!
branchName
);
this
.
toggleFooter
(
!
branchName
);
}
toggleFooter
(
toggleState
)
{
this
.
$dropdownFooter
.
toggleClass
(
'
hidden
'
,
toggleState
);
}
}
...
...
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