1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 07:55:36 +00:00

[groups, group] rewrote them with react (#2593)

* [groups, group] rewrote them with react

* [groups, group] update
This commit is contained in:
llj
2018-12-04 16:52:27 +08:00
committed by GitHub
parent 07e5e97406
commit 8c077e8cba
13 changed files with 776 additions and 10 deletions

View File

@@ -18,6 +18,8 @@ import ShareAdminUploadLinks from './pages/share-admin/upload-links';
import SharedLibraries from './pages/shared-libs/shared-libs';
import MyLibraries from './pages/my-libs/my-libs';
import DirView from './components/dir-view/dir-view';
import Groups from './pages/group/groups';
import Group from './pages/group/group';
import MainContentWrapper from './components/main-content-wrapper';
import 'seafile-ui';
@@ -139,6 +141,8 @@ class App extends Component {
<SharedLibrariesWrapper path={siteRoot + 'shared-libs'} onShowSidePanel={this.onShowSidePanel} onSearchedClick={this.onSearchedClick} />
<MyLibraries path={siteRoot + 'my-libs'} onShowSidePanel={this.onShowSidePanel} onSearchedClick={this.onSearchedClick} />
<DirView path={siteRoot + 'library/:repoID/*'} onMenuClick={this.onShowSidePanel} updateCurrentTab={this.updateCurrentTab}/>
<Groups path={siteRoot + 'groups'} />
<Group path={siteRoot + 'group/:groupID'} />
</Router>
</MainPanel>
</div>