-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtypes.ts
234 lines (207 loc) · 4.73 KB
/
types.ts
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
import {
ReviewStatus,
TransactionStatus,
TransactionType,
} from "@/config/default";
import { AdminReview } from "@/services/api/admin/useReviews";
export type Transcript = {
id: number;
archivedAt: Nullable<Date>;
archivedBy: Nullable<number>;
createdAt: Nullable<Date>;
content: TranscriptContent;
status?: "queued" | "not queued" | "requeued";
updatedAt: Nullable<Date>;
originalContent: TranscriptContent;
transcriptHash: string;
claimedBy: Nullable<number>;
contentTotalWords: number;
transcriptUrl: string;
};
export type TranscriptData = {
totalItems: number;
itemsPerPage: number;
totalPages: number;
currentPage: number;
hasNextPage: boolean;
hasPreviousPage: boolean;
data: Transcript[];
};
export type ReviewTranscript = Transcript & {
review: Review;
};
export type Review = {
id: number;
userId: number;
transcriptId: number;
archivedAt: Nullable<Date>;
updatedAt: Nullable<Date>;
createdAt: Date;
claimedAt: Nullable<Date>;
submittedAt: Nullable<Date>;
mergedAt: Nullable<Date>;
pr_url: Nullable<string>;
branchUrl: string;
};
export type TranscriptReview = Review & {
transcript: {
dpe: DigitalPaperEditFormat;
metadata: TranscriptMetadata;
url: string;
};
};
export type UserReviewData = Review & {
transcript: Transcript;
};
export type UserReview = {
totalItems: number;
itemsPerPage: number;
totalPages: number;
currentPage: number;
hasNextPage: boolean;
hasPreviousPage: boolean;
data: UserReviewData[];
};
export type TranscriptContent = Record<string, any> & {
body: string;
categories: string[];
date: Nullable<Date>;
media: Nullable<string>;
speakers: string[];
tags: string[];
title: string;
transcript_by: Nullable<string>;
loc?: string;
};
export type TranscriptMetadata = {
date: Date;
source_file: string;
media: string;
speakers: string[];
tags: string[];
title: string;
transcript_by: string;
};
export type DigitalPaperEditWord = {
id: number;
start: number;
end: number;
text: string;
};
export type DigitalPaperEditParagraph = {
id: number;
start: number;
end: number;
speaker: string;
};
export type DigitalPaperEditFormat = {
words: DigitalPaperEditWord[];
paragraphs: DigitalPaperEditParagraph[];
};
export type SlateNode = {
children: { text: string; words: DigitalPaperEditWord[] };
speaker: string;
start: number;
startTimecode: string;
previousTimings: string;
type: string;
chapter?: string;
};
type Nullable<T> = T | null;
export type AbstractedChakraComponentProps<T> = {
children: React.ReactNode;
} & Omit<T, "children">;
export type SelectableMetadataType = {
slug: string;
value: string;
};
export type SelectableMetadataList = {
categories: SelectableMetadataType[];
speakers: SelectableMetadataType[];
tags: SelectableMetadataType[];
media: string[];
};
export type DirectoriesDataType = {
dir: SelectableMetadataType[];
code?: string;
};
// directory pattern for state
export type IDir = {
slug: string;
value: string;
nestDir?: IDir[];
};
export const UserRoles = {
reviewer: "reviewer",
evaluator: "evaluator",
admin: "admin",
};
export type UserRole = keyof typeof UserRoles;
export type UserData = {
permissions: UserRole;
id: number;
email: string;
githubUsername: string;
updatedAt: string;
createdAt: string;
authToken?: string | null;
jwt?: string | null;
archivedAt?: string | null;
};
export type UserSessionType = {
name?: string | null;
email?: string | null;
image?: string | null;
id?: number;
permissions?: string;
githubUsername?: string;
jwt?: string;
};
export type DecodedJWT = {
userId: number;
permissions: UserRole;
githubAuthToken: string;
isEmailPresent: boolean;
iat: number;
exp: number;
};
export type Wallet = {
id: string;
balance: number;
userId: number;
transactions: Transaction[];
};
export type Transaction = {
id: string;
walletId: string;
reviewId: number;
amount: string;
transactionType: "credit" | "debit";
transactionStatus: "success" | "pending" | "failed";
invoice?: null | string;
createdAt: string;
updatedAt: string;
};
export type AdminTransaction = Transaction & {
wallet: {
id: string;
user: {
email: string;
githubUsername: string;
id: string;
permissions: UserRole;
};
};
};
export type TransactionQueryType =
(typeof TransactionType)[keyof typeof TransactionType];
export type TransactionQueryStatus =
(typeof TransactionStatus)[keyof typeof TransactionStatus];
// Reviews for admin;
export type ReviewQueryStatus =
(typeof ReviewStatus)[keyof typeof ReviewStatus];
export type GroupedDataType = {
review: AdminReview | Review;
transcriptUrl?: Nullable<string>;
content?: TranscriptContent;
};