]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/custom-markup/custom-markup-data.model.ts
06c9b544d9120530be13550b031a1c389c6e232f
[github/Chocobozzz/PeerTube.git] / shared / models / custom-markup / custom-markup-data.model.ts
1 export type EmbedMarkupData = {
2 // Video or playlist uuid
3 uuid: string
4 }
5
6 export type VideoMiniatureMarkupData = {
7 // Video uuid
8 uuid: string
9
10 onlyDisplayTitle?: string // boolean
11 }
12
13 export type PlaylistMiniatureMarkupData = {
14 // Playlist uuid
15 uuid: string
16 }
17
18 export type ChannelMiniatureMarkupData = {
19 // Channel name (username)
20 name: string
21
22 displayLatestVideo?: string // boolean
23 displayDescription?: string // boolean
24 }
25
26 export type VideosListMarkupData = {
27 onlyDisplayTitle?: string // boolean
28 maxRows?: string // number
29
30 sort?: string
31 count?: string // number
32
33 categoryOneOf?: string // coma separated values
34 languageOneOf?: string // coma separated values
35
36 onlyLocal?: string // boolean
37
38 }
39
40 export type ButtonMarkupData = {
41 theme: 'primary' | 'secondary'
42 href: string
43 label: string
44 blankTarget?: string // boolean
45 }
46
47 export type ContainerMarkupData = {
48 width?: string
49 title?: string
50 description?: string
51 layout?: 'row' | 'column'
52 }