-
Notifications
You must be signed in to change notification settings - Fork 8
/
flow-types.js
322 lines (279 loc) · 7.78 KB
/
flow-types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/* @flow */
// TODO: refine this type if possible; should be hex codes and rgb(a) values
type ColorType = string;
// This is just to show that these will be converted to `${number}px`,
// as opposed to other numbers which will be left as they are
type NumberOfPixelsType = number;
// TODO: refine this type if possible; should be strings that end in '%'
type PercentageType = string;
// TODO: refine this type if possible; see https://developer.mozilla.org/en-US/docs/Web/CSS/angle
type AngleType = string;
type DistanceType = NumberOfPixelsType | PercentageType;
type TransformType =
| { perspective: NumberOfPixelsType, }
| { rotate: AngleType, }
| { rotateX: AngleType, }
| { rotateY: AngleType, }
| { rotateZ: AngleType, }
| { scale: number, }
| { scaleX: number, }
| { scaleY: number, }
| { translateX: DistanceType, }
| { translateY: DistanceType, }
| { skewX: AngleType, }
| { skewY: AngleType, };
type TransformsType = $ReadOnlyArray<TransformType>;
type FilterType =
// This list is ever-expanding
| { blur: DistanceType, }
| { brightness: number, }
| { grayscale: PercentageType, };
type FiltersType = $ReadOnlyArray<FilterType>;
type LinearGradientType = {
direction: AngleType,
stops: $ReadOnlyArray<{
color: ColorType,
distance?: DistanceType,
}>,
};
type RootShadowType = {
offset: { x: NumberOfPixelsType, y: NumberOfPixelsType, },
color?: ColorType,
blurRadius?: NumberOfPixelsType,
};
type BoxShadowType = RootShadowType & {
spread?: NumberOfPixelsType,
};
type BorderType = {
width: NumberOfPixelsType,
color: ColorType,
style: 'solid' | 'dotted' | 'dashed',
};
export type StylesType = {
position?: 'relative' | 'absolute',
top?: DistanceType,
left?: DistanceType,
bottom?: DistanceType,
right?: DistanceType,
width?: DistanceType,
height?: DistanceType,
margin?: DistanceType,
marginTop?: DistanceType,
marginBottom?: DistanceType,
marginRight?: DistanceType,
marginLeft?: DistanceType,
padding?: DistanceType,
paddingTop?: DistanceType,
paddingBottom?: DistanceType,
paddingRight?: DistanceType,
paddingLeft?: DistanceType,
border?: BorderType,
borderTop?: BorderType,
borderBottom?: BorderType,
borderRight?: BorderType,
borderLeft?: BorderType,
borderRadius?: NumberOfPixelsType,
borderTopLeftRadius?: NumberOfPixelsType,
borderTopRightRadius?: NumberOfPixelsType,
borderBottomLeftRadius?: NumberOfPixelsType,
borderBottomRightRadius?: NumberOfPixelsType,
display?: 'block' | 'inline' | 'inline-block' | 'flex' | 'inline-flex',
flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse',
justifyContent?: 'flex-start' | 'center' | 'flex-end' | 'space-around' | 'space-between',
alignItems?: 'flex-start' | 'center' | 'flex-end' | 'stretch',
textAlign?: 'auto' | 'left' | 'right' | 'center' | 'justify',
backgroundColor?: ColorType,
backgroundLinearGradient?: LinearGradientType,
boxShadow?: BoxShadowType | $ReadOnlyArray<BoxShadowType>,
color?: ColorType,
fontFamily?: string,
fontSize?: NumberOfPixelsType,
lineHeight?: number,
fontStyle?: 'normal' | 'italic',
textShadow?: RootShadowType | $ReadOnlyArray<RootShadowType>,
opacity?: number,
transform?: TransformsType,
filter?: FiltersType,
backdropFilter?: FiltersType,
};
type AnnotationType = any;
type ContainerTypeType = 'container';
type ImageTypeType = 'image';
type VideoTypeType = 'video';
type HeadingTypeType =
| 'heading'
| 'heading1'
| 'heading2'
| 'heading3'
| 'heading4'
| 'heading5'
| 'heading6';
type ParagraphTypeType = 'paragraph';
export type ElementTypeType =
ContainerTypeType |
HeadingTypeType | ParagraphTypeType |
ImageTypeType | VideoTypeType;
export type ElementStylesType = { [ElementTypeType]: StylesType, };
type ElementCreatorType<T: ElementTypeType, S: ?StylesType, A: ?AnnotationType, P: Object> = P & {
type: T,
id?: string,
annotation?: A,
styles?: S,
};
export type ContainerElementType<
E: ?$ReadOnlyArray<ElementType>,
S: ?StylesType,
A: ?AnnotationType,
>
= ElementCreatorType<ContainerTypeType, S, A, {
elements?: E,
}>;
type MediaLayoutType = 'fill' | 'fixed' | 'fixed-height' | 'flex-item' | 'nodisplay' | 'responsive';
type ImageElementPropsType = {
alt?: string,
source: string,
width: number,
height: number,
layout: MediaLayoutType,
};
export type ImageElementType<S: ?StylesType, A: ?AnnotationType> =
ElementCreatorType<ImageTypeType, S, A, ImageElementPropsType>;
type VideoSourceType = {
source: string,
type: string,
};
type VideoElementPropsType = {
sources: $ReadOnlyArray<VideoSourceType>,
loop?: true,
autoplay?: true,
width: number,
height: number,
layout: MediaLayoutType,
poster?: string,
};
export type VideoElementType<S: ?StylesType, A: ?AnnotationType> =
ElementCreatorType<VideoTypeType, S, A, VideoElementPropsType>;
export type MediaElementType<S, A> = ImageElementType<S, A> | VideoElementType<S, A>;
export type InlineTextStyleType = {
start: number,
length: number,
styles: StylesType,
};
export type TextElementType<
T: HeadingTypeType | ParagraphTypeType,
S: ?StylesType,
A: ?AnnotationType,
> = ElementCreatorType<T, S, A, { text: string, inlineStyles?: Array<InlineTextStyleType>, }>;
export type HeadingElementType<
S: ?StylesType,
A: ?AnnotationType,
> = TextElementType<HeadingTypeType, S, A>;
export type ParagraphElementType<
S: ?StylesType,
A: ?AnnotationType,
> = TextElementType<ParagraphTypeType, S, A>;
export type ElementType =
| ContainerElementType<*, *, *>
| TextElementType<*, *, *>
| ImageElementType<*, *>
| VideoElementType<*, *>;
export type FillLayerType<
E: ?ElementType,
S: ?StylesType,
A: ?AnnotationType,
> = {|
template: 'fill',
annotation?: A,
element?: E,
styles?: S,
|};
type ThirdsElementType = { thirdIndex: 0 | 1 | 2, } & ElementType;
export type ThirdsLayerType<
E: ?[ ThirdsElementType, ThirdsElementType, ThirdsElementType, ],
S: ?StylesType,
A: ?AnnotationType,
> = {|
template: 'thirds',
annotation?: A,
elements?: E,
styles?: S,
|};
export type VerticalLayerType<
E: ?$ReadOnlyArray<ElementType>,
S: ?StylesType,
A: ?AnnotationType,
> = {|
template: 'vertical',
annotation?: A,
elements?: E,
styles?: S,
|};
export type HorizontalLayerType<
E: ?$ReadOnlyArray<ElementType>,
S: ?StylesType,
A: ?AnnotationType,
> = {|
template: 'horizontal',
annotation?: A,
elements?: E,
styles?: S,
|};
export type LayerType =
| FillLayerType<*, *, *>
| ThirdsLayerType<*, *, *>
| VerticalLayerType<*, *, *>
| HorizontalLayerType<*, *, *>;
export type PageType<L: $ReadOnlyArray<LayerType>, A: ?AnnotationType> = {|
id?: string,
annotation?: A,
autoAdvanceAfter?: string | number,
layers: L,
|};
export type StoryAnalyticsType = {
type?: string,
requests?: { [key: string]: any, },
vars?: { [key: string]: any, },
extraUrlParams?: { [key: string]: any, },
triggers?: { [key: string]: any, },
transport?: {
beacon?: boolean,
xhrpost?: boolean,
image?: boolean,
},
};
export type StoryMetaType = {
title?: string,
canonicalUrl?: string,
images?: Array<string>,
datePublished?: string,
dateModified?: string,
author?: string,
publisher?: {
name: string,
logo?: {
url: string,
height?: number,
width?: number,
},
},
description?: string,
};
export type StoryPreviewType = {
publisher: string,
publisherLogoSrc: string,
posterPortraitSrc: string,
posterSquareSrc?: string,
posterLandscapeSrc?: string,
};
export type StoryType = {
title: string,
preview: StoryPreviewType,
canonicalUrl: string,
meta?: string | StoryMetaType,
customCss?: string,
defaultStyles?: { [ElementTypeType]: StylesType, },
pages?: $ReadOnlyArray<PageType<*, *>>,
analytics?: Array<StoryAnalyticsType>,
bookendConfigSrc?: string,
autoAdsConfig?: Object,
};