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
Boxiang Sun
gitlab-ce
Commits
9eef6cd1
Commit
9eef6cd1
authored
Jul 09, 2018
by
Tim Zallmann
Committed by
Filipa Lacerda
Jul 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "MR refactor: Performance costs of main element with `v-if`"
parent
8dfa7a42
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
61 additions
and
33 deletions
+61
-33
app/assets/javascripts/diffs/components/diff_discussions.vue
app/assets/javascripts/diffs/components/diff_discussions.vue
+1
-3
app/assets/javascripts/diffs/components/diff_file.vue
app/assets/javascripts/diffs/components/diff_file.vue
+5
-2
app/assets/javascripts/diffs/components/inline_diff_comment_row.vue
.../javascripts/diffs/components/inline_diff_comment_row.vue
+1
-14
app/assets/javascripts/diffs/components/inline_diff_view.vue
app/assets/javascripts/diffs/components/inline_diff_view.vue
+18
-2
app/assets/javascripts/diffs/components/parallel_diff_comment_row.vue
...avascripts/diffs/components/parallel_diff_comment_row.vue
+2
-8
app/assets/javascripts/diffs/components/parallel_diff_view.vue
...ssets/javascripts/diffs/components/parallel_diff_view.vue
+32
-2
spec/javascripts/diffs/components/diff_file_spec.js
spec/javascripts/diffs/components/diff_file_spec.js
+2
-2
No files found.
app/assets/javascripts/diffs/components/diff_discussions.vue
View file @
9eef6cd1
...
...
@@ -15,9 +15,7 @@ export default {
</
script
>
<
template
>
<div
v-if=
"discussions.length"
>
<div>
<div
v-for=
"discussion in discussions"
:key=
"discussion.id"
...
...
app/assets/javascripts/diffs/components/diff_file.vue
View file @
9eef6cd1
...
...
@@ -47,6 +47,9 @@ export default {
false
,
);
},
showExpandMessage
()
{
return
this
.
isCollapsed
&&
!
this
.
isLoadingCollapsedDiff
&&
!
this
.
file
.
tooLarge
;
},
},
mounted
()
{
document
.
addEventListener
(
'
scroll
'
,
this
.
handleScroll
);
...
...
@@ -159,7 +162,7 @@ export default {
</div>
<diff-content
v-
show
=
"!isCollapsed"
v-
if
=
"!isCollapsed"
:class=
"
{ hidden: isCollapsed || file.tooLarge }"
:diff-file="file"
/>
...
...
@@ -168,7 +171,7 @@ export default {
class=
"diff-content loading"
/>
<div
v-
show=
"isCollapsed && !isLoadingCollapsedDiff && !file.tooLar
ge"
v-
if=
"showExpandMessa
ge"
class=
"nothing-here-block diff-collapsed"
>
{{
__
(
'
This diff is collapsed.
'
)
}}
...
...
app/assets/javascripts/diffs/components/inline_diff_comment_row.vue
View file @
9eef6cd1
...
...
@@ -31,22 +31,9 @@ export default {
diffLineCommentForms
:
state
=>
state
.
diffs
.
diffLineCommentForms
,
}),
...
mapGetters
([
'
discussionsByLineCode
'
]),
isDiscussionExpanded
()
{
if
(
!
this
.
discussions
.
length
)
{
return
false
;
}
return
this
.
discussions
.
every
(
discussion
=>
discussion
.
expanded
);
},
hasCommentForm
()
{
return
this
.
diffLineCommentForms
[
this
.
line
.
lineCode
];
},
discussions
()
{
return
this
.
discussionsByLineCode
[
this
.
line
.
lineCode
]
||
[];
},
shouldRender
()
{
return
this
.
isDiscussionExpanded
||
this
.
hasCommentForm
;
},
className
()
{
return
this
.
discussions
.
length
?
''
:
'
js-temp-notes-holder
'
;
},
...
...
@@ -56,7 +43,6 @@ export default {
<
template
>
<tr
v-if=
"shouldRender"
:class=
"className"
class=
"notes_holder"
>
...
...
@@ -67,6 +53,7 @@ export default {
<td
class=
"notes_content"
>
<div
class=
"content"
>
<diff-discussions
v-if=
"discussions.length"
:discussions=
"discussions"
/>
<diff-line-note-form
...
...
app/assets/javascripts/diffs/components/inline_diff_view.vue
View file @
9eef6cd1
<
script
>
import
{
mapGetters
}
from
'
vuex
'
;
import
{
mapGetters
,
mapState
}
from
'
vuex
'
;
import
inlineDiffTableRow
from
'
./inline_diff_table_row.vue
'
;
import
inlineDiffCommentRow
from
'
./inline_diff_comment_row.vue
'
;
import
{
trimFirstCharOfLineContent
}
from
'
../store/utils
'
;
...
...
@@ -20,7 +20,10 @@ export default {
},
},
computed
:
{
...
mapGetters
([
'
commitId
'
]),
...
mapGetters
([
'
commitId
'
,
'
discussionsByLineCode
'
]),
...
mapState
({
diffLineCommentForms
:
state
=>
state
.
diffs
.
diffLineCommentForms
,
}),
normalizedDiffLines
()
{
return
this
.
diffLines
.
map
(
line
=>
(
line
.
richText
?
trimFirstCharOfLineContent
(
line
)
:
line
));
},
...
...
@@ -31,6 +34,18 @@ export default {
return
window
.
gon
.
user_color_scheme
;
},
},
methods
:
{
shouldRenderCommentRow
(
line
)
{
if
(
this
.
diffLineCommentForms
[
line
.
lineCode
])
return
true
;
const
lineDiscussions
=
this
.
discussionsByLineCode
[
line
.
lineCode
];
if
(
lineDiscussions
===
undefined
)
{
return
false
;
}
return
lineDiscussions
.
every
(
discussion
=>
discussion
.
expanded
);
},
},
};
</
script
>
...
...
@@ -50,6 +65,7 @@ export default {
:key=
"line.lineCode"
/>
<inline-diff-comment-row
v-if=
"shouldRenderCommentRow(line)"
:diff-file=
"diffFile"
:diff-lines=
"normalizedDiffLines"
:line=
"line"
...
...
app/assets/javascripts/diffs/components/parallel_diff_comment_row.vue
View file @
9eef6cd1
...
...
@@ -55,13 +55,6 @@ export default {
hasAnyExpandedDiscussion
()
{
return
this
.
hasExpandedDiscussionOnLeft
||
this
.
hasExpandedDiscussionOnRight
;
},
shouldRenderDiscussionsRow
()
{
const
hasDiscussion
=
this
.
hasDiscussion
&&
this
.
hasAnyExpandedDiscussion
;
const
hasCommentFormOnLeft
=
this
.
diffLineCommentForms
[
this
.
leftLineCode
];
const
hasCommentFormOnRight
=
this
.
diffLineCommentForms
[
this
.
rightLineCode
];
return
hasDiscussion
||
hasCommentFormOnLeft
||
hasCommentFormOnRight
;
},
shouldRenderDiscussionsOnLeft
()
{
return
this
.
discussionsByLineCode
[
this
.
leftLineCode
]
&&
this
.
hasExpandedDiscussionOnLeft
;
},
...
...
@@ -81,7 +74,6 @@ export default {
<
template
>
<tr
v-if=
"shouldRenderDiscussionsRow"
:class=
"className"
class=
"notes_holder"
>
...
...
@@ -92,6 +84,7 @@ export default {
class=
"content"
>
<diff-discussions
v-if=
"discussionsByLineCode[leftLineCode].length"
:discussions=
"discussionsByLineCode[leftLineCode]"
/>
</div>
...
...
@@ -112,6 +105,7 @@ export default {
class=
"content"
>
<diff-discussions
v-if=
"discussionsByLineCode[rightLineCode].length"
:discussions=
"discussionsByLineCode[rightLineCode]"
/>
</div>
...
...
app/assets/javascripts/diffs/components/parallel_diff_view.vue
View file @
9eef6cd1
<
script
>
import
{
mapGetters
}
from
'
vuex
'
;
import
{
map
State
,
map
Getters
}
from
'
vuex
'
;
import
parallelDiffTableRow
from
'
./parallel_diff_table_row.vue
'
;
import
parallelDiffCommentRow
from
'
./parallel_diff_comment_row.vue
'
;
import
{
EMPTY_CELL_TYPE
}
from
'
../constants
'
;
...
...
@@ -21,7 +21,10 @@ export default {
},
},
computed
:
{
...
mapGetters
([
'
commitId
'
]),
...
mapGetters
([
'
commitId
'
,
'
discussionsByLineCode
'
]),
...
mapState
({
diffLineCommentForms
:
state
=>
state
.
diffs
.
diffLineCommentForms
,
}),
parallelDiffLines
()
{
return
this
.
diffLines
.
map
(
line
=>
{
const
parallelLine
=
Object
.
assign
({},
line
);
...
...
@@ -48,6 +51,32 @@ export default {
return
window
.
gon
.
user_color_scheme
;
},
},
methods
:
{
shouldRenderCommentRow
(
line
)
{
const
leftLineCode
=
line
.
left
.
lineCode
;
const
rightLineCode
=
line
.
right
.
lineCode
;
const
discussions
=
this
.
discussionsByLineCode
;
const
leftDiscussions
=
discussions
[
leftLineCode
];
const
rightDiscussions
=
discussions
[
rightLineCode
];
const
hasDiscussion
=
leftDiscussions
||
rightDiscussions
;
const
hasExpandedDiscussionOnLeft
=
leftDiscussions
?
leftDiscussions
.
every
(
discussion
=>
discussion
.
expanded
)
:
false
;
const
hasExpandedDiscussionOnRight
=
rightDiscussions
?
rightDiscussions
.
every
(
discussion
=>
discussion
.
expanded
)
:
false
;
if
(
hasDiscussion
&&
(
hasExpandedDiscussionOnLeft
||
hasExpandedDiscussionOnRight
))
{
return
true
;
}
const
hasCommentFormOnLeft
=
this
.
diffLineCommentForms
[
leftLineCode
];
const
hasCommentFormOnRight
=
this
.
diffLineCommentForms
[
rightLineCode
];
return
hasCommentFormOnLeft
||
hasCommentFormOnRight
;
},
},
};
</
script
>
...
...
@@ -69,6 +98,7 @@ export default {
:key=
"index"
/>
<parallel-diff-comment-row
v-if=
"shouldRenderCommentRow(line)"
:key=
"line.left.lineCode || line.right.lineCode"
:line=
"line"
:diff-file=
"diffFile"
...
...
spec/javascripts/diffs/components/diff_file_spec.js
View file @
9eef6cd1
...
...
@@ -31,12 +31,12 @@ describe('DiffFile', () => {
describe
(
'
collapsed
'
,
()
=>
{
it
(
'
should not have file content
'
,
done
=>
{
expect
(
vm
.
$el
.
querySelectorAll
(
'
.diff-content
.hidden
'
).
length
).
toEqual
(
0
);
expect
(
vm
.
$el
.
querySelectorAll
(
'
.diff-content
'
).
length
).
toEqual
(
1
);
expect
(
vm
.
file
.
collapsed
).
toEqual
(
false
);
vm
.
file
.
collapsed
=
true
;
vm
.
$nextTick
(()
=>
{
expect
(
vm
.
$el
.
querySelectorAll
(
'
.diff-content
.hidden
'
).
length
).
toEqual
(
1
);
expect
(
vm
.
$el
.
querySelectorAll
(
'
.diff-content
'
).
length
).
toEqual
(
0
);
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