Commit f378b397 authored by Paul Slaughter's avatar Paul Slaughter

Merge branch '118442-step2-restyle-changes-header-and-file-tree' into 'master'

Restyle file tree

Closes #118442

See merge request gitlab-org/gitlab!24342
parents 32b6c537 4e4a8a02
...@@ -5,12 +5,14 @@ ...@@ -5,12 +5,14 @@
*/ */
import FileRow from '~/vue_shared/components/file_row.vue'; import FileRow from '~/vue_shared/components/file_row.vue';
import FileRowStats from './file_row_stats.vue'; import FileRowStats from './file_row_stats.vue';
import ChangedFileIcon from '~/vue_shared/components/changed_file_icon.vue';
export default { export default {
name: 'DiffFileRow', name: 'DiffFileRow',
components: { components: {
FileRow, FileRow,
FileRowStats, FileRowStats,
ChangedFileIcon,
}, },
props: { props: {
file: { file: {
...@@ -31,7 +33,8 @@ export default { ...@@ -31,7 +33,8 @@ export default {
</script> </script>
<template> <template>
<file-row :file="file" :hide-file-stats="hideFileStats" v-bind="$attrs" v-on="$listeners"> <file-row :file="file" v-bind="$attrs" v-on="$listeners">
<file-row-stats v-if="showFileRowStats" :file="file" /> <file-row-stats v-if="showFileRowStats" :file="file" class="mr-1" />
<changed-file-icon :file="file" :size="16" />
</file-row> </file-row>
</template> </template>
...@@ -95,8 +95,6 @@ export default { ...@@ -95,8 +95,6 @@ export default {
:file="file" :file="file"
:level="0" :level="0"
:hide-file-stats="hideFileStats" :hide-file-stats="hideFileStats"
:hide-extra-on-tree="true"
:show-changed-icon="true"
:file-row-component="$options.DiffFileRow" :file-row-component="$options.DiffFileRow"
@toggleTreeOpen="toggleTreeOpen" @toggleTreeOpen="toggleTreeOpen"
@clickFile="scrollToFile" @clickFile="scrollToFile"
......
<script> <script>
import FileHeader from '~/vue_shared/components/file_row_header.vue'; import FileHeader from '~/vue_shared/components/file_row_header.vue';
import FileIcon from '~/vue_shared/components/file_icon.vue'; import FileIcon from '~/vue_shared/components/file_icon.vue';
import ChangedFileIcon from '~/vue_shared/components/changed_file_icon.vue';
export default { export default {
name: 'FileRow', name: 'FileRow',
components: { components: {
FileHeader, FileHeader,
FileIcon, FileIcon,
ChangedFileIcon,
}, },
props: { props: {
file: { file: {
...@@ -19,11 +17,6 @@ export default { ...@@ -19,11 +17,6 @@ export default {
type: Number, type: Number,
required: true, required: true,
}, },
showChangedIcon: {
type: Boolean,
required: false,
default: false,
},
}, },
computed: { computed: {
isTree() { isTree() {
...@@ -121,15 +114,14 @@ export default { ...@@ -121,15 +114,14 @@ export default {
<div class="file-row-name-container"> <div class="file-row-name-container">
<span ref="textOutput" :style="levelIndentation" class="file-row-name str-truncated"> <span ref="textOutput" :style="levelIndentation" class="file-row-name str-truncated">
<file-icon <file-icon
v-if="!showChangedIcon || file.type === 'tree'"
class="file-row-icon" class="file-row-icon"
:class="{ 'text-secondary': file.type === 'tree' }"
:file-name="file.name" :file-name="file.name"
:loading="file.loading" :loading="file.loading"
:folder="isTree" :folder="isTree"
:opened="file.opened" :opened="file.opened"
:size="16" :size="16"
/> />
<changed-file-icon v-else :file="file" :size="16" class="append-right-5" />
{{ file.name }} {{ file.name }}
</span> </span>
<slot></slot> <slot></slot>
......
---
title: Restyle Merge Request diffs file tree
merge_request: 24342
author:
type: changed
...@@ -2,6 +2,7 @@ import { shallowMount } from '@vue/test-utils'; ...@@ -2,6 +2,7 @@ import { shallowMount } from '@vue/test-utils';
import DiffFileRow from '~/diffs/components/diff_file_row.vue'; import DiffFileRow from '~/diffs/components/diff_file_row.vue';
import FileRow from '~/vue_shared/components/file_row.vue'; import FileRow from '~/vue_shared/components/file_row.vue';
import FileRowStats from '~/diffs/components/file_row_stats.vue'; import FileRowStats from '~/diffs/components/file_row_stats.vue';
import ChangedFileIcon from '~/vue_shared/components/changed_file_icon.vue';
describe('Diff File Row component', () => { describe('Diff File Row component', () => {
let wrapper; let wrapper;
...@@ -38,6 +39,21 @@ describe('Diff File Row component', () => { ...@@ -38,6 +39,21 @@ describe('Diff File Row component', () => {
); );
}); });
it('renders ChangedFileIcon component', () => {
createComponent({
level: 4,
file: {},
hideFileStats: false,
});
expect(wrapper.find(ChangedFileIcon).props()).toEqual(
expect.objectContaining({
file: {},
size: 16,
}),
);
});
describe('FileRowStats components', () => { describe('FileRowStats components', () => {
it.each` it.each`
type | hideFileStats | value | desc type | hideFileStats | value | desc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment