gitlab-org--gitlab-foss/app/assets/javascripts/diffs/components/inline_diff_view.vue

78 lines
2.0 KiB
Vue
Raw Normal View History

2018-06-21 12:22:40 +00:00
<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';
2018-06-21 12:22:40 +00:00
export default {
components: {
inlineDiffCommentRow,
inlineDiffTableRow,
},
props: {
diffFile: {
type: Object,
required: true,
},
diffLines: {
type: Array,
required: true,
},
},
computed: {
...mapGetters('diffs', [
'commitId',
'shouldRenderInlineCommentRow',
'singleDiscussionByLineCode',
]),
...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;
},
2018-06-21 12:22:40 +00:00
},
methods: {
discussionsList(line) {
return line.lineCode !== undefined ? this.singleDiscussionByLineCode(line.lineCode) : [];
},
},
2018-06-21 12:22:40 +00:00
};
</script>
<template>
<table
:class="userColorScheme"
:data-commit-id="commitId"
class="code diff-wrap-lines js-syntax-highlight text-file js-diff-inline-view">
2018-06-21 12:22:40 +00:00
<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"
2018-06-21 12:22:40 +00:00
:key="line.lineCode"
:discussions="discussionsList(line)"
/>
<inline-diff-comment-row
v-if="shouldRenderInlineCommentRow(line)"
:diff-file-hash="diffFile.fileHash"
:line="line"
:line-index="index"
2018-06-21 12:22:40 +00:00
:key="index"
:discussions="discussionsList(line)"
/>
2018-06-21 12:22:40 +00:00
</template>
</tbody>
</table>
</template>