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

58 lines
1.3 KiB
Vue
Raw Normal View History

2018-06-21 08:22:40 -04:00
<script>
import { mapGetters } from 'vuex';
import parallelDiffTableRow from './parallel_diff_table_row.vue';
import parallelDiffCommentRow from './parallel_diff_comment_row.vue';
2018-06-21 08:22:40 -04:00
export default {
components: {
parallelDiffTableRow,
parallelDiffCommentRow,
},
props: {
diffFile: {
type: Object,
required: true,
},
diffLines: {
type: Array,
required: true,
},
},
2018-06-21 08:22:40 -04:00
computed: {
...mapGetters('diffs', ['commitId']),
diffLinesLength() {
2018-08-06 17:13:34 -04:00
return this.diffLines.length;
},
2018-06-21 08:22:40 -04:00
},
userColorScheme: window.gon.user_color_scheme,
2018-06-21 08:22:40 -04:00
};
</script>
<template>
<div
:class="$options.userColorScheme"
2018-06-21 08:22:40 -04:00
:data-commit-id="commitId"
class="code diff-wrap-lines js-syntax-highlight text-file"
>
2018-06-21 08:22:40 -04:00
<table>
<tbody>
2018-11-16 15:07:38 -05:00
<template v-for="(line, index) in diffLines">
<parallel-diff-table-row
:key="index"
:file-hash="diffFile.file_hash"
:context-lines-path="diffFile.context_lines_path"
:line="line"
:is-bottom="index + 1 === diffLinesLength"
/>
2018-08-13 04:47:54 -04:00
<parallel-diff-comment-row
:key="`dcr-${index}`"
:line="line"
:diff-file-hash="diffFile.file_hash"
:line-index="index"
2018-08-13 04:47:54 -04:00
/>
2018-06-21 08:22:40 -04:00
</template>
</tbody>
</table>
</div>
</template>