79 lines
2 KiB
Vue
79 lines
2 KiB
Vue
<script>
|
|
import { mapGetters, mapState } from 'vuex';
|
|
import inlineDiffTableRow from './inline_diff_table_row.vue';
|
|
import inlineDiffCommentRow from './inline_diff_comment_row.vue';
|
|
import { trimFirstCharOfLineContent } from '../store/utils';
|
|
|
|
export default {
|
|
components: {
|
|
inlineDiffCommentRow,
|
|
inlineDiffTableRow,
|
|
},
|
|
props: {
|
|
diffFile: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
diffLines: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters('diffs', ['commitId']),
|
|
...mapGetters(['discussionsByLineCode']),
|
|
...mapState({
|
|
diffLineCommentForms: state => state.diffs.diffLineCommentForms,
|
|
}),
|
|
normalizedDiffLines() {
|
|
return this.diffLines.map(line => (line.richText ? trimFirstCharOfLineContent(line) : line));
|
|
},
|
|
diffLinesLength() {
|
|
return this.normalizedDiffLines.length;
|
|
},
|
|
userColorScheme() {
|
|
return window.gon.user_color_scheme;
|
|
},
|
|
},
|
|
methods: {
|
|
shouldRenderCommentRow(line) {
|
|
if (this.diffLineCommentForms[line.lineCode]) return true;
|
|
|
|
const lineDiscussions = this.discussionsByLineCode[line.lineCode];
|
|
if (lineDiscussions === undefined) {
|
|
return false;
|
|
}
|
|
|
|
return lineDiscussions.every(discussion => discussion.expanded);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<table
|
|
:class="userColorScheme"
|
|
:data-commit-id="commitId"
|
|
class="code diff-wrap-lines js-syntax-highlight text-file js-diff-inline-view">
|
|
<tbody>
|
|
<template
|
|
v-for="(line, index) in normalizedDiffLines"
|
|
>
|
|
<inline-diff-table-row
|
|
:file-hash="diffFile.fileHash"
|
|
:context-lines-path="diffFile.contextLinesPath"
|
|
:line="line"
|
|
:is-bottom="index + 1 === diffLinesLength"
|
|
:key="line.lineCode"
|
|
/>
|
|
<inline-diff-comment-row
|
|
v-if="shouldRenderCommentRow(line)"
|
|
:diff-file-hash="diffFile.fileHash"
|
|
:line="line"
|
|
:line-index="index"
|
|
:key="index"
|
|
/>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
</template>
|