mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-19 15:17:43 +01:00
Remove base components and project-detail modules.
This commit is contained in:
parent
4a48bbb418
commit
f27d2e41fa
@ -1,6 +1,6 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
import { BaseComponent } from './base.component';
|
import { HarborShellComponent } from './harbor-shell/harbor-shell.component';
|
||||||
|
|
||||||
import { DashboardComponent } from '../dashboard/dashboard.component';
|
import { DashboardComponent } from '../dashboard/dashboard.component';
|
||||||
import { ProjectComponent } from '../project/project.component';
|
import { ProjectComponent } from '../project/project.component';
|
||||||
@ -13,7 +13,7 @@ import { LogComponent } from '../log/log.component';
|
|||||||
|
|
||||||
const baseRoutes: Routes = [
|
const baseRoutes: Routes = [
|
||||||
{
|
{
|
||||||
path: 'harbor', component: BaseComponent,
|
path: 'harbor', component: HarborShellComponent,
|
||||||
children: [
|
children: [
|
||||||
{ path: 'dashboard', component: DashboardComponent },
|
{ path: 'dashboard', component: DashboardComponent },
|
||||||
{ path: 'projects', component: ProjectComponent }
|
{ path: 'projects', component: ProjectComponent }
|
||||||
|
@ -1 +0,0 @@
|
|||||||
<harbor-shell></harbor-shell>
|
|
@ -1,9 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'base',
|
|
||||||
templateUrl: 'base.component.html'
|
|
||||||
})
|
|
||||||
export class BaseComponent {
|
|
||||||
|
|
||||||
}
|
|
@ -3,13 +3,11 @@ import { SharedModule } from '../shared.module';
|
|||||||
|
|
||||||
import { DashboardModule } from '../dashboard/dashboard.module';
|
import { DashboardModule } from '../dashboard/dashboard.module';
|
||||||
import { ProjectModule } from '../project/project.module';
|
import { ProjectModule } from '../project/project.module';
|
||||||
import { ProjectDetailModule } from '../project/project-detail/project-detail.module';
|
|
||||||
|
|
||||||
import { NavigatorComponent } from './navigator/navigator.component';
|
import { NavigatorComponent } from './navigator/navigator.component';
|
||||||
import { GlobalSearchComponent } from './global-search/global-search.component';
|
import { GlobalSearchComponent } from './global-search/global-search.component';
|
||||||
import { FooterComponent } from './footer/footer.component';
|
import { FooterComponent } from './footer/footer.component';
|
||||||
import { HarborShellComponent } from './harbor-shell/harbor-shell.component';
|
import { HarborShellComponent } from './harbor-shell/harbor-shell.component';
|
||||||
import { BaseComponent } from './base.component';
|
|
||||||
|
|
||||||
import { BaseRoutingModule } from './base-routing.module';
|
import { BaseRoutingModule } from './base-routing.module';
|
||||||
|
|
||||||
@ -18,17 +16,15 @@ import { BaseRoutingModule } from './base-routing.module';
|
|||||||
SharedModule,
|
SharedModule,
|
||||||
DashboardModule,
|
DashboardModule,
|
||||||
ProjectModule,
|
ProjectModule,
|
||||||
ProjectDetailModule,
|
|
||||||
BaseRoutingModule
|
BaseRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
BaseComponent,
|
|
||||||
NavigatorComponent,
|
NavigatorComponent,
|
||||||
GlobalSearchComponent,
|
GlobalSearchComponent,
|
||||||
FooterComponent,
|
FooterComponent,
|
||||||
HarborShellComponent
|
HarborShellComponent
|
||||||
],
|
],
|
||||||
exports: [ BaseComponent ]
|
exports: [ HarborShellComponent ]
|
||||||
})
|
})
|
||||||
export class BaseModule {
|
export class BaseModule {
|
||||||
|
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
import { NgModule } from '@angular/core';
|
|
||||||
|
|
||||||
import { SharedModule } from '../../shared.module';
|
|
||||||
|
|
||||||
import { ProjectDetailComponent } from './project-detail.component';
|
|
||||||
import { RepositoryComponent } from '../../repository/repository.component';
|
|
||||||
import { ReplicationComponent } from '../../replication/replication.component';
|
|
||||||
import { MemberComponent } from '../../member/member.component';
|
|
||||||
import { LogComponent } from '../../log/log.component';
|
|
||||||
|
|
||||||
import { RouterModule } from '@angular/router';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
imports: [
|
|
||||||
SharedModule,
|
|
||||||
RouterModule
|
|
||||||
],
|
|
||||||
declarations: [
|
|
||||||
ProjectDetailComponent,
|
|
||||||
RepositoryComponent,
|
|
||||||
ReplicationComponent,
|
|
||||||
MemberComponent,
|
|
||||||
LogComponent
|
|
||||||
],
|
|
||||||
exports: [ ProjectDetailComponent ]
|
|
||||||
})
|
|
||||||
export class ProjectDetailModule {}
|
|
@ -1,7 +1,7 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
import { BaseComponent } from '../base/base.component';
|
|
||||||
|
|
||||||
|
import { HarborShellComponent} from '../base/harbor-shell/harbor-shell.component';
|
||||||
import { ProjectComponent } from './project.component';
|
import { ProjectComponent } from './project.component';
|
||||||
import { ProjectDetailComponent } from './project-detail/project-detail.component';
|
import { ProjectDetailComponent } from './project-detail/project-detail.component';
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ import { LogComponent } from '../log/log.component';
|
|||||||
|
|
||||||
const projectRoutes: Routes = [
|
const projectRoutes: Routes = [
|
||||||
{ path: 'harbor',
|
{ path: 'harbor',
|
||||||
component: BaseComponent,
|
component: HarborShellComponent,
|
||||||
children: [
|
children: [
|
||||||
{ path: 'projects', component: ProjectComponent },
|
{ path: 'projects', component: ProjectComponent },
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
import { SharedModule } from '../shared.module';
|
import { SharedModule } from '../shared.module';
|
||||||
import { ProjectDetailModule } from './project-detail/project-detail.module';
|
import { RepositoryModule } from '../repository/repository.module';
|
||||||
|
import { ReplicationModule } from '../replication/replication.module';
|
||||||
|
import { MemberModule} from '../member/member.module';
|
||||||
|
import { LogModule } from '../log/log.module';
|
||||||
|
|
||||||
import { ProjectComponent } from './project.component';
|
import { ProjectComponent } from './project.component';
|
||||||
import { CreateProjectComponent } from './create-project/create-project.component';
|
import { CreateProjectComponent } from './create-project/create-project.component';
|
||||||
@ -15,7 +18,10 @@ import { ProjectRoutingModule } from './project-routing.module';
|
|||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
SharedModule,
|
SharedModule,
|
||||||
ProjectDetailModule,
|
RepositoryModule,
|
||||||
|
ReplicationModule,
|
||||||
|
MemberModule,
|
||||||
|
LogModule,
|
||||||
ProjectRoutingModule
|
ProjectRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
@ -23,7 +29,8 @@ import { ProjectRoutingModule } from './project-routing.module';
|
|||||||
CreateProjectComponent,
|
CreateProjectComponent,
|
||||||
SearchProjectComponent,
|
SearchProjectComponent,
|
||||||
FilterProjectComponent,
|
FilterProjectComponent,
|
||||||
ListProjectComponent
|
ListProjectComponent,
|
||||||
|
ProjectDetailComponent
|
||||||
],
|
],
|
||||||
exports: [ ListProjectComponent ]
|
exports: [ ListProjectComponent ]
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user