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
55e46dfd
Commit
55e46dfd
authored
Jul 19, 2017
by
kushalpandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix lint errors, add constructor info
parent
c9ee6a96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
17 deletions
+22
-17
protected_branch_dropdown.js
...vascripts/protected_branches/protected_branch_dropdown.js
+22
-17
No files found.
app/assets/javascripts/protected_branches/protected_branch_dropdown.js
View file @
55e46dfd
/* 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_branch()` 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,20 +67,22 @@ 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
);
}
}
window
.
ProtectedBranchDropdown
=
ProtectedBranchDropdown
;
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