2019-03-02 22:35:43 +05:30
|
|
|
<script>
|
|
|
|
import { mapActions, mapGetters, mapState } from 'vuex';
|
2020-11-24 15:15:51 +05:30
|
|
|
import { GlButtonGroup, GlButton, GlDropdown } from '@gitlab/ui';
|
|
|
|
import { __ } from '~/locale';
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-11-24 15:15:51 +05:30
|
|
|
GlButtonGroup,
|
|
|
|
GlButton,
|
|
|
|
GlDropdown,
|
2019-03-02 22:35:43 +05:30
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters('diffs', ['isInlineView', 'isParallelView']),
|
|
|
|
...mapState('diffs', ['renderTreeList', 'showWhitespace']),
|
|
|
|
},
|
2020-11-24 15:15:51 +05:30
|
|
|
mounted() {
|
|
|
|
this.patchAriaLabel();
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
this.patchAriaLabel();
|
|
|
|
},
|
2019-03-02 22:35:43 +05:30
|
|
|
methods: {
|
|
|
|
...mapActions('diffs', [
|
|
|
|
'setInlineDiffViewType',
|
|
|
|
'setParallelDiffViewType',
|
|
|
|
'setRenderTreeList',
|
|
|
|
'setShowWhitespace',
|
|
|
|
]),
|
2020-11-24 15:15:51 +05:30
|
|
|
patchAriaLabel() {
|
|
|
|
this.$el
|
|
|
|
.querySelector('.js-show-diff-settings')
|
|
|
|
.setAttribute('aria-label', __('Diff view settings'));
|
|
|
|
},
|
2019-03-02 22:35:43 +05:30
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2020-11-24 15:15:51 +05:30
|
|
|
<gl-dropdown icon="settings" toggle-class="js-show-diff-settings" right>
|
|
|
|
<div class="gl-px-3">
|
|
|
|
<span class="gl-font-weight-bold gl-display-block gl-mb-2">{{ __('File browser') }}</span>
|
|
|
|
<gl-button-group class="gl-display-flex">
|
|
|
|
<gl-button
|
|
|
|
:class="{ selected: !renderTreeList }"
|
|
|
|
class="gl-w-half js-list-view"
|
|
|
|
@click="setRenderTreeList(false)"
|
|
|
|
>
|
|
|
|
{{ __('List view') }}
|
|
|
|
</gl-button>
|
|
|
|
<gl-button
|
|
|
|
:class="{ selected: renderTreeList }"
|
|
|
|
class="gl-w-half js-tree-view"
|
|
|
|
@click="setRenderTreeList(true)"
|
|
|
|
>
|
|
|
|
{{ __('Tree view') }}
|
|
|
|
</gl-button>
|
|
|
|
</gl-button-group>
|
|
|
|
</div>
|
|
|
|
<div class="gl-mt-3 gl-px-3">
|
|
|
|
<span class="gl-font-weight-bold gl-display-block gl-mb-2">{{ __('Compare changes') }}</span>
|
|
|
|
<gl-button-group class="gl-display-flex js-diff-view-buttons">
|
|
|
|
<gl-button
|
|
|
|
id="inline-diff-btn"
|
|
|
|
:class="{ selected: isInlineView }"
|
|
|
|
class="gl-w-half js-inline-diff-button"
|
|
|
|
data-view-type="inline"
|
|
|
|
@click="setInlineDiffViewType"
|
|
|
|
>
|
|
|
|
{{ __('Inline') }}
|
|
|
|
</gl-button>
|
|
|
|
<gl-button
|
|
|
|
id="parallel-diff-btn"
|
|
|
|
:class="{ selected: isParallelView }"
|
|
|
|
class="gl-w-half js-parallel-diff-button"
|
|
|
|
data-view-type="parallel"
|
|
|
|
@click="setParallelDiffViewType"
|
|
|
|
>
|
|
|
|
{{ __('Side-by-side') }}
|
|
|
|
</gl-button>
|
|
|
|
</gl-button-group>
|
|
|
|
</div>
|
|
|
|
<div class="gl-mt-3 gl-px-3">
|
|
|
|
<label class="gl-mb-0">
|
|
|
|
<input
|
|
|
|
id="show-whitespace"
|
|
|
|
type="checkbox"
|
|
|
|
:checked="showWhitespace"
|
|
|
|
@change="setShowWhitespace({ showWhitespace: $event.target.checked, pushState: true })"
|
|
|
|
/>
|
|
|
|
{{ __('Show whitespace changes') }}
|
|
|
|
</label>
|
2019-03-02 22:35:43 +05:30
|
|
|
</div>
|
2020-11-24 15:15:51 +05:30
|
|
|
</gl-dropdown>
|
2019-03-02 22:35:43 +05:30
|
|
|
</template>
|