forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dspace-7.6-sistedes' into dspace-7.6.1-sistedes
- Loading branch information
Showing
292 changed files
with
4,286 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/themes/sistedes/app/admin/admin-sidebar/admin-sidebar.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<nav class="navbar navbar-dark p-0" | ||
[ngClass]="{'active': sidebarOpen, 'inactive': sidebarClosed}" | ||
[@slideSidebar]="{ | ||
value: (!(sidebarExpanded | async) ? 'collapsed' : 'expanded'), | ||
params: {sidebarWidth: (sidebarWidth | async)} | ||
}" (@slideSidebar.done)="finishSlide($event)" (@slideSidebar.start)="startSlide($event)" | ||
*ngIf="menuVisible | async" | ||
(mouseenter)="handleMouseEnter($event)" | ||
(mouseleave)="handleMouseLeave($event)" | ||
role="navigation" [attr.aria-label]="'menu.header.admin.description' |translate"> | ||
<div class="sidebar-top-level-items"> | ||
<ul class="navbar-nav"> | ||
<li class="admin-menu-header"> | ||
<div class="sidebar-section"> | ||
<div href="javascript:void(0);" class="nav-item d-flex flex-row flex-nowrap py-0"> | ||
<div class="shortcut-icon navbar-brand logo-wrapper"> | ||
<img class="admin-logo" src="assets/sistedes/images/logos/sistedes.png" | ||
[alt]="('menu.header.image.logo') | translate"> | ||
</div> | ||
<div class="sidebar-collapsible navbar-brand"> | ||
<div class="mr-0"> | ||
<h4 class="section-header-text mb-0">{{ 'menu.header.admin' | translate }}</h4> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</li> | ||
|
||
<ng-container *ngFor="let section of (sections | async)"> | ||
<ng-container | ||
*ngComponentOutlet="(sectionMap$ | async).get(section.id).component; injector: (sectionMap$ | async).get(section.id).injector;"></ng-container> | ||
</ng-container> | ||
</ul> | ||
</div> | ||
<div class="navbar-nav"> | ||
<div class="sidebar-section" id="sidebar-collapse-toggle"> | ||
<a class="nav-item nav-link sidebar-section d-flex flex-row flex-nowrap" | ||
href="javascript:void(0);" | ||
(click)="toggle($event)" | ||
(keyup.space)="toggle($event)" | ||
> | ||
<div class="shortcut-icon"> | ||
<i *ngIf="(menuCollapsed | async)" class="fas fa-fw fa-angle-double-right" | ||
[title]="'menu.section.icon.pin' | translate"></i> | ||
<i *ngIf="!(menuCollapsed | async)" class="fas fa-fw fa-angle-double-left" | ||
[title]="'menu.section.icon.unpin' | translate"></i> | ||
</div> | ||
<div class="sidebar-collapsible"> | ||
<span *ngIf="menuCollapsed | async" class="section-header-text">{{'menu.section.pin' | translate }}</span> | ||
<span *ngIf="!(menuCollapsed | async)" class="section-header-text">{{'menu.section.unpin' | translate }}</span> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</nav> |
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/sistedes/app/admin/admin-sidebar/admin-sidebar.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { AdminSidebarComponent as BaseComponent } from '../../../../../app/admin/admin-sidebar/admin-sidebar.component'; | ||
|
||
/** | ||
* Component representing the admin sidebar | ||
*/ | ||
@Component({ | ||
selector: 'ds-admin-sidebar', | ||
templateUrl: './admin-sidebar.component.html', | ||
// templateUrl: '../../../../../app/admin/admin-sidebar/admin-sidebar.component.html', | ||
// styleUrls: ['./admin-sidebar.component.scss'] | ||
styleUrls: ['../../../../../app/admin/admin-sidebar/admin-sidebar.component.scss'] | ||
}) | ||
export class AdminSidebarComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/sistedes/app/breadcrumbs/breadcrumbs.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { BreadcrumbsComponent as BaseComponent } from '../../../../app/breadcrumbs/breadcrumbs.component'; | ||
|
||
/** | ||
* Component representing the breadcrumbs of a page | ||
*/ | ||
@Component({ | ||
selector: 'ds-breadcrumbs', | ||
// templateUrl: './breadcrumbs.component.html', | ||
templateUrl: '../../../../app/breadcrumbs/breadcrumbs.component.html', | ||
// styleUrls: ['./breadcrumbs.component.scss'] | ||
styleUrls: ['../../../../app/breadcrumbs/breadcrumbs.component.scss'] | ||
}) | ||
export class BreadcrumbsComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/themes/sistedes/app/browse-by/browse-by-date-page/browse-by-date-page.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByDatePageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-date-page/browse-by-date-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-date-page', | ||
// styleUrls: ['./browse-by-date-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss'], | ||
// templateUrl: './browse-by-date-page.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
|
||
export class BrowseByDatePageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
...hemes/sistedes/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByMetadataPageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-metadata-page', | ||
// styleUrls: ['./browse-by-metadata-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss'], | ||
// templateUrl: './browse-by-metadata-page.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
|
||
export class BrowseByMetadataPageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
Oops, something went wrong.