Reorganize watch components
This commit is contained in:
parent
b0c43e36db
commit
911186dae4
|
@ -0,0 +1,3 @@
|
||||||
|
export * from './video-comment-add.component'
|
||||||
|
export * from './video-comment.component'
|
||||||
|
export * from './video-comments.component'
|
|
@ -0,0 +1,5 @@
|
||||||
|
export * from './comment'
|
||||||
|
export * from './metadata'
|
||||||
|
export * from './playlist'
|
||||||
|
export * from './recommendations'
|
||||||
|
export * from './timestamp-route-transformer.directive'
|
|
@ -0,0 +1,3 @@
|
||||||
|
export * from './video-avatar-channel.component'
|
||||||
|
export * from './video-description.component'
|
||||||
|
export * from './video-rate.component'
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './video-watch-playlist.component'
|
|
@ -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'
|
|
@ -53,7 +53,7 @@ import {
|
||||||
} from '../../../assets/player/peertube-player-manager'
|
} from '../../../assets/player/peertube-player-manager'
|
||||||
import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
|
import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
|
||||||
import { environment } from '../../../environments/environment'
|
import { environment } from '../../../environments/environment'
|
||||||
import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
|
import { VideoWatchPlaylistComponent } from './shared'
|
||||||
|
|
||||||
type URLOptions = CustomizationOptions & { playerMode: PlayerMode }
|
type URLOptions = CustomizationOptions & { playerMode: PlayerMode }
|
||||||
|
|
||||||
|
|
|
@ -12,16 +12,18 @@ import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
|
||||||
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
|
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
|
||||||
import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
|
import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
|
||||||
import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
|
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 { PlayerStylesComponent } from './player-styles.component'
|
||||||
import { RecommendationsModule } from './recommendations/recommendations.module'
|
import {
|
||||||
import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
|
RecommendationsModule,
|
||||||
import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
|
VideoAvatarChannelComponent,
|
||||||
import { VideoDescriptionComponent } from './video-description.component'
|
VideoDescriptionComponent,
|
||||||
import { VideoRateComponent } from './video-rate.component'
|
VideoRateComponent,
|
||||||
import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
|
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 { VideoWatchRoutingModule } from './video-watch-routing.module'
|
||||||
import { VideoWatchComponent } from './video-watch.component'
|
import { VideoWatchComponent } from './video-watch.component'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue