Skip to content

Commit

Permalink
Merge pull request #32218 from nextcloud/revert-30925-feature/breadcr…
Browse files Browse the repository at this point in the history
…umb_menu_parent_folder_visible

Revert "Show the child folders in the breadcrumb menu when on a parent entry."
  • Loading branch information
szaimen committed Apr 29, 2022
2 parents 033d527 + 66e61be commit 2d938ab
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 31 deletions.
23 changes: 3 additions & 20 deletions apps/files/js/breadcrumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@
BreadCrumb.prototype = {
$el: null,
dir: null,
maxDepthDir: null,
dirInfo: null,
activeItemIndex: 0,

/**
* Total width of all breadcrumbs
Expand All @@ -83,9 +81,6 @@
dir = dir.replace(/\\/g, '/');
dir = dir || '/';
if (dir !== this.dir) {
if ((this.maxDepthDir || "").search(dir) !== 0) {
this.maxDepthDir = dir;
}
this.dir = dir;
this.render();
}
Expand Down Expand Up @@ -123,7 +118,7 @@
// Menu is destroyed on every change, we need to init it
OC.unregisterMenu($('.crumbmenu > .icon-more'), $('.crumbmenu > .popovermenu'));

var parts = this._makeCrumbs(this.maxDepthDir || '/');
var parts = this._makeCrumbs(this.dir || '/');
var $crumb;
var $menuItem;
this.$el.empty();
Expand Down Expand Up @@ -168,24 +163,19 @@
if(menuPart.dir) {
$menuItem = $('<li class="crumblist"><a><span class="icon-folder"></span><span></span></a></li>');
$menuItem.data('dir', menuPart.dir);
$menuItem.find('a').attr('href', this.getCrumbUrl(menuPart, j));
$menuItem.find('a').attr('href', this.getCrumbUrl(part, j));
$menuItem.find('span:eq(1)').text(menuPart.name);
this.$menu.children('ul').append($menuItem);
if (this.onClick) {
$menuItem.on('click', this.onClick);
}
}
}

_.each(this._detailViews, function(view) {
view.render({
dirInfo: this.dirInfo
});

if (this.breadcrumbs.length > 2) {
this.breadcrumbs[this.activeItemIndex + 2].append(view.$el);
}

$crumb.append(view.$el);
$menuItem.append(view.$el.clone(true));
}, this);

Expand Down Expand Up @@ -238,15 +228,8 @@
for (var i = 0; i < parts.length; i++) {
var part = parts[i];
pathToHere = pathToHere + '/' + part;

let classes = "";
if (pathToHere === this.dir) {
this.activeItemIndex = i;
classes = "active";
}
crumbs.push({
dir: pathToHere,
class: classes,
name: part
});
}
Expand Down
6 changes: 2 additions & 4 deletions apps/files/tests/js/breadcrumbSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,13 @@ describe('OCA.Files.BreadCrumb tests', function() {
expect($crumbs.eq(1).find('a').hasClass('icon-home')).toEqual(true);
expect($crumbs.eq(1).data('dir')).toEqual('/');
});
it('Renders complete directory when switching to root', function() {
it('Renders root when switching to root', function() {
var $crumbs;
bc.setDirectory('/somedir');
bc.setDirectory('/');
$crumbs = bc.$el.find('.crumb');
expect($crumbs.length).toEqual(3);
expect($crumbs.length).toEqual(2);
expect($crumbs.eq(1).data('dir')).toEqual('/');
expect($crumbs.eq(2).data('dir')).toEqual('/somedir');
expect($crumbs.eq(2).attr('class').includes("active")).toEqual(false);
});
it('Renders single path section', function() {
var $crumbs;
Expand Down
15 changes: 8 additions & 7 deletions core/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1182,13 +1182,6 @@ div.crumb {
order: 3;
}
}
&.active {
font-weight: bold;
// Allow multiple span next to the main 'a'
a ~ span {
padding-left: 0;
}
}
> a,
> span {
position: relative;
Expand All @@ -1213,6 +1206,14 @@ div.crumb {
}
&:not(:first-child) a {
}
&:last-child {
font-weight: bold;
margin-right: 10px;
// Allow multiple span next to the main 'a'
a ~ span {
padding-left: 0;
}
}
&:hover, &:focus, a:focus, &:active {
opacity: 1;

Expand Down

0 comments on commit 2d938ab

Please sign in to comment.