2019-08-09 22:36:32 -04:00
|
|
|
<script>
|
2019-12-09 07:07:58 -05:00
|
|
|
import { mapState, mapActions } from 'vuex';
|
2020-08-24 11:10:11 -04:00
|
|
|
import { GlIcon } from '@gitlab/ui';
|
2020-08-20 05:09:55 -04:00
|
|
|
import { deprecatedCreateFlash as createFlash } from '~/flash';
|
2020-08-27 05:10:18 -04:00
|
|
|
import { s__, sprintf } from '~/locale';
|
2020-08-26 08:10:53 -04:00
|
|
|
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
|
2020-02-20 13:08:51 -05:00
|
|
|
import { UNFOLD_COUNT, INLINE_DIFF_VIEW_TYPE, PARALLEL_DIFF_VIEW_TYPE } from '../constants';
|
2019-08-09 22:36:32 -04:00
|
|
|
import * as utils from '../store/utils';
|
|
|
|
|
|
|
|
const EXPAND_ALL = 0;
|
|
|
|
const EXPAND_UP = 1;
|
|
|
|
const EXPAND_DOWN = 2;
|
|
|
|
|
2020-02-20 13:08:51 -05:00
|
|
|
const lineNumberByViewType = (viewType, diffLine) => {
|
|
|
|
const numberGetters = {
|
|
|
|
[INLINE_DIFF_VIEW_TYPE]: line => line?.new_line,
|
|
|
|
[PARALLEL_DIFF_VIEW_TYPE]: line => (line?.right || line?.left)?.new_line,
|
|
|
|
};
|
|
|
|
const numberGetter = numberGetters[viewType];
|
|
|
|
return numberGetter && numberGetter(diffLine);
|
|
|
|
};
|
|
|
|
|
2020-08-27 05:10:18 -04:00
|
|
|
const i18n = {
|
|
|
|
showMore: sprintf(s__('Diffs|Show %{unfoldCount} lines'), { unfoldCount: UNFOLD_COUNT }),
|
|
|
|
showAll: s__('Diffs|Show all unchanged lines'),
|
|
|
|
};
|
|
|
|
|
2019-08-09 22:36:32 -04:00
|
|
|
export default {
|
2020-08-27 05:10:18 -04:00
|
|
|
i18n,
|
2019-08-09 22:36:32 -04:00
|
|
|
components: {
|
2020-08-24 11:10:11 -04:00
|
|
|
GlIcon,
|
2019-08-09 22:36:32 -04:00
|
|
|
},
|
2020-08-26 08:10:53 -04:00
|
|
|
mixins: [glFeatureFlagsMixin()],
|
2019-08-09 22:36:32 -04:00
|
|
|
props: {
|
|
|
|
fileHash: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
contextLinesPath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
line: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
isTop: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
isBottom: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
colspan: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
2020-03-17 14:09:44 -04:00
|
|
|
default: 4,
|
2019-08-09 22:36:32 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
2020-08-26 08:10:53 -04:00
|
|
|
diffViewType(state) {
|
2020-09-17 08:09:37 -04:00
|
|
|
return this.glFeatures.unifiedDiffLines ? INLINE_DIFF_VIEW_TYPE : state.diffs.diffViewType;
|
2020-08-26 08:10:53 -04:00
|
|
|
},
|
2019-08-09 22:36:32 -04:00
|
|
|
diffFiles: state => state.diffs.diffFiles,
|
|
|
|
}),
|
|
|
|
canExpandUp() {
|
|
|
|
return !this.isBottom;
|
|
|
|
},
|
|
|
|
canExpandDown() {
|
|
|
|
return this.isBottom || !this.isTop;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.EXPAND_DOWN = EXPAND_DOWN;
|
|
|
|
this.EXPAND_UP = EXPAND_UP;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions('diffs', ['loadMoreLines']),
|
|
|
|
getPrevLineNumber(oldLineNumber, newLineNumber) {
|
|
|
|
const diffFile = utils.findDiffFile(this.diffFiles, this.fileHash);
|
2020-02-20 13:08:51 -05:00
|
|
|
const lines = {
|
|
|
|
[INLINE_DIFF_VIEW_TYPE]: diffFile.highlighted_diff_lines,
|
|
|
|
[PARALLEL_DIFF_VIEW_TYPE]: diffFile.parallel_diff_lines,
|
|
|
|
};
|
|
|
|
const index = utils.getPreviousLineIndex(this.diffViewType, diffFile, {
|
2019-08-09 22:36:32 -04:00
|
|
|
oldLineNumber,
|
|
|
|
newLineNumber,
|
|
|
|
});
|
2020-02-20 13:08:51 -05:00
|
|
|
|
|
|
|
return lineNumberByViewType(this.diffViewType, lines[this.diffViewType][index - 2]) || 0;
|
2019-08-09 22:36:32 -04:00
|
|
|
},
|
|
|
|
callLoadMoreLines(
|
|
|
|
endpoint,
|
|
|
|
params,
|
|
|
|
lineNumbers,
|
|
|
|
fileHash,
|
|
|
|
isExpandDown = false,
|
|
|
|
nextLineNumbers = {},
|
|
|
|
) {
|
|
|
|
this.loadMoreLines({ endpoint, params, lineNumbers, fileHash, isExpandDown, nextLineNumbers })
|
|
|
|
.then(() => {
|
|
|
|
this.isRequesting = false;
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
createFlash(s__('Diffs|Something went wrong while fetching diff lines.'));
|
|
|
|
this.isRequesting = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
handleExpandLines(type = EXPAND_ALL) {
|
|
|
|
if (this.isRequesting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.isRequesting = true;
|
|
|
|
const endpoint = this.contextLinesPath;
|
|
|
|
const { fileHash } = this;
|
|
|
|
const view = this.diffViewType;
|
|
|
|
const oldLineNumber = this.line.meta_data.old_pos || 0;
|
|
|
|
const newLineNumber = this.line.meta_data.new_pos || 0;
|
|
|
|
const offset = newLineNumber - oldLineNumber;
|
|
|
|
|
|
|
|
const expandOptions = { endpoint, fileHash, view, oldLineNumber, newLineNumber, offset };
|
|
|
|
|
|
|
|
if (type === EXPAND_UP) {
|
|
|
|
this.handleExpandUpLines(expandOptions);
|
|
|
|
} else if (type === EXPAND_DOWN) {
|
|
|
|
this.handleExpandDownLines(expandOptions);
|
|
|
|
} else {
|
|
|
|
this.handleExpandAllLines(expandOptions);
|
|
|
|
}
|
|
|
|
},
|
2020-02-20 13:08:51 -05:00
|
|
|
handleExpandUpLines(expandOptions) {
|
2019-08-09 22:36:32 -04:00
|
|
|
const { endpoint, fileHash, view, oldLineNumber, newLineNumber, offset } = expandOptions;
|
|
|
|
|
|
|
|
const bottom = this.isBottom;
|
|
|
|
const lineNumber = newLineNumber - 1;
|
|
|
|
const to = lineNumber;
|
|
|
|
let since = lineNumber - UNFOLD_COUNT;
|
|
|
|
let unfold = true;
|
|
|
|
|
|
|
|
const prevLineNumber = this.getPrevLineNumber(oldLineNumber, newLineNumber);
|
|
|
|
if (since <= prevLineNumber + 1) {
|
|
|
|
since = prevLineNumber + 1;
|
|
|
|
unfold = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = { since, to, bottom, offset, unfold, view };
|
|
|
|
const lineNumbers = { oldLineNumber, newLineNumber };
|
|
|
|
this.callLoadMoreLines(endpoint, params, lineNumbers, fileHash);
|
|
|
|
},
|
|
|
|
handleExpandDownLines(expandOptions) {
|
|
|
|
const {
|
|
|
|
endpoint,
|
|
|
|
fileHash,
|
|
|
|
view,
|
|
|
|
oldLineNumber: metaOldPos,
|
|
|
|
newLineNumber: metaNewPos,
|
|
|
|
offset,
|
|
|
|
} = expandOptions;
|
|
|
|
|
|
|
|
const bottom = true;
|
|
|
|
const nextLineNumbers = {
|
|
|
|
old_line: metaOldPos,
|
|
|
|
new_line: metaNewPos,
|
|
|
|
};
|
|
|
|
|
|
|
|
let unfold = true;
|
|
|
|
let isExpandDown = false;
|
|
|
|
let oldLineNumber = metaOldPos;
|
|
|
|
let newLineNumber = metaNewPos;
|
|
|
|
let lineNumber = metaNewPos + 1;
|
|
|
|
let since = lineNumber;
|
|
|
|
let to = lineNumber + UNFOLD_COUNT;
|
|
|
|
|
|
|
|
if (!this.isBottom) {
|
|
|
|
const prevLineNumber = this.getPrevLineNumber(oldLineNumber, newLineNumber);
|
|
|
|
|
|
|
|
isExpandDown = true;
|
|
|
|
oldLineNumber = prevLineNumber - offset;
|
|
|
|
newLineNumber = prevLineNumber;
|
|
|
|
lineNumber = prevLineNumber + 1;
|
|
|
|
since = lineNumber;
|
|
|
|
to = lineNumber + UNFOLD_COUNT;
|
|
|
|
|
|
|
|
if (to >= metaNewPos) {
|
|
|
|
to = metaNewPos - 1;
|
|
|
|
unfold = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = { since, to, bottom, offset, unfold, view };
|
|
|
|
const lineNumbers = { oldLineNumber, newLineNumber };
|
|
|
|
this.callLoadMoreLines(
|
|
|
|
endpoint,
|
|
|
|
params,
|
|
|
|
lineNumbers,
|
|
|
|
fileHash,
|
|
|
|
isExpandDown,
|
|
|
|
nextLineNumbers,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
handleExpandAllLines(expandOptions) {
|
|
|
|
const { endpoint, fileHash, view, oldLineNumber, newLineNumber, offset } = expandOptions;
|
|
|
|
const bottom = this.isBottom;
|
|
|
|
const unfold = false;
|
|
|
|
let since;
|
|
|
|
let to;
|
|
|
|
|
|
|
|
if (this.isTop) {
|
|
|
|
since = 1;
|
|
|
|
to = newLineNumber - 1;
|
|
|
|
} else if (bottom) {
|
|
|
|
since = newLineNumber + 1;
|
|
|
|
to = -1;
|
|
|
|
} else {
|
|
|
|
const prevLineNumber = this.getPrevLineNumber(oldLineNumber, newLineNumber);
|
|
|
|
since = prevLineNumber + 1;
|
|
|
|
to = newLineNumber - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = { since, to, bottom, offset, unfold, view };
|
|
|
|
const lineNumbers = { oldLineNumber, newLineNumber };
|
|
|
|
this.callLoadMoreLines(endpoint, params, lineNumbers, fileHash);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2020-08-27 05:10:18 -04:00
|
|
|
<td :colspan="colspan" class="text-center gl-font-regular">
|
2019-08-11 19:46:49 -04:00
|
|
|
<div class="content js-line-expansion-content">
|
2019-08-09 22:36:32 -04:00
|
|
|
<a
|
2020-08-27 05:10:18 -04:00
|
|
|
v-if="canExpandDown"
|
|
|
|
class="gl-mx-2 gl-cursor-pointer js-unfold-down gl-display-inline-block gl-py-4"
|
|
|
|
@click="handleExpandLines(EXPAND_DOWN)"
|
2019-08-09 22:36:32 -04:00
|
|
|
>
|
2020-08-27 05:10:18 -04:00
|
|
|
<gl-icon :size="12" name="expand-down" aria-hidden="true" />
|
|
|
|
<span>{{ $options.i18n.showMore }}</span>
|
2019-08-09 22:36:32 -04:00
|
|
|
</a>
|
2020-08-27 05:10:18 -04:00
|
|
|
<a class="gl-mx-2 cursor-pointer js-unfold-all" @click="handleExpandLines()">
|
|
|
|
<gl-icon :size="12" name="expand" aria-hidden="true" />
|
|
|
|
<span>{{ $options.i18n.showAll }}</span>
|
2019-08-09 22:36:32 -04:00
|
|
|
</a>
|
|
|
|
<a
|
2020-08-27 05:10:18 -04:00
|
|
|
v-if="canExpandUp"
|
|
|
|
class="gl-mx-2 gl-cursor-pointer js-unfold gl-display-inline-block gl-py-4"
|
|
|
|
@click="handleExpandLines(EXPAND_UP)"
|
2019-08-09 22:36:32 -04:00
|
|
|
>
|
2020-08-27 05:10:18 -04:00
|
|
|
<gl-icon :size="12" name="expand-up" aria-hidden="true" />
|
|
|
|
<span>{{ $options.i18n.showMore }}</span>
|
2019-08-09 22:36:32 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</template>
|