fc0ff7cf03
- expand upwards - expand downwards - expand all in both inline and parallel views
86 lines
2.5 KiB
Vue
86 lines
2.5 KiB
Vue
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import draftCommentsMixin from 'ee_else_ce/diffs/mixins/draft_comments';
|
|
import inlineDiffTableRow from './inline_diff_table_row.vue';
|
|
import inlineDiffCommentRow from './inline_diff_comment_row.vue';
|
|
import inlineDiffExpansionRow from './inline_diff_expansion_row.vue';
|
|
|
|
export default {
|
|
components: {
|
|
inlineDiffCommentRow,
|
|
inlineDiffTableRow,
|
|
InlineDraftCommentRow: () =>
|
|
import('ee_component/batch_comments/components/inline_draft_comment_row.vue'),
|
|
inlineDiffExpansionRow,
|
|
},
|
|
mixins: [draftCommentsMixin],
|
|
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"
|
|
>
|
|
<!-- Need to insert an empty row to solve "table-layout:fixed" equal width when expansion row is the first line -->
|
|
<tr>
|
|
<td style="width: 50px;"></td>
|
|
<td style="width: 50px;"></td>
|
|
<td></td>
|
|
</tr>
|
|
<tbody>
|
|
<template v-for="(line, index) in diffLines">
|
|
<inline-diff-expansion-row
|
|
:key="`expand-${index}`"
|
|
:file-hash="diffFile.file_hash"
|
|
:context-lines-path="diffFile.context_lines_path"
|
|
:line="line"
|
|
:is-top="index === 0"
|
|
:is-bottom="index + 1 === diffLinesLength"
|
|
/>
|
|
<inline-diff-table-row
|
|
:key="`${line.line_code || index}`"
|
|
: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"
|
|
:has-draft="shouldRenderDraftRow(diffFile.file_hash, line) || false"
|
|
/>
|
|
<inline-draft-comment-row
|
|
v-if="shouldRenderDraftRow(diffFile.file_hash, line)"
|
|
:key="`draft_${index}`"
|
|
:draft="draftForLine(diffFile.file_hash, line)"
|
|
/>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
</template>
|