240 lines
6.6 KiB
Vue
240 lines
6.6 KiB
Vue
<script>
|
|
import { mapActions, mapGetters, mapState } from 'vuex';
|
|
import { escape } from 'lodash';
|
|
import { GlLoadingIcon, GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui';
|
|
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
|
|
import { __, sprintf } from '~/locale';
|
|
import { deprecatedCreateFlash as createFlash } from '~/flash';
|
|
import { hasDiff } from '~/helpers/diffs_helper';
|
|
import eventHub from '../../notes/event_hub';
|
|
import DiffFileHeader from './diff_file_header.vue';
|
|
import DiffContent from './diff_content.vue';
|
|
import { diffViewerErrors } from '~/ide/constants';
|
|
|
|
export default {
|
|
components: {
|
|
DiffFileHeader,
|
|
DiffContent,
|
|
GlLoadingIcon,
|
|
},
|
|
directives: {
|
|
SafeHtml,
|
|
},
|
|
mixins: [glFeatureFlagsMixin()],
|
|
props: {
|
|
file: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
canCurrentUserFork: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
helpPagePath: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
viewDiffsFileByFile: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isLoadingCollapsedDiff: false,
|
|
forkMessageVisible: false,
|
|
isCollapsed: this.file.viewer.automaticallyCollapsed || false,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState('diffs', ['currentDiffFileId']),
|
|
...mapGetters(['isNotesFetched']),
|
|
...mapGetters('diffs', ['getDiffFileDiscussions']),
|
|
viewBlobLink() {
|
|
return sprintf(
|
|
__('You can %{linkStart}view the blob%{linkEnd} instead.'),
|
|
{
|
|
linkStart: `<a href="${escape(this.file.view_path)}">`,
|
|
linkEnd: '</a>',
|
|
},
|
|
false,
|
|
);
|
|
},
|
|
showLoadingIcon() {
|
|
return this.isLoadingCollapsedDiff || (!this.file.renderIt && !this.isCollapsed);
|
|
},
|
|
hasDiff() {
|
|
return hasDiff(this.file);
|
|
},
|
|
isFileTooLarge() {
|
|
return this.file.viewer.error === diffViewerErrors.too_large;
|
|
},
|
|
errorMessage() {
|
|
return this.file.viewer.error_message;
|
|
},
|
|
forkMessage() {
|
|
return sprintf(
|
|
__(
|
|
"You're not allowed to %{tag_start}edit%{tag_end} files in this project directly. Please fork this project, make your changes there, and submit a merge request.",
|
|
),
|
|
{
|
|
tag_start: '<span class="js-file-fork-suggestion-section-action">',
|
|
tag_end: '</span>',
|
|
},
|
|
false,
|
|
);
|
|
},
|
|
},
|
|
watch: {
|
|
isCollapsed: function fileCollapsedWatch(newVal, oldVal) {
|
|
if (!newVal && oldVal && !this.hasDiff) {
|
|
this.handleLoadCollapsedDiff();
|
|
}
|
|
|
|
this.setFileCollapsed({ filePath: this.file.file_path, collapsed: newVal });
|
|
},
|
|
'file.file_hash': {
|
|
handler: function watchFileHash() {
|
|
if (this.viewDiffsFileByFile && this.file.viewer.automaticallyCollapsed) {
|
|
this.isCollapsed = false;
|
|
this.handleLoadCollapsedDiff();
|
|
} else {
|
|
this.isCollapsed = this.file.viewer.automaticallyCollapsed || false;
|
|
}
|
|
},
|
|
immediate: true,
|
|
},
|
|
'file.viewer.automaticallyCollapsed': function setIsCollapsed(newVal) {
|
|
if (!this.viewDiffsFileByFile) {
|
|
this.isCollapsed = newVal;
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
eventHub.$on(`loadCollapsedDiff/${this.file.file_hash}`, this.handleLoadCollapsedDiff);
|
|
},
|
|
methods: {
|
|
...mapActions('diffs', [
|
|
'loadCollapsedDiff',
|
|
'assignDiscussionsToDiff',
|
|
'setRenderIt',
|
|
'setFileCollapsed',
|
|
]),
|
|
handleToggle() {
|
|
if (!this.hasDiff) {
|
|
this.handleLoadCollapsedDiff();
|
|
} else {
|
|
this.isCollapsed = !this.isCollapsed;
|
|
this.setRenderIt(this.file);
|
|
}
|
|
},
|
|
handleLoadCollapsedDiff() {
|
|
this.isLoadingCollapsedDiff = true;
|
|
|
|
this.loadCollapsedDiff(this.file)
|
|
.then(() => {
|
|
this.isLoadingCollapsedDiff = false;
|
|
this.isCollapsed = false;
|
|
this.setRenderIt(this.file);
|
|
})
|
|
.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.file_hash"
|
|
:class="{
|
|
'is-active': currentDiffFileId === file.file_hash,
|
|
'comments-disabled': Boolean(file.brokenSymlink),
|
|
}"
|
|
:data-path="file.new_path"
|
|
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"
|
|
:view-diffs-file-by-file="viewDiffsFileByFile"
|
|
class="js-file-title file-title"
|
|
@toggleFile="handleToggle"
|
|
@showForkMessage="showForkMessage"
|
|
/>
|
|
|
|
<div v-if="forkMessageVisible" class="js-file-fork-suggestion-section file-fork-suggestion">
|
|
<span v-safe-html="forkMessage" class="file-fork-suggestion-note"></span>
|
|
<a
|
|
:href="file.fork_path"
|
|
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>
|
|
<gl-loading-icon v-if="showLoadingIcon" class="diff-content loading" />
|
|
<template v-else>
|
|
<div :id="`diff-content-${file.file_hash}`">
|
|
<div v-if="errorMessage" class="diff-viewer">
|
|
<div v-safe-html="errorMessage" class="nothing-here-block"></div>
|
|
</div>
|
|
<template v-else>
|
|
<div v-show="isCollapsed" 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>
|
|
<diff-content
|
|
v-show="!isCollapsed && !isFileTooLarge"
|
|
:diff-file="file"
|
|
:help-page-path="helpPagePath"
|
|
/>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
</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>
|