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
b128816a
Commit
b128816a
authored
Dec 19, 2019
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue where diff discussions would not get rendered
Closes
https://gitlab.com/gitlab-org/gitlab/issues/39095
parent
b5832553
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
52 additions
and
28 deletions
+52
-28
app/assets/javascripts/diffs/components/app.vue
app/assets/javascripts/diffs/components/app.vue
+15
-21
app/assets/javascripts/diffs/store/actions.js
app/assets/javascripts/diffs/store/actions.js
+4
-1
app/assets/javascripts/diffs/store/modules/diff_state.js
app/assets/javascripts/diffs/store/modules/diff_state.js
+1
-0
app/assets/javascripts/diffs/store/mutation_types.js
app/assets/javascripts/diffs/store/mutation_types.js
+1
-0
app/assets/javascripts/diffs/store/mutations.js
app/assets/javascripts/diffs/store/mutations.js
+4
-0
spec/features/merge_request/user_suggests_changes_on_diff_spec.rb
...tures/merge_request/user_suggests_changes_on_diff_spec.rb
+1
-3
spec/javascripts/diffs/components/app_spec.js
spec/javascripts/diffs/components/app_spec.js
+12
-3
spec/javascripts/diffs/store/actions_spec.js
spec/javascripts/diffs/store/actions_spec.js
+4
-0
spec/javascripts/diffs/store/mutations_spec.js
spec/javascripts/diffs/store/mutations_spec.js
+10
-0
No files found.
app/assets/javascripts/diffs/components/app.vue
View file @
b128816a
...
@@ -95,7 +95,6 @@ export default {
...
@@ -95,7 +95,6 @@ export default {
parseInt
(
localStorage
.
getItem
(
TREE_LIST_WIDTH_STORAGE_KEY
),
10
)
||
INITIAL_TREE_WIDTH
;
parseInt
(
localStorage
.
getItem
(
TREE_LIST_WIDTH_STORAGE_KEY
),
10
)
||
INITIAL_TREE_WIDTH
;
return
{
return
{
assignedDiscussions
:
false
,
treeWidth
,
treeWidth
,
};
};
},
},
...
@@ -114,6 +113,7 @@ export default {
...
@@ -114,6 +113,7 @@ export default {
numVisibleFiles
:
state
=>
state
.
diffs
.
size
,
numVisibleFiles
:
state
=>
state
.
diffs
.
size
,
plainDiffPath
:
state
=>
state
.
diffs
.
plainDiffPath
,
plainDiffPath
:
state
=>
state
.
diffs
.
plainDiffPath
,
emailPatchPath
:
state
=>
state
.
diffs
.
emailPatchPath
,
emailPatchPath
:
state
=>
state
.
diffs
.
emailPatchPath
,
retrievingBatches
:
state
=>
state
.
diffs
.
retrievingBatches
,
}),
}),
...
mapState
(
'
diffs
'
,
[
'
showTreeList
'
,
'
isLoading
'
,
'
startVersion
'
]),
...
mapState
(
'
diffs
'
,
[
'
showTreeList
'
,
'
isLoading
'
,
'
startVersion
'
]),
...
mapGetters
(
'
diffs
'
,
[
'
isParallelView
'
,
'
currentDiffIndex
'
]),
...
mapGetters
(
'
diffs
'
,
[
'
isParallelView
'
,
'
currentDiffIndex
'
]),
...
@@ -144,9 +144,6 @@ export default {
...
@@ -144,9 +144,6 @@ export default {
isLimitedContainer
()
{
isLimitedContainer
()
{
return
!
this
.
showTreeList
&&
!
this
.
isParallelView
&&
!
this
.
isFluidLayout
;
return
!
this
.
showTreeList
&&
!
this
.
isParallelView
&&
!
this
.
isFluidLayout
;
},
},
shouldSetDiscussions
()
{
return
this
.
isNotesFetched
&&
!
this
.
assignedDiscussions
&&
!
this
.
isLoading
;
},
},
},
watch
:
{
watch
:
{
diffViewType
()
{
diffViewType
()
{
...
@@ -163,10 +160,8 @@ export default {
...
@@ -163,10 +160,8 @@ export default {
},
},
isLoading
:
'
adjustView
'
,
isLoading
:
'
adjustView
'
,
showTreeList
:
'
adjustView
'
,
showTreeList
:
'
adjustView
'
,
shouldSetDiscussions
(
newVal
)
{
retrievingBatches
(
newVal
)
{
if
(
newVal
)
{
if
(
!
newVal
)
this
.
unwatchDiscussions
();
this
.
setDiscussions
();
}
},
},
},
},
mounted
()
{
mounted
()
{
...
@@ -192,10 +187,14 @@ export default {
...
@@ -192,10 +187,14 @@ export default {
},
},
created
()
{
created
()
{
this
.
adjustView
();
this
.
adjustView
();
eventHub
.
$once
(
'
fetchedNotesData
'
,
this
.
setDiscussions
);
eventHub
.
$once
(
'
fetchDiffData
'
,
this
.
fetchData
);
eventHub
.
$once
(
'
fetchDiffData
'
,
this
.
fetchData
);
eventHub
.
$on
(
'
refetchDiffData
'
,
this
.
refetchDiffData
);
eventHub
.
$on
(
'
refetchDiffData
'
,
this
.
refetchDiffData
);
this
.
CENTERED_LIMITED_CONTAINER_CLASSES
=
CENTERED_LIMITED_CONTAINER_CLASSES
;
this
.
CENTERED_LIMITED_CONTAINER_CLASSES
=
CENTERED_LIMITED_CONTAINER_CLASSES
;
this
.
unwatchDiscussions
=
this
.
$watch
(
()
=>
`
${
this
.
diffFiles
.
length
}
:
${
this
.
$store
.
state
.
notes
.
discussions
.
length
}
`
,
()
=>
this
.
setDiscussions
(),
);
},
},
beforeDestroy
()
{
beforeDestroy
()
{
eventHub
.
$off
(
'
fetchDiffData
'
,
this
.
fetchData
);
eventHub
.
$off
(
'
fetchDiffData
'
,
this
.
fetchData
);
...
@@ -217,7 +216,6 @@ export default {
...
@@ -217,7 +216,6 @@ export default {
'
toggleShowTreeList
'
,
'
toggleShowTreeList
'
,
]),
]),
refetchDiffData
()
{
refetchDiffData
()
{
this
.
assignedDiscussions
=
false
;
this
.
fetchData
(
false
);
this
.
fetchData
(
false
);
},
},
startDiffRendering
()
{
startDiffRendering
()
{
...
@@ -269,17 +267,13 @@ export default {
...
@@ -269,17 +267,13 @@ export default {
}
}
},
},
setDiscussions
()
{
setDiscussions
()
{
if
(
this
.
shouldSetDiscussions
)
{
requestIdleCallback
(
this
.
assignedDiscussions
=
true
;
()
=>
this
.
assignDiscussionsToDiff
()
requestIdleCallback
(
.
then
(
this
.
$nextTick
)
()
=>
.
then
(
this
.
startTaskList
),
this
.
assignDiscussionsToDiff
()
{
timeout
:
1000
},
.
then
(
this
.
$nextTick
)
);
.
then
(
this
.
startTaskList
),
{
timeout
:
1000
},
);
}
},
},
adjustView
()
{
adjustView
()
{
if
(
this
.
shouldShow
)
{
if
(
this
.
shouldShow
)
{
...
...
app/assets/javascripts/diffs/store/actions.js
View file @
b128816a
...
@@ -91,6 +91,7 @@ export const fetchDiffFiles = ({ state, commit }) => {
...
@@ -91,6 +91,7 @@ export const fetchDiffFiles = ({ state, commit }) => {
export
const
fetchDiffFilesBatch
=
({
commit
,
state
})
=>
{
export
const
fetchDiffFilesBatch
=
({
commit
,
state
})
=>
{
commit
(
types
.
SET_BATCH_LOADING
,
true
);
commit
(
types
.
SET_BATCH_LOADING
,
true
);
commit
(
types
.
SET_RETRIEVING_BATCHES
,
true
);
const
getBatch
=
page
=>
const
getBatch
=
page
=>
axios
axios
...
@@ -100,9 +101,11 @@ export const fetchDiffFilesBatch = ({ commit, state }) => {
...
@@ -100,9 +101,11 @@ export const fetchDiffFilesBatch = ({ commit, state }) => {
.
then
(({
data
:
{
pagination
,
diff_files
}
})
=>
{
.
then
(({
data
:
{
pagination
,
diff_files
}
})
=>
{
commit
(
types
.
SET_DIFF_DATA_BATCH
,
{
diff_files
});
commit
(
types
.
SET_DIFF_DATA_BATCH
,
{
diff_files
});
commit
(
types
.
SET_BATCH_LOADING
,
false
);
commit
(
types
.
SET_BATCH_LOADING
,
false
);
if
(
!
pagination
.
next_page
)
commit
(
types
.
SET_RETRIEVING_BATCHES
,
false
);
return
pagination
.
next_page
;
return
pagination
.
next_page
;
})
})
.
then
(
nextPage
=>
nextPage
&&
getBatch
(
nextPage
));
.
then
(
nextPage
=>
nextPage
&&
getBatch
(
nextPage
))
.
catch
(()
=>
commit
(
types
.
SET_RETRIEVING_BATCHES
,
false
));
return
getBatch
()
return
getBatch
()
.
then
(
handleLocationHash
)
.
then
(
handleLocationHash
)
...
...
app/assets/javascripts/diffs/store/modules/diff_state.js
View file @
b128816a
...
@@ -9,6 +9,7 @@ const defaultViewType = INLINE_DIFF_VIEW_TYPE;
...
@@ -9,6 +9,7 @@ const defaultViewType = INLINE_DIFF_VIEW_TYPE;
export
default
()
=>
({
export
default
()
=>
({
isLoading
:
true
,
isLoading
:
true
,
isBatchLoading
:
false
,
isBatchLoading
:
false
,
retrievingBatches
:
false
,
addedLines
:
null
,
addedLines
:
null
,
removedLines
:
null
,
removedLines
:
null
,
endpoint
:
''
,
endpoint
:
''
,
...
...
app/assets/javascripts/diffs/store/mutation_types.js
View file @
b128816a
export
const
SET_BASE_CONFIG
=
'
SET_BASE_CONFIG
'
;
export
const
SET_BASE_CONFIG
=
'
SET_BASE_CONFIG
'
;
export
const
SET_LOADING
=
'
SET_LOADING
'
;
export
const
SET_LOADING
=
'
SET_LOADING
'
;
export
const
SET_BATCH_LOADING
=
'
SET_BATCH_LOADING
'
;
export
const
SET_BATCH_LOADING
=
'
SET_BATCH_LOADING
'
;
export
const
SET_RETRIEVING_BATCHES
=
'
SET_RETRIEVING_BATCHES
'
;
export
const
SET_DIFF_DATA
=
'
SET_DIFF_DATA
'
;
export
const
SET_DIFF_DATA
=
'
SET_DIFF_DATA
'
;
export
const
SET_DIFF_DATA_BATCH
=
'
SET_DIFF_DATA_BATCH
'
;
export
const
SET_DIFF_DATA_BATCH
=
'
SET_DIFF_DATA_BATCH
'
;
export
const
SET_DIFF_VIEW_TYPE
=
'
SET_DIFF_VIEW_TYPE
'
;
export
const
SET_DIFF_VIEW_TYPE
=
'
SET_DIFF_VIEW_TYPE
'
;
...
...
app/assets/javascripts/diffs/store/mutations.js
View file @
b128816a
...
@@ -40,6 +40,10 @@ export default {
...
@@ -40,6 +40,10 @@ export default {
Object
.
assign
(
state
,
{
isBatchLoading
});
Object
.
assign
(
state
,
{
isBatchLoading
});
},
},
[
types
.
SET_RETRIEVING_BATCHES
](
state
,
retrievingBatches
)
{
Object
.
assign
(
state
,
{
retrievingBatches
});
},
[
types
.
SET_DIFF_DATA
](
state
,
data
)
{
[
types
.
SET_DIFF_DATA
](
state
,
data
)
{
if
(
if
(
!
(
!
(
...
...
spec/features/merge_request/user_suggests_changes_on_diff_spec.rb
View file @
b128816a
...
@@ -97,9 +97,7 @@ describe 'User comments on a diff', :js do
...
@@ -97,9 +97,7 @@ describe 'User comments on a diff', :js do
end
end
context
'multiple suggestions in expanded lines'
do
context
'multiple suggestions in expanded lines'
do
# Report issue: https://gitlab.com/gitlab-org/gitlab/issues/38277
it
'suggestions are appliable'
do
# Fix issue: https://gitlab.com/gitlab-org/gitlab/issues/39095
it
'suggestions are appliable'
,
:quarantine
do
diff_file
=
merge_request
.
diffs
(
paths:
[
'files/ruby/popen.rb'
]).
diff_files
.
first
diff_file
=
merge_request
.
diffs
(
paths:
[
'files/ruby/popen.rb'
]).
diff_files
.
first
hash
=
Digest
::
SHA1
.
hexdigest
(
diff_file
.
file_path
)
hash
=
Digest
::
SHA1
.
hexdigest
(
diff_file
.
file_path
)
...
...
spec/javascripts/diffs/components/app_spec.js
View file @
b128816a
...
@@ -69,13 +69,19 @@ describe('diffs/components/app', () => {
...
@@ -69,13 +69,19 @@ describe('diffs/components/app', () => {
describe
(
'
fetch diff methods
'
,
()
=>
{
describe
(
'
fetch diff methods
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
const
fetchResolver
=
()
=>
{
store
.
state
.
diffs
.
retrievingBatches
=
false
;
return
Promise
.
resolve
();
};
spyOn
(
window
,
'
requestIdleCallback
'
).
and
.
callFake
(
fn
=>
fn
());
spyOn
(
window
,
'
requestIdleCallback
'
).
and
.
callFake
(
fn
=>
fn
());
createComponent
();
createComponent
();
spyOn
(
wrapper
.
vm
,
'
fetchDiffFiles
'
).
and
.
callFake
(
()
=>
Promise
.
resolve
()
);
spyOn
(
wrapper
.
vm
,
'
fetchDiffFiles
'
).
and
.
callFake
(
fetchResolver
);
spyOn
(
wrapper
.
vm
,
'
fetchDiffFilesMeta
'
).
and
.
callFake
(
()
=>
Promise
.
resolve
()
);
spyOn
(
wrapper
.
vm
,
'
fetchDiffFilesMeta
'
).
and
.
callFake
(
fetchResolver
);
spyOn
(
wrapper
.
vm
,
'
fetchDiffFilesBatch
'
).
and
.
callFake
(
()
=>
Promise
.
resolve
()
);
spyOn
(
wrapper
.
vm
,
'
fetchDiffFilesBatch
'
).
and
.
callFake
(
fetchResolver
);
spyOn
(
wrapper
.
vm
,
'
setDiscussions
'
);
spyOn
(
wrapper
.
vm
,
'
setDiscussions
'
);
spyOn
(
wrapper
.
vm
,
'
startRenderDiffsQueue
'
);
spyOn
(
wrapper
.
vm
,
'
startRenderDiffsQueue
'
);
spyOn
(
wrapper
.
vm
,
'
unwatchDiscussions
'
);
store
.
state
.
diffs
.
retrievingBatches
=
true
;
});
});
it
(
'
calls fetchDiffFiles if diffsBatchLoad is not enabled
'
,
done
=>
{
it
(
'
calls fetchDiffFiles if diffsBatchLoad is not enabled
'
,
done
=>
{
...
@@ -87,6 +93,7 @@ describe('diffs/components/app', () => {
...
@@ -87,6 +93,7 @@ describe('diffs/components/app', () => {
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
not
.
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
not
.
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
not
.
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
not
.
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
unwatchDiscussions
).
toHaveBeenCalled
();
done
();
done
();
});
});
...
@@ -102,6 +109,7 @@ describe('diffs/components/app', () => {
...
@@ -102,6 +109,7 @@ describe('diffs/components/app', () => {
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
unwatchDiscussions
).
toHaveBeenCalled
();
});
});
});
});
...
@@ -114,6 +122,7 @@ describe('diffs/components/app', () => {
...
@@ -114,6 +122,7 @@ describe('diffs/components/app', () => {
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
startRenderDiffsQueue
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesMeta
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
fetchDiffFilesBatch
).
toHaveBeenCalled
();
expect
(
wrapper
.
vm
.
unwatchDiscussions
).
toHaveBeenCalled
();
});
});
});
});
});
});
...
...
spec/javascripts/diffs/store/actions_spec.js
View file @
b128816a
...
@@ -163,10 +163,12 @@ describe('DiffsStoreActions', () => {
...
@@ -163,10 +163,12 @@ describe('DiffsStoreActions', () => {
{
endpointBatch
},
{
endpointBatch
},
[
[
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
true
},
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
true
},
{
type
:
types
.
SET_RETRIEVING_BATCHES
,
payload
:
true
},
{
type
:
types
.
SET_DIFF_DATA_BATCH
,
payload
:
{
diff_files
:
res1
.
diff_files
}
},
{
type
:
types
.
SET_DIFF_DATA_BATCH
,
payload
:
{
diff_files
:
res1
.
diff_files
}
},
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
false
},
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
false
},
{
type
:
types
.
SET_DIFF_DATA_BATCH
,
payload
:
{
diff_files
:
[]
}
},
{
type
:
types
.
SET_DIFF_DATA_BATCH
,
payload
:
{
diff_files
:
[]
}
},
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
false
},
{
type
:
types
.
SET_BATCH_LOADING
,
payload
:
false
},
{
type
:
types
.
SET_RETRIEVING_BATCHES
,
payload
:
false
},
],
],
[],
[],
()
=>
{
()
=>
{
...
@@ -215,6 +217,8 @@ describe('DiffsStoreActions', () => {
...
@@ -215,6 +217,8 @@ describe('DiffsStoreActions', () => {
describe
(
'
assignDiscussionsToDiff
'
,
()
=>
{
describe
(
'
assignDiscussionsToDiff
'
,
()
=>
{
it
(
'
should merge discussions into diffs
'
,
done
=>
{
it
(
'
should merge discussions into diffs
'
,
done
=>
{
window
.
location
.
hash
=
'
ABC_123
'
;
const
state
=
{
const
state
=
{
diffFiles
:
[
diffFiles
:
[
{
{
...
...
spec/javascripts/diffs/store/mutations_spec.js
View file @
b128816a
...
@@ -40,6 +40,16 @@ describe('DiffsStoreMutations', () => {
...
@@ -40,6 +40,16 @@ describe('DiffsStoreMutations', () => {
});
});
});
});
describe
(
'
SET_RETRIEVING_BATCHES
'
,
()
=>
{
it
(
'
should set retrievingBatches state
'
,
()
=>
{
const
state
=
{};
mutations
[
types
.
SET_RETRIEVING_BATCHES
](
state
,
false
);
expect
(
state
.
retrievingBatches
).
toEqual
(
false
);
});
});
describe
(
'
SET_DIFF_DATA
'
,
()
=>
{
describe
(
'
SET_DIFF_DATA
'
,
()
=>
{
it
(
'
should set diff data type properly
'
,
()
=>
{
it
(
'
should set diff data type properly
'
,
()
=>
{
const
state
=
{};
const
state
=
{};
...
...
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