60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<script>
|
|
import { mapGetters } 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,
|
|
},
|
|
helpPagePath: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters('diffs', ['commitId']),
|
|
diffLinesLength() {
|
|
return this.diffLines.length;
|
|
},
|
|
},
|
|
userColorScheme: window.gon.user_color_scheme,
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<table
|
|
:class="$options.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 diffLines">
|
|
<inline-diff-table-row
|
|
:key="line.line_code"
|
|
:file-hash="diffFile.file_hash"
|
|
:context-lines-path="diffFile.context_lines_path"
|
|
:line="line"
|
|
:is-bottom="index + 1 === diffLinesLength"
|
|
/>
|
|
<inline-diff-comment-row
|
|
:key="`icr-${line.line_code || index}`"
|
|
:diff-file-hash="diffFile.file_hash"
|
|
:line="line"
|
|
:help-page-path="helpPagePath"
|
|
/>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
</template>
|