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

102 lines
3.1 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2020-07-28 23:09:34 +05:30
import { mapGetters, mapState } from 'vuex';
2020-11-24 15:15:51 +05:30
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
2020-06-23 00:09:42 +05:30
import draftCommentsMixin from '~/diffs/mixins/draft_comments';
import InlineDraftCommentRow from '~/batch_comments/components/inline_draft_comment_row.vue';
2018-11-08 19:23:39 +05:30
import inlineDiffTableRow from './inline_diff_table_row.vue';
import inlineDiffCommentRow from './inline_diff_comment_row.vue';
2019-10-12 21:52:04 +05:30
import inlineDiffExpansionRow from './inline_diff_expansion_row.vue';
2020-07-28 23:09:34 +05:30
import { getCommentedLines } from '~/notes/components/multiline_comment_utils';
2018-11-08 19:23:39 +05:30
export default {
components: {
inlineDiffCommentRow,
inlineDiffTableRow,
2020-06-23 00:09:42 +05:30
InlineDraftCommentRow,
2019-10-12 21:52:04 +05:30
inlineDiffExpansionRow,
2018-11-08 19:23:39 +05:30
},
2020-11-24 15:15:51 +05:30
mixins: [draftCommentsMixin, glFeatureFlagsMixin()],
2018-11-08 19:23:39 +05:30
props: {
diffFile: {
type: Object,
required: true,
},
diffLines: {
type: Array,
required: true,
},
2019-02-15 15:39:39 +05:30
helpPagePath: {
type: String,
required: false,
default: '',
},
2018-11-08 19:23:39 +05:30
},
computed: {
2019-02-15 15:39:39 +05:30
...mapGetters('diffs', ['commitId']),
2020-07-28 23:09:34 +05:30
...mapState({
selectedCommentPosition: ({ notes }) => notes.selectedCommentPosition,
selectedCommentPositionHover: ({ notes }) => notes.selectedCommentPositionHover,
}),
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
},
2020-07-28 23:09:34 +05:30
commentedLines() {
return getCommentedLines(
this.selectedCommentPosition || this.selectedCommentPositionHover,
this.diffLines,
);
},
2018-11-08 19:23:39 +05:30
},
2019-02-15 15:39:39 +05:30
userColorScheme: window.gon.user_color_scheme,
2018-11-08 19:23:39 +05:30
};
</script>
<template>
<table
2019-02-15 15:39:39 +05:30
:class="$options.userColorScheme"
2018-11-08 19:23:39 +05:30
:data-commit-id="commitId"
2019-02-15 15:39:39 +05:30
class="code diff-wrap-lines js-syntax-highlight text-file js-diff-inline-view"
>
2019-12-21 20:55:43 +05:30
<colgroup>
<col style="width: 50px;" />
<col style="width: 50px;" />
2020-04-08 14:13:33 +05:30
<col style="width: 8px;" />
2019-12-21 20:55:43 +05:30
<col />
</colgroup>
2018-11-08 19:23:39 +05:30
<tbody>
2019-02-15 15:39:39 +05:30
<template v-for="(line, index) in diffLines">
2019-10-12 21:52:04 +05:30
<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"
/>
2018-11-08 19:23:39 +05:30
<inline-diff-table-row
2019-10-12 21:52:04 +05:30
:key="`${line.line_code || index}`"
2019-02-15 15:39:39 +05:30
:file-hash="diffFile.file_hash"
2020-04-08 14:13:33 +05:30
:file-path="diffFile.file_path"
2018-11-08 19:23:39 +05:30
:line="line"
:is-bottom="index + 1 === diffLinesLength"
2020-07-28 23:09:34 +05:30
:is-commented="index >= commentedLines.startLine && index <= commentedLines.endLine"
2018-11-08 19:23:39 +05:30
/>
<inline-diff-comment-row
2019-02-15 15:39:39 +05:30
:key="`icr-${line.line_code || index}`"
:diff-file-hash="diffFile.file_hash"
2018-11-08 19:23:39 +05:30
:line="line"
2019-02-15 15:39:39 +05:30
:help-page-path="helpPagePath"
2019-09-30 21:07:59 +05:30
:has-draft="shouldRenderDraftRow(diffFile.file_hash, line) || false"
2018-11-08 19:23:39 +05:30
/>
2019-07-07 11:18:12 +05:30
<inline-draft-comment-row
v-if="shouldRenderDraftRow(diffFile.file_hash, line)"
:key="`draft_${index}`"
:draft="draftForLine(diffFile.file_hash, line)"
2020-06-23 00:09:42 +05:30
:diff-file="diffFile"
:line="line"
2019-07-07 11:18:12 +05:30
/>
2018-11-08 19:23:39 +05:30
</template>
</tbody>
</table>
</template>