Navigating to the root folder is already handled by
OCA.Files.Navigation.setActiveItem in case the view doesn't change.
Signed-off-by: Julius Härtl <jus@bitgrid.net>
*/
_onShow: function(e) {
if (this.shown) {
- this._setCurrentDir('/', false);
- this.reload();
+ if (e.itemId === this.id) {
+ this._setCurrentDir('/', false);
+ }
+ // Only reload if we don't navigate to a different directory
+ if (typeof e.dir === 'undefined' || e.dir === this.getCurrentDirectory()) {
+ this.reload();
+ }
}
this.shown = true;
},
this.$currentContent = $('#app-content-' + (typeof itemView === 'string' && itemView !== '' ? itemView : itemId));
this.$currentContent.removeClass('hidden');
if (!options || !options.silent) {
- this.$currentContent.trigger(jQuery.Event('show'));
+ this.$currentContent.trigger(jQuery.Event('show', {
+ itemId: itemId,
+ previousItemId: oldItemId,
+ dir: itemDir,
+ view: itemView
+ }));
this.$el.trigger(
new $.Event('itemChanged', {
itemId: itemId,