debian-mirror-gitlab/app/assets/javascripts/diffs/components/diff_expansion_cell.vue

254 lines
7 KiB
Vue
Raw Normal View History

2019-10-12 21:52:04 +05:30
<script>
2020-11-24 15:15:51 +05:30
import { GlIcon } from '@gitlab/ui';
2021-03-11 19:13:27 +05:30
import { mapState, mapActions } from 'vuex';
2021-09-04 01:27:46 +05:30
import createFlash from '~/flash';
2020-11-24 15:15:51 +05:30
import { s__, sprintf } from '~/locale';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
2021-02-22 17:27:13 +05:30
import { UNFOLD_COUNT, INLINE_DIFF_VIEW_TYPE, INLINE_DIFF_LINES_KEY } from '../constants';
2019-10-12 21:52:04 +05:30
import * as utils from '../store/utils';
const EXPAND_ALL = 0;
const EXPAND_UP = 1;
const EXPAND_DOWN = 2;
2020-04-08 14:13:33 +05:30
const lineNumberByViewType = (viewType, diffLine) => {
const numberGetters = {
2021-03-08 18:12:59 +05:30
[INLINE_DIFF_VIEW_TYPE]: (line) => line?.new_line,
2020-04-08 14:13:33 +05:30
};
const numberGetter = numberGetters[viewType];
return numberGetter && numberGetter(diffLine);
};
2020-11-24 15:15:51 +05:30
const i18n = {
showMore: sprintf(s__('Diffs|Show %{unfoldCount} lines'), { unfoldCount: UNFOLD_COUNT }),
showAll: s__('Diffs|Show all unchanged lines'),
};
2019-10-12 21:52:04 +05:30
export default {
2020-11-24 15:15:51 +05:30
i18n,
2019-10-12 21:52:04 +05:30
components: {
2020-11-24 15:15:51 +05:30
GlIcon,
2019-10-12 21:52:04 +05:30
},
2020-11-24 15:15:51 +05:30
mixins: [glFeatureFlagsMixin()],
2019-10-12 21:52:04 +05:30
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,
},
},
computed: {
...mapState({
2021-03-08 18:12:59 +05:30
diffFiles: (state) => state.diffs.diffFiles,
2019-10-12 21:52:04 +05:30
}),
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);
2021-02-22 17:27:13 +05:30
const index = utils.getPreviousLineIndex(INLINE_DIFF_VIEW_TYPE, diffFile, {
2019-10-12 21:52:04 +05:30
oldLineNumber,
newLineNumber,
});
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
return (
lineNumberByViewType(INLINE_DIFF_VIEW_TYPE, diffFile[INLINE_DIFF_LINES_KEY][index - 2]) || 0
);
2019-10-12 21:52:04 +05:30
},
callLoadMoreLines(
endpoint,
params,
lineNumbers,
fileHash,
isExpandDown = false,
nextLineNumbers = {},
) {
this.loadMoreLines({ endpoint, params, lineNumbers, fileHash, isExpandDown, nextLineNumbers })
.then(() => {
this.isRequesting = false;
})
.catch(() => {
2021-09-04 01:27:46 +05:30
createFlash({
message: s__('Diffs|Something went wrong while fetching diff lines.'),
});
2019-10-12 21:52:04 +05:30
this.isRequesting = false;
});
},
handleExpandLines(type = EXPAND_ALL) {
if (this.isRequesting) {
return;
}
this.isRequesting = true;
const endpoint = this.contextLinesPath;
const { fileHash } = this;
2021-02-22 17:27:13 +05:30
const view = INLINE_DIFF_VIEW_TYPE;
2019-10-12 21:52:04 +05:30
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-04-08 14:13:33 +05:30
handleExpandUpLines(expandOptions) {
2019-10-12 21:52:04 +05:30
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>
2021-01-29 00:20:46 +05:30
<div class="content js-line-expansion-content">
2022-04-04 11:22:00 +05:30
<button
type="button"
:disabled="!canExpandDown"
class="js-unfold-down gl-mx-2 gl-py-4 gl-cursor-pointer"
2021-01-29 00:20:46 +05:30
@click="handleExpandLines(EXPAND_DOWN)"
>
2021-02-22 17:27:13 +05:30
<gl-icon :size="12" name="expand-down" />
2021-01-29 00:20:46 +05:30
<span>{{ $options.i18n.showMore }}</span>
2022-04-04 11:22:00 +05:30
</button>
<button
type="button"
class="js-unfold-all gl-mx-2 gl-py-4 gl-cursor-pointer"
@click="handleExpandLines()"
>
2021-02-22 17:27:13 +05:30
<gl-icon :size="12" name="expand" />
2021-01-29 00:20:46 +05:30
<span>{{ $options.i18n.showAll }}</span>
2022-04-04 11:22:00 +05:30
</button>
<button
type="button"
:disabled="!canExpandUp"
class="js-unfold gl-mx-2 gl-py-4 gl-cursor-pointer"
2021-01-29 00:20:46 +05:30
@click="handleExpandLines(EXPAND_UP)"
>
2021-02-22 17:27:13 +05:30
<gl-icon :size="12" name="expand-up" />
2021-01-29 00:20:46 +05:30
<span>{{ $options.i18n.showMore }}</span>
2022-04-04 11:22:00 +05:30
</button>
2021-01-29 00:20:46 +05:30
</div>
2019-10-12 21:52:04 +05:30
</template>