205 lines
5.2 KiB
Vue
205 lines
5.2 KiB
Vue
<script>
|
|
import { mapActions, mapGetters, mapState } from 'vuex';
|
|
import _ from 'underscore';
|
|
import { __, sprintf } from '~/locale';
|
|
import createFlash from '~/flash';
|
|
import { GlLoadingIcon } from '@gitlab-org/gitlab-ui';
|
|
import DiffFileHeader from './diff_file_header.vue';
|
|
import DiffContent from './diff_content.vue';
|
|
|
|
export default {
|
|
components: {
|
|
DiffFileHeader,
|
|
DiffContent,
|
|
GlLoadingIcon,
|
|
},
|
|
props: {
|
|
file: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
canCurrentUserFork: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isLoadingCollapsedDiff: false,
|
|
forkMessageVisible: false,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState('diffs', ['currentDiffFileId']),
|
|
...mapGetters(['isNotesFetched']),
|
|
...mapGetters('diffs', ['getDiffFileDiscussions']),
|
|
isCollapsed() {
|
|
return this.file.collapsed || false;
|
|
},
|
|
viewBlobLink() {
|
|
return sprintf(
|
|
__('You can %{linkStart}view the blob%{linkEnd} instead.'),
|
|
{
|
|
linkStart: `<a href="${_.escape(this.file.viewPath)}">`,
|
|
linkEnd: '</a>',
|
|
},
|
|
false,
|
|
);
|
|
},
|
|
showExpandMessage() {
|
|
return (
|
|
this.isCollapsed ||
|
|
(!this.file.highlightedDiffLines &&
|
|
!this.isLoadingCollapsedDiff &&
|
|
!this.file.tooLarge &&
|
|
this.file.text)
|
|
);
|
|
},
|
|
showLoadingIcon() {
|
|
return this.isLoadingCollapsedDiff || (!this.file.renderIt && !this.isCollapsed);
|
|
},
|
|
hasDiffLines() {
|
|
const { highlightedDiffLines, parallelDiffLines } = this.file;
|
|
|
|
return highlightedDiffLines && parallelDiffLines && parallelDiffLines.length > 0;
|
|
},
|
|
},
|
|
watch: {
|
|
'file.collapsed': function fileCollapsedWatch(newVal, oldVal) {
|
|
if (!newVal && oldVal && !this.hasDiffLines) {
|
|
this.handleLoadCollapsedDiff();
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
...mapActions('diffs', ['loadCollapsedDiff', 'assignDiscussionsToDiff']),
|
|
handleToggle() {
|
|
if (!this.hasDiffLines) {
|
|
this.handleLoadCollapsedDiff();
|
|
} else {
|
|
this.file.collapsed = !this.file.collapsed;
|
|
this.file.renderIt = true;
|
|
}
|
|
},
|
|
handleLoadCollapsedDiff() {
|
|
this.isLoadingCollapsedDiff = true;
|
|
|
|
this.loadCollapsedDiff(this.file)
|
|
.then(() => {
|
|
this.isLoadingCollapsedDiff = false;
|
|
this.file.collapsed = false;
|
|
this.file.renderIt = true;
|
|
})
|
|
.then(() => {
|
|
requestIdleCallback(
|
|
() => {
|
|
this.assignDiscussionsToDiff(this.getDiffFileDiscussions(this.file));
|
|
},
|
|
{ timeout: 1000 },
|
|
);
|
|
})
|
|
.catch(() => {
|
|
this.isLoadingCollapsedDiff = false;
|
|
createFlash(__('Something went wrong on our end. Please try again!'));
|
|
});
|
|
},
|
|
showForkMessage() {
|
|
this.forkMessageVisible = true;
|
|
},
|
|
hideForkMessage() {
|
|
this.forkMessageVisible = false;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:id="file.fileHash"
|
|
:class="{
|
|
'is-active': currentDiffFileId === file.fileHash
|
|
}"
|
|
class="diff-file file-holder"
|
|
>
|
|
<diff-file-header
|
|
:can-current-user-fork="canCurrentUserFork"
|
|
:diff-file="file"
|
|
:collapsible="true"
|
|
:expanded="!isCollapsed"
|
|
:add-merge-request-buttons="true"
|
|
class="js-file-title file-title"
|
|
@toggleFile="handleToggle"
|
|
@showForkMessage="showForkMessage"
|
|
/>
|
|
|
|
<div
|
|
v-if="forkMessageVisible"
|
|
class="js-file-fork-suggestion-section file-fork-suggestion">
|
|
<span class="file-fork-suggestion-note">
|
|
You're not allowed to <span class="js-file-fork-suggestion-section-action">edit</span>
|
|
files in this project directly. Please fork this project,
|
|
make your changes there, and submit a merge request.
|
|
</span>
|
|
<a
|
|
:href="file.forkPath"
|
|
class="js-fork-suggestion-button btn btn-grouped btn-inverted btn-success"
|
|
>
|
|
Fork
|
|
</a>
|
|
<button
|
|
class="js-cancel-fork-suggestion-button btn btn-grouped"
|
|
type="button"
|
|
@click="hideForkMessage"
|
|
>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
|
|
<diff-content
|
|
v-if="!isCollapsed && file.renderIt"
|
|
:class="{ hidden: isCollapsed || file.tooLarge }"
|
|
:diff-file="file"
|
|
/>
|
|
<gl-loading-icon
|
|
v-if="showLoadingIcon"
|
|
class="diff-content loading"
|
|
/>
|
|
<div
|
|
v-else-if="showExpandMessage"
|
|
class="nothing-here-block diff-collapsed"
|
|
>
|
|
{{ __('This diff is collapsed.') }}
|
|
<a
|
|
class="click-to-expand js-click-to-expand"
|
|
href="#"
|
|
@click.prevent="handleToggle"
|
|
>
|
|
{{ __('Click to expand it.') }}
|
|
</a>
|
|
</div>
|
|
<div
|
|
v-if="file.tooLarge"
|
|
class="nothing-here-block diff-collapsed js-too-large-diff"
|
|
>
|
|
{{ __('This source diff could not be displayed because it is too large.') }}
|
|
<span v-html="viewBlobLink"></span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
@keyframes shadow-fade {
|
|
from {
|
|
box-shadow: 0 0 4px #919191;
|
|
}
|
|
|
|
to {
|
|
box-shadow: 0 0 0 #dfdfdf;
|
|
}
|
|
}
|
|
|
|
.diff-file.is-active {
|
|
box-shadow: 0 0 0 #dfdfdf;
|
|
animation: shadow-fade 1.2s 0.1s 1;
|
|
}
|
|
</style>
|