aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/typings/models/video/video-comment.ts
blob: 187461213e7d7fd0cdbdedfa65ab74a25a961afe (plain) (tree)
1
2
3
4
5
6
7
8


                                                                       




                                                                                  



                                                                                                                    
                                                                               

                                      
                                 

                                      
                                  

                                      




                                           
 



                                                
 



                                                     

                                                    




                                                                               
import { VideoCommentModel } from '../../../models/video/video-comment'
import { PickWith } from '../../utils'
import { MAccountDefault } from '../account'
import { MVideoAccountLight, MVideoFeed, MVideoIdUrl } from './video'

type Use<K extends keyof VideoCommentModel, M> = PickWith<VideoCommentModel, K, M>

// ############################################################################

export type MComment = Omit<VideoCommentModel, 'OriginVideoComment' | 'InReplyToVideoComment' | 'Video' | 'Account'>
export type MCommentId = Pick<MComment, 'id'>

// ############################################################################

export type MCommentOwner = MComment &
  Use<'Account', MAccountDefault>

export type MCommentVideo = MComment &
  Use<'Video', MVideoAccountLight>

export type MCommentReply = MComment &
  Use<'InReplyToVideoComment', MComment>

export type MCommentOwnerVideo = MComment &
  Use<'Account', MAccountDefault> &
  Use<'Video', MVideoAccountLight>

export type MCommentOwnerVideoReply = MComment &
  Use<'Account', MAccountDefault> &
  Use<'Video', MVideoAccountLight> &
  Use<'InReplyToVideoComment', MComment>

export type MCommentOwnerReplyVideoLight = MComment &
  Use<'Account', MAccountDefault> &
  Use<'InReplyToVideoComment', MComment> &
  Use<'Video', MVideoIdUrl>

export type MCommentOwnerVideoFeed = MCommentOwner &
  Use<'Video', MVideoFeed>

// ############################################################################

export type MCommentAPI = MComment & { totalReplies: number }