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
c1ed00e8
Commit
c1ed00e8
authored
Oct 23, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '38869-diff' into 'master'
Remove Diff class from global namespace See merge request gitlab-org/gitlab-ce!14965
parents
5d74973d
cf347a57
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
26 deletions
+18
-26
diff.js
app/assets/javascripts/diff.js
+5
-10
dispatcher.js
app/assets/javascripts/dispatcher.js
+5
-4
files_comment_button.js
app/assets/javascripts/files_comment_button.js
+4
-5
main.js
app/assets/javascripts/main.js
+0
-2
merge_request_tabs.js
app/assets/javascripts/merge_request_tabs.js
+2
-2
merge_request_tabs_spec.js
spec/javascripts/merge_request_tabs_spec.js
+2
-3
No files found.
app/assets/javascripts/diff.js
View file @
c1ed00e8
/* eslint-disable class-methods-use-this */
import
'./lib/utils/url_utility'
;
import
FilesCommentButton
from
'./files_comment_button'
;
import
SingleFileDiff
from
'./single_file_diff'
;
...
...
@@ -8,7 +6,7 @@ import imageDiffHelper from './image_diff/helpers/index';
const
UNFOLD_COUNT
=
20
;
let
isBound
=
false
;
class
Diff
{
export
default
class
Diff
{
constructor
()
{
const
$diffFile
=
$
(
'.files .diff-file'
);
...
...
@@ -104,7 +102,7 @@ class Diff {
}
this
.
highlightSelectedLine
();
}
// eslint-disable-next-line class-methods-use-this
handleParallelLineDown
(
e
)
{
const
line
=
$
(
e
.
currentTarget
);
const
table
=
line
.
closest
(
'table'
);
...
...
@@ -116,11 +114,11 @@ class Diff {
table
.
addClass
(
`
${
lineClass
}
-selected`
);
}
}
// eslint-disable-next-line class-methods-use-this
diffViewType
()
{
return
$
(
'.inline-parallel-buttons a.active'
).
data
(
'view-type'
);
}
// eslint-disable-next-line class-methods-use-this
lineNumbers
(
line
)
{
const
children
=
line
.
find
(
'.diff-line-num'
).
toArray
();
if
(
children
.
length
!==
2
)
{
...
...
@@ -128,7 +126,7 @@ class Diff {
}
return
children
.
map
(
elm
=>
parseInt
(
$
(
elm
).
data
(
'linenumber'
),
10
)
||
0
);
}
// eslint-disable-next-line class-methods-use-this
highlightSelectedLine
()
{
const
hash
=
gl
.
utils
.
getLocationHash
();
const
$diffFiles
=
$
(
'.diff-file'
);
...
...
@@ -141,6 +139,3 @@ class Diff {
}
}
}
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
Diff
=
Diff
;
app/assets/javascripts/dispatcher.js
View file @
c1ed00e8
...
...
@@ -87,6 +87,7 @@ import U2FAuthenticate from './u2f/authenticate';
import
Members
from
'./members'
;
import
memberExpirationDate
from
'./member_expiration_date'
;
import
DueDateSelectors
from
'./due_date_select'
;
import
Diff
from
'./diff'
;
(
function
()
{
var
Dispatcher
;
...
...
@@ -237,7 +238,7 @@ import DueDateSelectors from './due_date_select';
new
GLForm
(
$
(
'.milestone-form'
),
true
);
break
;
case
'projects:compare:show'
:
new
gl
.
Diff
();
new
Diff
();
initChangesDropdown
();
break
;
case
'projects:branches:new'
:
...
...
@@ -273,7 +274,7 @@ import DueDateSelectors from './due_date_select';
}
case
'projects:merge_requests:creations:diffs'
:
case
'projects:merge_requests:edit'
:
new
gl
.
Diff
();
new
Diff
();
shortcut_handler
=
new
ShortcutsNavigation
();
new
GLForm
(
$
(
'.merge-request-form'
),
true
);
new
IssuableForm
(
$
(
'.merge-request-form'
));
...
...
@@ -307,7 +308,7 @@ import DueDateSelectors from './due_date_select';
new
GLForm
(
$
(
'.release-form'
),
true
);
break
;
case
'projects:merge_requests:show'
:
new
gl
.
Diff
();
new
Diff
();
shortcut_handler
=
new
ShortcutsIssuable
(
true
);
new
ZenMode
();
...
...
@@ -323,7 +324,7 @@ import DueDateSelectors from './due_date_select';
new
gl
.
Activities
();
break
;
case
'projects:commit:show'
:
new
gl
.
Diff
();
new
Diff
();
new
ZenMode
();
shortcut_handler
=
new
ShortcutsNavigation
();
new
MiniPipelineGraph
({
...
...
app/assets/javascripts/files_comment_button.js
View file @
c1ed00e8
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, max-len, one-var, one-var-declaration-per-line, quotes, prefer-template, newline-per-chained-call, comma-dangle, new-cap, no-else-return, consistent-return */
/* global notes */
/* Developer beware! Do not add logic to showButton or hideButton
* that will force a reflow. Doing so will create a signficant performance
* bottleneck for pages with large diffs. For a comprehensive list of what
...
...
@@ -20,8 +17,10 @@ const DIFF_EXPANDED_CLASS = 'diff-expanded';
export
default
{
init
(
$diffFile
)
{
/* Caching is used only when the following members are *true*. This is because there are likely to be
* differently configured versions of diffs in the same session. However if these values are true, they
/* Caching is used only when the following members are *true*.
* This is because there are likely to be
* differently configured versions of diffs in the same session.
* However if these values are true, they
* will be true in all cases */
if
(
!
this
.
userCanCreateNote
)
{
...
...
app/assets/javascripts/main.js
View file @
c1ed00e8
...
...
@@ -50,8 +50,6 @@ import './compare_autocomplete';
import
'./confirm_danger_modal'
;
import
'./copy_as_gfm'
;
import
'./copy_to_clipboard'
;
import
'./diff'
;
import
'./files_comment_button'
;
import
Flash
,
{
removeFlashClickListener
}
from
'./flash'
;
import
'./gl_dropdown'
;
import
'./gl_field_error'
;
...
...
app/assets/javascripts/merge_request_tabs.js
View file @
c1ed00e8
...
...
@@ -11,8 +11,8 @@ import {
handleLocationHash
,
isMetaClick
,
}
from
'./lib/utils/common_utils'
;
import
initDiscussionTab
from
'./image_diff/init_discussion_tab'
;
import
Diff
from
'./diff'
;
/* eslint-disable max-len */
// MergeRequestTabs
...
...
@@ -292,7 +292,7 @@ import initDiscussionTab from './image_diff/init_discussion_tab';
}
this
.
diffsLoaded
=
true
;
new
gl
.
Diff
();
new
Diff
();
this
.
scrollToElement
(
'#diffs'
);
$
(
'.diff-file'
).
each
((
i
,
el
)
=>
{
...
...
spec/javascripts/merge_request_tabs_spec.js
View file @
c1ed00e8
...
...
@@ -5,8 +5,7 @@ import '~/merge_request_tabs';
import
'~/commit/pipelines/pipelines_bundle'
;
import
'~/breakpoints'
;
import
'~/lib/utils/common_utils'
;
import
'~/diff'
;
import
'~/files_comment_button'
;
import
Diff
from
'~/diff'
;
import
'~/notes'
;
import
'vendor/jquery.scrollTo'
;
...
...
@@ -225,7 +224,7 @@ import 'vendor/jquery.scrollTo';
describe
(
'with "Side-by-side"/parallel diff view'
,
()
=>
{
beforeEach
(
function
()
{
this
.
class
.
diffViewType
=
()
=>
'parallel'
;
gl
.
Diff
.
prototype
.
diffViewType
=
()
=>
'parallel'
;
Diff
.
prototype
.
diffViewType
=
()
=>
'parallel'
;
});
it
(
'maintains `container-limited` for pipelines tab'
,
function
(
done
)
{
...
...
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