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
9ca4dfee
Commit
9ca4dfee
authored
Dec 06, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Plain Diff
Merge CE branch 'es-module-compare' into master
parents
8f9409dc
0885126a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
86 deletions
+73
-86
app/assets/javascripts/compare.js
app/assets/javascripts/compare.js
+16
-18
app/assets/javascripts/compare_autocomplete.js
app/assets/javascripts/compare_autocomplete.js
+54
-62
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+3
-3
app/assets/javascripts/main.js
app/assets/javascripts/main.js
+0
-3
No files found.
app/assets/javascripts/compare.js
View file @
9ca4dfee
/* eslint-disable func-names, space-before-function-paren, wrap-iife, quotes, no-var, object-shorthand, consistent-return, no-unused-vars, comma-dangle, vars-on-top, prefer-template, max-len */
window
.
Compare
=
(
function
()
{
function
Compare
(
opts
)
{
export
default
class
Compare
{
constructor
(
opts
)
{
this
.
opts
=
opts
;
this
.
source_loading
=
$
(
"
.js-source-loading
"
);
this
.
target_loading
=
$
(
"
.js-target-loading
"
);
...
...
@@ -34,12 +34,12 @@ window.Compare = (function() {
this
.
initialState
();
}
Compare
.
prototype
.
initialState
=
function
()
{
initialState
()
{
this
.
getSourceHtml
();
return
this
.
getTargetHtml
();
}
;
this
.
getTargetHtml
();
}
Compare
.
prototype
.
getTargetProject
=
function
()
{
getTargetProject
()
{
return
$
.
ajax
({
url
:
this
.
opts
.
targetProjectUrl
,
data
:
{
...
...
@@ -52,22 +52,22 @@ window.Compare = (function() {
return
$
(
'
.js-target-branch-dropdown .dropdown-content
'
).
html
(
html
);
}
});
}
;
}
Compare
.
prototype
.
getSourceHtml
=
function
()
{
return
this
.
sendAjax
(
this
.
opts
.
sourceBranchUrl
,
this
.
source_loading
,
'
.mr_source_commit
'
,
{
getSourceHtml
()
{
return
this
.
constructor
.
sendAjax
(
this
.
opts
.
sourceBranchUrl
,
this
.
source_loading
,
'
.mr_source_commit
'
,
{
ref
:
$
(
"
input[name='merge_request[source_branch]']
"
).
val
()
});
}
;
}
Compare
.
prototype
.
getTargetHtml
=
function
()
{
return
this
.
sendAjax
(
this
.
opts
.
targetBranchUrl
,
this
.
target_loading
,
'
.mr_target_commit
'
,
{
getTargetHtml
()
{
return
this
.
constructor
.
sendAjax
(
this
.
opts
.
targetBranchUrl
,
this
.
target_loading
,
'
.mr_target_commit
'
,
{
target_project_id
:
$
(
"
input[name='merge_request[target_project_id]']
"
).
val
(),
ref
:
$
(
"
input[name='merge_request[target_branch]']
"
).
val
()
});
}
;
}
Compare
.
prototype
.
sendAjax
=
function
(
url
,
loading
,
target
,
data
)
{
static
sendAjax
(
url
,
loading
,
target
,
data
)
{
var
$target
;
$target
=
$
(
target
);
return
$
.
ajax
({
...
...
@@ -84,7 +84,5 @@ window.Compare = (function() {
gl
.
utils
.
localTimeAgo
(
$
(
'
.js-timeago
'
,
className
));
}
});
};
return
Compare
;
})();
}
}
app/assets/javascripts/compare_autocomplete.js
View file @
9ca4dfee
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, one-var-declaration-per-line, object-shorthand, comma-dangle, prefer-arrow-callback, no-else-return, newline-per-chained-call, wrap-iife, max-len */
window
.
CompareAutocomplete
=
(
function
()
{
function
CompareAutocomplete
()
{
this
.
initDropdown
();
}
CompareAutocomplete
.
prototype
.
initDropdown
=
function
()
{
return
$
(
'
.js-compare-dropdown
'
).
each
(
function
()
{
export
default
function
initCompareAutocomplete
()
{
$
(
'
.js-compare-dropdown
'
).
each
(
function
()
{
var
$dropdown
,
selected
;
$dropdown
=
$
(
this
);
selected
=
$dropdown
.
data
(
'
selected
'
);
...
...
@@ -62,7 +57,4 @@ window.CompareAutocomplete = (function() {
}
});
});
};
return
CompareAutocomplete
;
})();
}
app/assets/javascripts/dispatcher.js
View file @
9ca4dfee
...
...
@@ -22,8 +22,8 @@ import NewCommitForm from './new_commit_form';
import
Project
from
'
./project
'
;
import
projectAvatar
from
'
./project_avatar
'
;
/* global MergeRequest */
/* global Compare */
/* global CompareAutocomplete */
import
Compare
from
'
./compare
'
;
import
initCompareAutocomplete
from
'
./compare_autocomplete
'
;
/* global PathLocks */
/* global ProjectFindFile */
import
ProjectNew
from
'
./project_new
'
;
...
...
@@ -711,7 +711,7 @@ import initGroupAnalytics from './init_group_analytics';
projectAvatar
();
switch
(
path
[
1
])
{
case
'
compare
'
:
new
CompareAutocomplete
();
init
CompareAutocomplete
();
break
;
case
'
edit
'
:
shortcut_handler
=
new
ShortcutsNavigation
();
...
...
app/assets/javascripts/main.js
View file @
9ca4dfee
...
...
@@ -40,9 +40,6 @@ import './admin';
import
'
./aside
'
;
import
loadAwardsHandler
from
'
./awards_handler
'
;
import
bp
from
'
./breakpoints
'
;
import
'
./commits
'
;
import
'
./compare
'
;
import
'
./compare_autocomplete
'
;
import
'
./confirm_danger_modal
'
;
import
Flash
,
{
removeFlashClickListener
}
from
'
./flash
'
;
import
'
./gl_dropdown
'
;
...
...
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