mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
add themed community list component
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { CommunityListComponent as BaseComponent } from '../../../../../app/community-list-page/community-list/community-list.component';
|
||||
|
||||
/**
|
||||
* A tree-structured list of nodes representing the communities, their subCommunities and collections.
|
||||
* Initially only the page-restricted top communities are shown.
|
||||
* Each node can be expanded to show its children and all children are also page-limited.
|
||||
* More pages of a page-limited result can be shown by pressing a show more node/link.
|
||||
* Which nodes were expanded is kept in the store, so this persists across pages.
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ds-community-list',
|
||||
// styleUrls: ['./community-list.component.scss'],
|
||||
// templateUrl: './community-list.component.html'
|
||||
templateUrl: '../../../../../app/community-list-page/community-list/community-list.component.html'
|
||||
})
|
||||
export class CommunityListComponent extends BaseComponent {}
|
||||
|
Reference in New Issue
Block a user