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

63 lines
1.5 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
import { mapGetters, mapState } from 'vuex';
import inlineDiffTableRow from './inline_diff_table_row.vue';
import inlineDiffCommentRow from './inline_diff_comment_row.vue';
export default {
components: {
inlineDiffCommentRow,
inlineDiffTableRow,
},
props: {
diffFile: {
type: Object,
required: true,
},
diffLines: {
type: Array,
required: true,
},
},
computed: {
2018-11-20 20:47:30 +05:30
...mapGetters('diffs', ['commitId', 'shouldRenderInlineCommentRow']),
2018-11-08 19:23:39 +05:30
...mapState({
diffLineCommentForms: state => state.diffs.diffLineCommentForms,
}),
diffLinesLength() {
2018-11-20 20:47:30 +05:30
return this.diffLines.length;
2018-11-08 19:23:39 +05:30
},
userColorScheme() {
return window.gon.user_color_scheme;
},
},
};
</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
2018-11-20 20:47:30 +05:30
v-for="(line, index) in diffLines"
2018-11-08 19:23:39 +05:30
>
<inline-diff-table-row
2018-12-05 23:21:45 +05:30
:key="line.lineCode"
2018-11-08 19:23:39 +05:30
:file-hash="diffFile.fileHash"
:context-lines-path="diffFile.contextLinesPath"
:line="line"
:is-bottom="index + 1 === diffLinesLength"
/>
<inline-diff-comment-row
2018-11-18 11:00:15 +05:30
v-if="shouldRenderInlineCommentRow(line)"
2018-12-05 23:21:45 +05:30
:key="index"
2018-11-08 19:23:39 +05:30
:diff-file-hash="diffFile.fileHash"
:line="line"
:line-index="index"
/>
</template>
</tbody>
</table>
</template>