-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
212 lines (190 loc) · 4.37 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
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: Nullable<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: Nullable<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;
};
type Nullable<T> = T | null;
export type MetadataProps = Record<string, any> & {
fileTitle: string;
transcript_by: string;
url: string;
date: string;
tags?: string[];
speakers?: string[];
categories?: string[];
};
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 type UserRole = "reviewer" | "admin";
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";
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];
export type SaveToGHData = {
directoryPath: string;
fileName?: string;
url: string | null;
date:
| string
| {
day: string;
month: string;
year: string;
}
| null;
tags?: string[];
speakers?: string[];
categories?: string[];
transcribedText: string;
transcript_by?: string;
ghSourcePath: string | null;
ghBranchUrl: string | null;
reviewId: number;
};
// Reviews for admin;
export type ReviewQueryStatus =
(typeof ReviewStatus)[keyof typeof ReviewStatus];
export type GroupedDataType = {
review: AdminReview | Review;
transcriptUrl?: Nullable<string>;
content?: TranscriptContent;
};