Commit e055f7d3 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'diff-fix-folder-path-commas' into 'master'

Fixed diff tree folders being rendered incorrectly

See merge request gitlab-org/gitlab-ce!24635
parents d42762ce f10d75ec
import _ from 'underscore'; import _ from 'underscore';
import { diffModes } from '~/ide/constants'; import { diffModes } from '~/ide/constants';
import { truncatePathMiddleToLength } from '~/lib/utils/text_utility';
import { import {
LINE_POSITION_LEFT, LINE_POSITION_LEFT,
LINE_POSITION_RIGHT, LINE_POSITION_RIGHT,
...@@ -306,7 +307,7 @@ export const getLowestSingleFolder = folder => { ...@@ -306,7 +307,7 @@ export const getLowestSingleFolder = folder => {
if (shouldGetFolder) { if (shouldGetFolder) {
const firstFolder = getFolder(file); const firstFolder = getFolder(file);
path.push(firstFolder.path); path.push(...firstFolder.path);
tree.push(...firstFolder.tree); tree.push(...firstFolder.tree);
} }
...@@ -321,7 +322,7 @@ export const getLowestSingleFolder = folder => { ...@@ -321,7 +322,7 @@ export const getLowestSingleFolder = folder => {
const { path, tree } = getFolder(folder, [folder.name]); const { path, tree } = getFolder(folder, [folder.name]);
return { return {
path: path.join('/'), path: truncatePathMiddleToLength(path.join('/'), 40),
treeAcc: tree.length ? tree[tree.length - 1].tree : null, treeAcc: tree.length ? tree[tree.length - 1].tree : null,
}; };
}; };
......
...@@ -1029,7 +1029,7 @@ ...@@ -1029,7 +1029,7 @@
position: sticky; position: sticky;
$top-pos: $header-height + $mr-tabs-height + $mr-version-controls-height + 10px; $top-pos: $header-height + $mr-tabs-height + $mr-version-controls-height + 10px;
top: $header-height + $mr-tabs-height + $mr-version-controls-height + 10px; top: $header-height + $mr-tabs-height + $mr-version-controls-height + 10px;
max-height: calc(100vh - $top-pos); max-height: calc(100vh - #{$top-pos});
padding-right: $gl-padding; padding-right: $gl-padding;
.file-row { .file-row {
...@@ -1040,7 +1040,7 @@ ...@@ -1040,7 +1040,7 @@
.with-performance-bar & { .with-performance-bar & {
$performance-bar-top-pos: $performance-bar-height + $top-pos; $performance-bar-top-pos: $performance-bar-height + $top-pos;
top: $performance-bar-top-pos; top: $performance-bar-top-pos;
max-height: calc(100vh - $performance-bar-top-pos); max-height: calc(100vh - #{$performance-bar-top-pos});
} }
} }
......
...@@ -665,6 +665,47 @@ describe('DiffsStoreUtils', () => { ...@@ -665,6 +665,47 @@ describe('DiffsStoreUtils', () => {
}, },
], ],
}, },
{
type: 'tree',
name: 'ee',
tree: [
{
type: 'tree',
name: 'lib',
tree: [
{
type: 'tree',
name: 'ee',
tree: [
{
type: 'tree',
name: 'gitlab',
tree: [
{
type: 'tree',
name: 'checks',
tree: [
{
type: 'tree',
name: 'longtreenametomakepath',
tree: [
{
type: 'blob',
name: 'diff_check.rb',
tree: [],
},
],
},
],
},
],
},
],
},
],
},
],
},
{ {
type: 'tree', type: 'tree',
name: 'spec', name: 'spec',
...@@ -696,6 +737,17 @@ describe('DiffsStoreUtils', () => { ...@@ -696,6 +737,17 @@ describe('DiffsStoreUtils', () => {
}, },
], ],
}, },
{
type: 'tree',
name: 'ee/lib/…/…/…/longtreenametomakepath',
tree: [
{
name: 'diff_check.rb',
tree: [],
type: 'blob',
},
],
},
{ {
type: 'tree', type: 'tree',
name: 'spec', name: 'spec',
......
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