-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
140 lines (124 loc) · 2.67 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
export interface FormQuestion {
label: string;
type: string; // text, select, checkbox
required?: boolean;
options?: string[];
other?: boolean;
}
export type FormIdPreImage = {
title: string;
description: string;
unixTime: number;
questions: FormQuestion[];
settings: FormSettings;
owner: string;
status: string;
appId: string;
};
export type FormUploadInput = {
id: string;
} & FormIdPreImage;
export type Form = {
id: string;
title: string;
description: string;
unixTime: number;
questions: FormQuestion[];
settings: FormSettings;
owner: string;
arweaveTxId: string;
signatureValid?: boolean;
status: string;
};
export type FormAnswer = {
questionIndex: number;
answer: string | number;
};
export type Submission = {
answers: string[];
formId: string[];
};
export type WagmiEIP712TypedMessage = {
domain: {
[additionalProperties: string]: string;
};
types: {
[additionalProperties: string]: {
name: string;
type: string;
}[];
};
value: FormUploadInput;
primaryType: string;
};
export type EIP712TypedMessage = {
types: {
EIP712Domain: {
name: string;
type: string;
}[];
[additionalProperties: string]: {
name: string;
type: string;
}[];
};
message: FormUploadInput;
} & WagmiEIP712TypedMessage;
export type FormSubmission = {
formId: string;
answers: string[];
txId: string;
verificationTx?: string;
unixTime: number;
};
export type FormSubmissionInput = {
formId: string;
answers?: string[] | string;
unixTime: number;
appId: string;
};
export type PageInfo = {
hasNextPage: boolean;
};
export type FormSettings = {
// TBD
};
export type FormInput = {
title: string;
description: string;
questions: FormQuestion[];
settings: FormSettings;
};
export interface ICreateFormContext {
formInput: FormInput;
setFormInput: (formInput: FormInput) => void;
updateQuestion: (question: FormQuestion, questionIndex: number) => void;
updateSettings: (settings: FormSettings) => void;
}
export interface IEditFormContext {
formInput: FormInput | null | undefined;
setFormInput: (formInput: FormInput) => void;
updateQuestion: (question: FormQuestion, questionIndex: number) => void;
updateSettings: (settings: FormSettings) => void;
getForm: (formId: string) => void;
formNotFound: boolean;
formOwner: string | null | undefined;
formStatus: string | null | undefined;
}
export type ArweveGraphQLResult = {
data: {
transactions: {
edges: {
node: ArweaveTx[];
}[];
};
};
};
export type ArweaveTxTag = {
name: string;
value: string;
};
export type ArweaveTx = {
id: string;
tags: ArweaveTxTag[];
};