Reorganize watch components

pull/4218/head
Chocobozzz 2021-06-29 17:18:30 +02:00
parent b0c43e36db
commit 911186dae4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
37 changed files with 29 additions and 10 deletions

View File

@ -0,0 +1,3 @@
export * from './video-comment-add.component'
export * from './video-comment.component'
export * from './video-comments.component'

View File

@ -0,0 +1,5 @@
export * from './comment'
export * from './metadata'
export * from './playlist'
export * from './recommendations'
export * from './timestamp-route-transformer.directive'

View File

@ -0,0 +1,3 @@
export * from './video-avatar-channel.component'
export * from './video-description.component'
export * from './video-rate.component'

View File

@ -0,0 +1 @@
export * from './video-watch-playlist.component'

View File

@ -0,0 +1,5 @@
export * from './recent-videos-recommendation.service'
export * from './recommendation-info.model'
export * from './recommendations.module'
export * from './recommended-videos.component'
export * from './recommended-videos.store'

View File

@ -53,7 +53,7 @@ import {
} from '../../../assets/player/peertube-player-manager'
import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
import { environment } from '../../../environments/environment'
import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
import { VideoWatchPlaylistComponent } from './shared'
type URLOptions = CustomizationOptions & { playerMode: PlayerMode }

View File

@ -12,16 +12,18 @@ import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
import { VideoCommentAddComponent } from './comment/video-comment-add.component'
import { VideoCommentComponent } from './comment/video-comment.component'
import { VideoCommentsComponent } from './comment/video-comments.component'
import { PlayerStylesComponent } from './player-styles.component'
import { RecommendationsModule } from './recommendations/recommendations.module'
import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
import { VideoDescriptionComponent } from './video-description.component'
import { VideoRateComponent } from './video-rate.component'
import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
import {
RecommendationsModule,
VideoAvatarChannelComponent,
VideoDescriptionComponent,
VideoRateComponent,
VideoWatchPlaylistComponent
} from './shared'
import { VideoCommentAddComponent } from './shared/comment/video-comment-add.component'
import { VideoCommentComponent } from './shared/comment/video-comment.component'
import { VideoCommentsComponent } from './shared/comment/video-comments.component'
import { TimestampRouteTransformerDirective } from './shared/timestamp-route-transformer.directive'
import { VideoWatchRoutingModule } from './video-watch-routing.module'
import { VideoWatchComponent } from './video-watch.component'