forked from GetStream/stream-chat-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
173 lines (149 loc) Β· 5.17 KB
/
types.ts
File metadata and controls
173 lines (149 loc) Β· 5.17 KB
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
import type {
Attachment,
DefaultGenerics,
ExtendableGenerics,
OGAttachment,
} from 'stream-chat';
import type { DefaultStreamChatGenerics } from '../../types/types';
export type AttachmentLoadingState = 'uploading' | 'finished' | 'failed';
export enum LinkPreviewState {
/** Link preview has been dismissed using MessageInputContextValue.dismissLinkPreview **/
DISMISSED = 'dismissed',
/** Link preview could not be loaded, the enrichment request has failed. **/
FAILED = 'failed',
/** Link preview has been successfully loaded. **/
LOADED = 'loaded',
/** The enrichment query is in progress for a given link. **/
LOADING = 'loading',
/** The link is scheduled for enrichment. **/
QUEUED = 'queued',
}
export type LinkURL = string;
export type LinkPreview = OGAttachment & {
state: LinkPreviewState;
};
export enum SetLinkPreviewMode {
UPSERT,
SET,
REMOVE,
}
export type LinkPreviewMap = Map<LinkURL, LinkPreview>;
export type VoiceRecordingAttachment<
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics,
> = Attachment<StreamChatGenerics> & {
asset_url: string;
type: 'voiceRecording';
duration?: number;
file_size?: number;
mime_type?: string;
title?: string;
waveform_data?: Array<number>;
};
type FileAttachment<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> =
Attachment<StreamChatGenerics> & {
type: 'file';
asset_url?: string;
file_size?: number;
mime_type?: string;
title?: string;
};
export type AudioAttachment<
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics,
> = Attachment<StreamChatGenerics> & {
type: 'audio';
asset_url?: string;
file_size?: number;
mime_type?: string;
title?: string;
};
export type VideoAttachment<
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics,
> = Attachment<StreamChatGenerics> & {
type: 'video';
asset_url?: string;
mime_type?: string;
thumb_url?: string;
title?: string;
};
type ImageAttachment<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> =
Attachment<StreamChatGenerics> & {
type: 'image';
fallback?: string;
image_url?: string;
original_height?: number;
original_width?: number;
};
export type BaseLocalAttachmentMetadata = {
id: string;
};
export type LocalAttachmentUploadMetadata = {
file?: File;
uploadState?: AttachmentLoadingState;
};
export type LocalImageAttachmentUploadMetadata = LocalAttachmentUploadMetadata & {
previewUri?: string;
};
export type LocalAttachmentCast<A, L = Record<string, unknown>> = A & {
localMetadata: L & BaseLocalAttachmentMetadata;
};
export type LocalAttachmentMetadata<CustomLocalMetadata = Record<string, unknown>> =
CustomLocalMetadata & BaseLocalAttachmentMetadata & LocalImageAttachmentUploadMetadata;
export type LocalVoiceRecordingAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
VoiceRecordingAttachment<StreamChatGenerics>,
LocalAttachmentUploadMetadata & CustomLocalMetadata
>;
export type LocalAudioAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
AudioAttachment<StreamChatGenerics>,
LocalAttachmentUploadMetadata & CustomLocalMetadata
>;
export type LocalVideoAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
VideoAttachment<StreamChatGenerics>,
LocalAttachmentUploadMetadata & CustomLocalMetadata
>;
export type LocalImageAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
ImageAttachment<StreamChatGenerics>,
LocalImageAttachmentUploadMetadata & CustomLocalMetadata
>;
export type LocalFileAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
FileAttachment<StreamChatGenerics>,
LocalAttachmentUploadMetadata & CustomLocalMetadata
>;
export type AnyLocalAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = LocalAttachmentCast<
Attachment<StreamChatGenerics>,
LocalAttachmentMetadata<CustomLocalMetadata>
>;
export type LocalAttachment<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
> =
| AnyLocalAttachment<StreamChatGenerics>
| LocalFileAttachment<StreamChatGenerics>
| LocalImageAttachment<StreamChatGenerics>
| LocalAudioAttachment<StreamChatGenerics>
| LocalVideoAttachment<StreamChatGenerics>
| LocalVoiceRecordingAttachment<StreamChatGenerics>;
export type LocalAttachmentToUpload<
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
CustomLocalMetadata = Record<string, unknown>,
> = Partial<Attachment<StreamChatGenerics>> & {
localMetadata: Partial<BaseLocalAttachmentMetadata> &
LocalAttachmentUploadMetadata &
CustomLocalMetadata;
};