Vorbereitung Release 0.2.0 #83
@@ -0,0 +1 @@
|
||||
<p>media-actors works!</p>
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MediaFileListComponent } from './media-file-list.component';
|
||||
import { MediaActorsComponent } from './media-actors.component';
|
||||
|
||||
describe('MediaFileListComponent', () => {
|
||||
let component: MediaFileListComponent;
|
||||
let fixture: ComponentFixture<MediaFileListComponent>;
|
||||
describe('MediaActorsComponent', () => {
|
||||
let component: MediaActorsComponent;
|
||||
let fixture: ComponentFixture<MediaActorsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [MediaFileListComponent]
|
||||
imports: [MediaActorsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MediaFileListComponent);
|
||||
fixture = TestBed.createComponent(MediaActorsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-actors',
|
||||
imports: [],
|
||||
templateUrl: './media-actors.component.html',
|
||||
styleUrl: './media-actors.component.css'
|
||||
})
|
||||
export class MediaActorsComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>media-files works!</p>
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MediaVideoListComponent } from './media-video-list.component';
|
||||
import { MediaFilesComponent } from './media-files.component';
|
||||
|
||||
describe('MediaVideoListComponent', () => {
|
||||
let component: MediaVideoListComponent;
|
||||
let fixture: ComponentFixture<MediaVideoListComponent>;
|
||||
describe('MediaFilesComponent', () => {
|
||||
let component: MediaFilesComponent;
|
||||
let fixture: ComponentFixture<MediaFilesComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [MediaVideoListComponent]
|
||||
imports: [MediaFilesComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MediaVideoListComponent);
|
||||
fixture = TestBed.createComponent(MediaFilesComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-files',
|
||||
imports: [],
|
||||
templateUrl: './media-files.component.html',
|
||||
styleUrl: './media-files.component.css'
|
||||
})
|
||||
export class MediaFilesComponent {
|
||||
|
||||
}
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
<div class="subnav">
|
||||
<a routerLink="/media/mediafiles" routerLinkActive="active">MediaFiles</a>
|
||||
<a routerLink="/media/mediaactors" routerLinkActive="active">MediaActors</a>
|
||||
<a routerLink="/media/mediavideos" routerLinkActive="active">MediaVideos</a>
|
||||
<a routerLink="/media/file" routerLinkActive="active">MediaFiles</a>
|
||||
<a routerLink="/media/actor" routerLinkActive="active">MediaActors</a>
|
||||
<a routerLink="/media/video" routerLinkActive="active">MediaVideos</a>
|
||||
</div>
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { Routes } from "@angular/router";
|
||||
import { MediaFileListComponent } from "../../../media/media-file/media-file-list/media-file-list.component";
|
||||
import { MediaActorListComponent } from "../../../media/media-actor/media-actor-list/media-actor-list.component";
|
||||
import { MediaVideoListComponent } from "../../../media/media-video/media-video-list/media-video-list.component";
|
||||
import { MediaFilesComponent } from './../media-files/media-files.component';
|
||||
import { MediaActorsComponent } from '../media-actors/media-actors.component';
|
||||
import { MediaVideosComponent } from '../media-videos/media-videos.component';
|
||||
|
||||
export const mediaRoutes: Routes = [
|
||||
{
|
||||
path: 'mediafiles',
|
||||
component: MediaFileListComponent
|
||||
path: 'file',
|
||||
component: MediaFilesComponent
|
||||
},
|
||||
{
|
||||
path: 'mediaactors',
|
||||
component: MediaActorListComponent
|
||||
path: 'actor',
|
||||
component: MediaActorsComponent
|
||||
},
|
||||
{
|
||||
path: 'mediavideos',
|
||||
component: MediaVideoListComponent
|
||||
path: 'video',
|
||||
component: MediaVideosComponent
|
||||
},
|
||||
];
|
||||
@@ -0,0 +1 @@
|
||||
<p>media-videos works!</p>
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MediaActorListComponent } from './media-actor-list.component';
|
||||
import { MediaVideosComponent } from './media-videos.component';
|
||||
|
||||
describe('MediaActorListComponent', () => {
|
||||
let component: MediaActorListComponent;
|
||||
let fixture: ComponentFixture<MediaActorListComponent>;
|
||||
describe('MediaVideosComponent', () => {
|
||||
let component: MediaVideosComponent;
|
||||
let fixture: ComponentFixture<MediaVideosComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [MediaActorListComponent]
|
||||
imports: [MediaVideosComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MediaActorListComponent);
|
||||
fixture = TestBed.createComponent(MediaVideosComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-videos',
|
||||
imports: [],
|
||||
templateUrl: './media-videos.component.html',
|
||||
styleUrl: './media-videos.component.css'
|
||||
})
|
||||
export class MediaVideosComponent {
|
||||
|
||||
}
|
||||
-1
@@ -1 +0,0 @@
|
||||
<p>media-actor-list works!</p>
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-actor-list',
|
||||
imports: [],
|
||||
templateUrl: './media-actor-list.component.html',
|
||||
styleUrl: './media-actor-list.component.css'
|
||||
})
|
||||
export class MediaActorListComponent {
|
||||
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
<p>media-file-list works!</p>
|
||||
@@ -1,11 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-file-list',
|
||||
imports: [],
|
||||
templateUrl: './media-file-list.component.html',
|
||||
styleUrl: './media-file-list.component.css'
|
||||
})
|
||||
export class MediaFileListComponent {
|
||||
|
||||
}
|
||||
-1
@@ -1 +0,0 @@
|
||||
<p>media-video-list works!</p>
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-media-video-list',
|
||||
imports: [],
|
||||
templateUrl: './media-video-list.component.html',
|
||||
styleUrl: './media-video-list.component.css'
|
||||
})
|
||||
export class MediaVideoListComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user