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
4b81b6a1
Commit
4b81b6a1
authored
Jan 12, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved performance of merge requests target branch dropdown
parent
b94b8aae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
61 additions
and
5 deletions
+61
-5
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+0
-2
app/assets/javascripts/issuable_form.js
app/assets/javascripts/issuable_form.js
+54
-0
app/views/shared/issuable/form/_branch_chooser.html.haml
app/views/shared/issuable/form/_branch_chooser.html.haml
+2
-3
changelogs/unreleased/merge-request-target-branch-perf.yml
changelogs/unreleased/merge-request-target-branch-perf.yml
+5
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
4b81b6a1
...
...
@@ -30,7 +30,6 @@ import MiniPipelineGraph from './mini_pipeline_graph_dropdown';
import
UserCallout
from
'
./user_callout
'
;
import
ShortcutsWiki
from
'
./shortcuts_wiki
'
;
import
BlobViewer
from
'
./blob/viewer/index
'
;
import
AutoWidthDropdownSelect
from
'
./issuable/auto_width_dropdown_select
'
;
import
UsersSelect
from
'
./users_select
'
;
import
GfmAutoComplete
from
'
./gfm_auto_complete
'
;
import
Star
from
'
./star
'
;
...
...
@@ -253,7 +252,6 @@ import { fetchCommitMergeRequests } from './commit_merge_requests';
new
LabelsSelect
();
new
MilestoneSelect
();
new
IssuableTemplateSelectors
();
new
AutoWidthDropdownSelect
(
$
(
'
.js-target-branch-select
'
)).
init
();
break
;
case
'
projects:tags:new
'
:
import
(
'
./pages/projects/tags/new
'
)
...
...
app/assets/javascripts/issuable_form.js
View file @
4b81b6a1
...
...
@@ -46,6 +46,12 @@ export default class IssuableForm {
});
calendar
.
setDate
(
parsePikadayDate
(
$issuableDueDate
.
val
()));
}
this
.
$targetBranchSelect
=
$
(
'
.js-target-branch-select
'
,
this
.
form
);
if
(
this
.
$targetBranchSelect
.
length
)
{
this
.
initTargetBranchDropdown
();
}
}
initAutosave
()
{
...
...
@@ -104,4 +110,52 @@ export default class IssuableForm {
addWip
()
{
this
.
titleField
.
val
(
`WIP:
${(
this
.
titleField
.
val
())}
`
);
}
initTargetBranchDropdown
()
{
this
.
$targetBranchSelect
.
select2
({
ajax
:
{
url
:
this
.
$targetBranchSelect
.
data
(
'
endpoint
'
),
dataType
:
'
JSON
'
,
quietMillis
:
250
,
data
(
search
)
{
return
{
search
,
};
},
results
(
data
)
{
return
{
results
:
data
[
Object
.
keys
(
data
)[
0
]].
map
(
name
=>
({
id
:
name
,
text
:
name
,
})),
};
}
},
initSelection
(
el
,
callback
)
{
const
val
=
el
.
val
();
callback
({
id
:
val
,
text
:
val
,
});
},
dropdownCss
:
()
=>
{
let
resultantWidth
=
'
auto
'
;
// We have to look at the parent because
// `offsetParent` on a `display: none;` is `null`
const
offsetParentWidth
=
this
.
$targetBranchSelect
.
parent
().
offsetParent
().
width
();
// Reset any width to let it naturally flow
this
.
$targetBranchSelect
.
css
(
'
width
'
,
'
auto
'
);
if
(
this
.
$targetBranchSelect
.
outerWidth
(
false
)
>
offsetParentWidth
)
{
resultantWidth
=
offsetParentWidth
;
}
return
{
width
:
resultantWidth
,
maxWidth
:
offsetParentWidth
,
};
},
});
}
}
app/views/shared/issuable/form/_branch_chooser.html.haml
View file @
4b81b6a1
...
...
@@ -15,11 +15,10 @@
=
form
.
label
:target_branch
,
class:
'control-label'
.col-sm-10.target-branch-select-dropdown-container
.issuable-form-select-holder
=
form
.
select
(
:target_branch
,
issuable
.
target_branches
,
{
include_blank:
true
},
=
form
.
hidden_field
(
:target_branch
,
{
class:
'target_branch js-target-branch-select ref-name'
,
disabled:
issuable
.
new_record?
,
data:
{
placeholder:
"Select branch"
}})
data:
{
placeholder:
"Select branch"
,
endpoint:
refs_project_path
(
@project
,
sort:
'updated_desc'
)
}})
-
if
issuable
.
new_record?
=
link_to
'Change branches'
,
mr_change_branches_path
(
issuable
)
changelogs/unreleased/merge-request-target-branch-perf.yml
0 → 100644
View file @
4b81b6a1
---
title
:
Improve performance of target branch dropdown
merge_request
:
author
:
type
:
performance
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