+ {!this.props.hiddenBreadcrumb &&
+ this._getBreadcrumbDOM()
+ }
+
+ {!this.props.hiddenFilterBox && this._allFolders.length > 0 &&
+
+
+
+ }
+ {this.state.folders.length === 0 &&
+
+ {this.state.foldersLoading ? strings.FolderExplorerLoading : strings.FolderExplorerNoItems}
+
+ }
+ {this.state.folders.length > 0 &&
+
+ {this.state.folders.map((folder) => {
+ return (
+
{ this._getSubFolders(folder); }}>
+
+ {folder.Name}
+
+ );
+ })
+ }
+
+ }
+ {this.props.canCreateFolders &&
+
+ }
+