Commits
Tim Donohue authored and GitHub committed be7938a21b7 Merge
1 + | import { Component } from '@angular/core'; |
2 + | import { EditBitstreamPageComponent } from './edit-bitstream-page.component'; |
3 + | import { ThemedComponent } from '../../shared/theme-support/themed.component'; |
4 + | |
5 + | @Component({ |
6 + | selector: 'ds-themed-edit-bitstream-page', |
7 + | styleUrls: [], |
8 + | templateUrl: '../../shared/theme-support/themed.component.html', |
9 + | }) |
10 + | export class ThemedEditBitstreamPageComponent extends ThemedComponent<EditBitstreamPageComponent> { |
11 + | protected getComponentName(): string { |
12 + | return 'EditBitstreamPageComponent'; |
13 + | } |
14 + | |
15 + | protected importThemedComponent(themeName: string): Promise<any> { |
16 + | return import(`../../../themes/${themeName}/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component`); |
17 + | } |
18 + | |
19 + | protected importUnthemedComponent(): Promise<any> { |
20 + | return import('./edit-bitstream-page.component'); |
21 + | } |
22 + | } |