2018-06-21 08:22:40 -04:00
|
|
|
<script>
|
2018-10-03 05:05:43 -04:00
|
|
|
import { mapActions, mapGetters, mapState } from 'vuex';
|
2018-11-15 03:31:07 -05:00
|
|
|
import { GlTooltipDirective } from '@gitlab/ui';
|
2018-10-03 05:05:43 -04:00
|
|
|
import { __ } from '~/locale';
|
|
|
|
import { getParameterValues, mergeUrlParams } from '~/lib/utils/url_utility';
|
|
|
|
import Icon from '~/vue_shared/components/icon.vue';
|
2018-06-21 08:22:40 -04:00
|
|
|
import CompareVersionsDropdown from './compare_versions_dropdown.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
CompareVersionsDropdown,
|
2018-10-03 05:05:43 -04:00
|
|
|
Icon,
|
|
|
|
},
|
|
|
|
directives: {
|
2018-11-05 08:12:40 -05:00
|
|
|
GlTooltip: GlTooltipDirective,
|
2018-06-21 08:22:40 -04:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
mergeRequestDiffs: {
|
|
|
|
type: Array,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
mergeRequestDiff: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
startVersion: {
|
|
|
|
type: Object,
|
|
|
|
required: false,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
targetBranch: {
|
|
|
|
type: Object,
|
|
|
|
required: false,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
2018-10-03 05:05:43 -04:00
|
|
|
...mapState('diffs', ['commit', 'showTreeList']),
|
2018-11-07 08:03:13 -05:00
|
|
|
...mapGetters('diffs', ['isInlineView', 'isParallelView', 'hasCollapsedFile']),
|
2018-06-21 08:22:40 -04:00
|
|
|
comparableDiffs() {
|
|
|
|
return this.mergeRequestDiffs.slice(1);
|
|
|
|
},
|
2018-10-03 05:05:43 -04:00
|
|
|
toggleWhitespaceText() {
|
2018-10-29 12:16:40 -04:00
|
|
|
if (this.isWhitespaceVisible()) {
|
2018-10-03 05:05:43 -04:00
|
|
|
return __('Hide whitespace changes');
|
|
|
|
}
|
|
|
|
return __('Show whitespace changes');
|
|
|
|
},
|
|
|
|
toggleWhitespacePath() {
|
2018-10-29 12:16:40 -04:00
|
|
|
if (this.isWhitespaceVisible()) {
|
2018-10-03 05:05:43 -04:00
|
|
|
return mergeUrlParams({ w: 1 }, window.location.href);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mergeUrlParams({ w: 0 }, window.location.href);
|
|
|
|
},
|
|
|
|
showDropdowns() {
|
|
|
|
return !this.commit && this.mergeRequestDiffs.length;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions('diffs', [
|
|
|
|
'setInlineDiffViewType',
|
|
|
|
'setParallelDiffViewType',
|
|
|
|
'expandAllFiles',
|
|
|
|
'toggleShowTreeList',
|
|
|
|
]),
|
2018-10-29 12:16:40 -04:00
|
|
|
isWhitespaceVisible() {
|
|
|
|
return getParameterValues('w')[0] !== '1';
|
|
|
|
},
|
2018-06-21 08:22:40 -04:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="mr-version-controls">
|
2018-11-16 15:07:38 -05:00
|
|
|
<div class="mr-version-menus-container content-block">
|
2018-10-03 05:05:43 -04:00
|
|
|
<button
|
2018-11-15 03:31:07 -05:00
|
|
|
v-gl-tooltip.hover
|
2018-10-03 05:05:43 -04:00
|
|
|
type="button"
|
|
|
|
class="btn btn-default append-right-8 js-toggle-tree-list"
|
|
|
|
:class="{
|
2018-11-16 15:07:38 -05:00
|
|
|
active: showTreeList,
|
2018-10-03 05:05:43 -04:00
|
|
|
}"
|
|
|
|
:title="__('Toggle file browser')"
|
|
|
|
@click="toggleShowTreeList"
|
|
|
|
>
|
2018-11-16 15:07:38 -05:00
|
|
|
<icon name="hamburger" />
|
2018-10-03 05:05:43 -04:00
|
|
|
</button>
|
2018-11-16 15:07:38 -05:00
|
|
|
<div v-if="showDropdowns" class="d-flex align-items-center compare-versions-container">
|
2018-10-03 05:05:43 -04:00
|
|
|
Changes between
|
|
|
|
<compare-versions-dropdown
|
|
|
|
:other-versions="mergeRequestDiffs"
|
|
|
|
:merge-request-version="mergeRequestDiff"
|
|
|
|
:show-commit-count="true"
|
|
|
|
class="mr-version-dropdown"
|
|
|
|
/>
|
|
|
|
and
|
|
|
|
<compare-versions-dropdown
|
|
|
|
:other-versions="comparableDiffs"
|
|
|
|
:start-version="startVersion"
|
|
|
|
:target-branch="targetBranch"
|
|
|
|
class="mr-version-compare-dropdown"
|
|
|
|
/>
|
|
|
|
</div>
|
2018-11-16 15:07:38 -05:00
|
|
|
<div class="inline-parallel-buttons d-none d-md-flex ml-auto">
|
|
|
|
<a v-show="hasCollapsedFile" class="btn btn-default append-right-8" @click="expandAllFiles">
|
2018-10-03 05:05:43 -04:00
|
|
|
{{ __('Expand all') }}
|
|
|
|
</a>
|
2018-11-16 15:07:38 -05:00
|
|
|
<a :href="toggleWhitespacePath" class="btn btn-default qa-toggle-whitespace">
|
2018-10-03 05:05:43 -04:00
|
|
|
{{ toggleWhitespaceText }}
|
|
|
|
</a>
|
|
|
|
<div class="btn-group prepend-left-8">
|
|
|
|
<button
|
|
|
|
id="inline-diff-btn"
|
|
|
|
:class="{ active: isInlineView }"
|
|
|
|
type="button"
|
|
|
|
class="btn js-inline-diff-button"
|
|
|
|
data-view-type="inline"
|
|
|
|
@click="setInlineDiffViewType"
|
|
|
|
>
|
|
|
|
{{ __('Inline') }}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
id="parallel-diff-btn"
|
|
|
|
:class="{ active: isParallelView }"
|
|
|
|
type="button"
|
|
|
|
class="btn js-parallel-diff-button"
|
|
|
|
data-view-type="parallel"
|
|
|
|
@click="setParallelDiffViewType"
|
|
|
|
>
|
|
|
|
{{ __('Side-by-side') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-21 08:22:40 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|