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

66 lines
1.6 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2019-01-03 12:48:30 +05:30
import { mapState, mapGetters } from 'vuex';
2018-11-08 19:23:39 +05:30
import parallelDiffTableRow from './parallel_diff_table_row.vue';
import parallelDiffCommentRow from './parallel_diff_comment_row.vue';
export default {
components: {
parallelDiffTableRow,
parallelDiffCommentRow,
},
props: {
diffFile: {
type: Object,
required: true,
},
diffLines: {
type: Array,
required: true,
},
},
computed: {
2019-01-03 12:48:30 +05:30
...mapGetters('diffs', ['commitId', 'shouldRenderParallelCommentRow']),
...mapState({
diffLineCommentForms: state => state.diffs.diffLineCommentForms,
}),
2018-11-08 19:23:39 +05:30
diffLinesLength() {
2018-11-20 20:47:30 +05:30
return this.diffLines.length;
2018-11-08 19:23:39 +05:30
},
2019-01-03 12:48:30 +05:30
userColorScheme() {
return window.gon.user_color_scheme;
},
2018-11-08 19:23:39 +05:30
},
};
</script>
<template>
<div
2019-01-03 12:48:30 +05:30
:class="userColorScheme"
2018-11-08 19:23:39 +05:30
:data-commit-id="commitId"
class="code diff-wrap-lines js-syntax-highlight text-file"
>
<table>
<tbody>
2019-01-03 12:48:30 +05:30
<template
v-for="(line, index) in diffLines"
>
2018-11-08 19:23:39 +05:30
<parallel-diff-table-row
2018-12-05 23:21:45 +05:30
:key="index"
2019-01-03 12:48:30 +05:30
:file-hash="diffFile.fileHash"
:context-lines-path="diffFile.contextLinesPath"
2018-11-08 19:23:39 +05:30
:line="line"
:is-bottom="index + 1 === diffLinesLength"
/>
<parallel-diff-comment-row
2019-01-03 12:48:30 +05:30
v-if="shouldRenderParallelCommentRow(line)"
2018-11-08 19:23:39 +05:30
:key="`dcr-${index}`"
:line="line"
2019-01-03 12:48:30 +05:30
:diff-file-hash="diffFile.fileHash"
2018-11-08 19:23:39 +05:30
:line-index="index"
/>
</template>
</tbody>
</table>
</div>
</template>