|
8 | 8 | FieldArray,
|
9 | 9 | Form,
|
10 | 10 | FormControl,
|
| 11 | + FormSection, |
11 | 12 | Input,
|
12 | 13 | Label,
|
13 | 14 | Select,
|
@@ -75,78 +76,93 @@ export function ApplicationForm({ address = "" }) {
|
75 | 76 | create.mutate({ application, profile });
|
76 | 77 | }}
|
77 | 78 | >
|
78 |
| - <Heading as="h3" size="xl"> |
79 |
| - Profile |
80 |
| - </Heading> |
81 |
| - <FormControl name="profile.name" label="Name" required> |
82 |
| - <Input placeholder="Your name" /> |
83 |
| - </FormControl> |
84 |
| - <div className="mb-4 gap-4 md:flex"> |
85 |
| - <FormControl required label="Avatar" name="profile.profileImageUrl"> |
86 |
| - <ImageUpload className="h-48 w-48 " /> |
| 79 | + <FormSection |
| 80 | + title="Profile" |
| 81 | + description="Configure your profile name and choose your avatar and background for your project." |
| 82 | + > |
| 83 | + <FormControl name="profile.name" label="Profile name" required> |
| 84 | + <Input placeholder="Your name" /> |
87 | 85 | </FormControl>
|
88 |
| - <FormControl |
89 |
| - required |
90 |
| - label="Cover image" |
91 |
| - name="profile.bannerImageUrl" |
92 |
| - className="flex-1" |
93 |
| - > |
94 |
| - <ImageUpload className="h-48 " /> |
| 86 | + <div className="mb-4 gap-4 md:flex"> |
| 87 | + <FormControl |
| 88 | + required |
| 89 | + label="Project avatar" |
| 90 | + name="profile.profileImageUrl" |
| 91 | + > |
| 92 | + <ImageUpload className="h-48 w-48 " /> |
| 93 | + </FormControl> |
| 94 | + <FormControl |
| 95 | + required |
| 96 | + label="Project background image" |
| 97 | + name="profile.bannerImageUrl" |
| 98 | + className="flex-1" |
| 99 | + > |
| 100 | + <ImageUpload className="h-48 " /> |
| 101 | + </FormControl> |
| 102 | + </div> |
| 103 | + </FormSection> |
| 104 | + <FormSection |
| 105 | + title="Application" |
| 106 | + description="Configure your application and the payout address to where tokens will be transferred." |
| 107 | + > |
| 108 | + <FormControl name="application.name" label="Name" required> |
| 109 | + <Input placeholder="Project name" /> |
95 | 110 | </FormControl>
|
96 |
| - </div> |
97 |
| - <Heading as="h3" size="xl"> |
98 |
| - Application |
99 |
| - </Heading> |
100 |
| - <FormControl name="application.name" label="Name" required> |
101 |
| - <Input placeholder="Project name" /> |
102 |
| - </FormControl> |
103 | 111 |
|
104 |
| - <FormControl name="application.bio" label="Description" required> |
105 |
| - <Input placeholder="Project description" /> |
106 |
| - </FormControl> |
107 |
| - <div className="gap-4 md:flex"> |
| 112 | + <FormControl name="application.bio" label="Description" required> |
| 113 | + <Textarea rows={4} placeholder="Project description" /> |
| 114 | + </FormControl> |
| 115 | + <div className="gap-4 md:flex"> |
| 116 | + <FormControl |
| 117 | + className="flex-1" |
| 118 | + name="application.websiteUrl" |
| 119 | + label="Website" |
| 120 | + required |
| 121 | + > |
| 122 | + <Input placeholder="https://" /> |
| 123 | + </FormControl> |
| 124 | + |
| 125 | + <FormControl |
| 126 | + className="flex-1" |
| 127 | + name="application.payoutAddress" |
| 128 | + label="Payout address" |
| 129 | + required |
| 130 | + > |
| 131 | + <Input placeholder="0x..." /> |
| 132 | + </FormControl> |
| 133 | + </div> |
| 134 | + </FormSection> |
| 135 | + |
| 136 | + <FormSection |
| 137 | + title="Contribution & Impact" |
| 138 | + description="Describe the contribution and impact of your project." |
| 139 | + > |
108 | 140 | <FormControl
|
109 |
| - className="flex-1" |
110 |
| - name="application.websiteUrl" |
111 |
| - label="Website" |
| 141 | + name="application.contributionDescription" |
| 142 | + label="Contribution description" |
112 | 143 | required
|
113 | 144 | >
|
114 |
| - <Input placeholder="https://" /> |
| 145 | + <Textarea |
| 146 | + rows={4} |
| 147 | + placeholder="What have your project contributed to?" |
| 148 | + /> |
115 | 149 | </FormControl>
|
116 | 150 |
|
117 | 151 | <FormControl
|
118 |
| - className="flex-1" |
119 |
| - name="application.payoutAddress" |
120 |
| - label="Payout address" |
| 152 | + name="application.impactDescription" |
| 153 | + label="Impact description" |
121 | 154 | required
|
122 | 155 | >
|
123 |
| - <Input placeholder="0x..." /> |
| 156 | + <Textarea |
| 157 | + rows={4} |
| 158 | + placeholder="What impact has your project had?" |
| 159 | + /> |
124 | 160 | </FormControl>
|
125 |
| - </div> |
| 161 | + <ImpactTags /> |
| 162 | + </FormSection> |
126 | 163 |
|
127 |
| - <FormControl |
128 |
| - name="application.contributionDescription" |
129 |
| - label="Contribution description" |
130 |
| - required |
131 |
| - > |
132 |
| - <Textarea |
133 |
| - rows={4} |
134 |
| - placeholder="What have your project contributed to?" |
135 |
| - /> |
136 |
| - </FormControl> |
137 |
| - |
138 |
| - <FormControl |
139 |
| - name="application.impactDescription" |
140 |
| - label="Impact description" |
141 |
| - required |
142 |
| - > |
143 |
| - <Textarea rows={4} placeholder="What impact has your project had?" /> |
144 |
| - </FormControl> |
145 |
| - |
146 |
| - <ImpactTags /> |
147 |
| - |
148 |
| - <ApplicationFormSection |
149 |
| - label="Contribution links" |
| 164 | + <FormSection |
| 165 | + title="Contribution links" |
150 | 166 | description="Where can we find your contributions?"
|
151 | 167 | >
|
152 | 168 | <FieldArray
|
@@ -181,10 +197,10 @@ export function ApplicationForm({ address = "" }) {
|
181 | 197 | </>
|
182 | 198 | )}
|
183 | 199 | />
|
184 |
| - </ApplicationFormSection> |
| 200 | + </FormSection> |
185 | 201 |
|
186 |
| - <ApplicationFormSection |
187 |
| - label="Impact metrics" |
| 202 | + <FormSection |
| 203 | + title="Impact metrics" |
188 | 204 | description="What kind of impact have your project made?"
|
189 | 205 | >
|
190 | 206 | <FieldArray
|
@@ -214,10 +230,10 @@ export function ApplicationForm({ address = "" }) {
|
214 | 230 | </>
|
215 | 231 | )}
|
216 | 232 | />
|
217 |
| - </ApplicationFormSection> |
| 233 | + </FormSection> |
218 | 234 |
|
219 |
| - <ApplicationFormSection |
220 |
| - label="Funding sources" |
| 235 | + <FormSection |
| 236 | + title="Funding sources" |
221 | 237 | description="From what sources have you received funding?"
|
222 | 238 | >
|
223 | 239 | <FieldArray
|
@@ -261,7 +277,7 @@ export function ApplicationForm({ address = "" }) {
|
261 | 277 | </>
|
262 | 278 | )}
|
263 | 279 | />
|
264 |
| - </ApplicationFormSection> |
| 280 | + </FormSection> |
265 | 281 |
|
266 | 282 | {error ? (
|
267 | 283 | <div className="mb-4 text-center text-gray-600 dark:text-gray-400">
|
@@ -319,25 +335,6 @@ function CreateApplicationButton({
|
319 | 335 | );
|
320 | 336 | }
|
321 | 337 |
|
322 |
| -function ApplicationFormSection({ |
323 |
| - label, |
324 |
| - description, |
325 |
| - children, |
326 |
| -}: PropsWithChildren<{ label: string; description: string }>) { |
327 |
| - return ( |
328 |
| - <div> |
329 |
| - <div> |
330 |
| - <Heading as="h3" size="xl"> |
331 |
| - {label} |
332 |
| - </Heading> |
333 |
| - <p className="mb-4 leading-loose text-gray-400">{description}</p> |
334 |
| - </div> |
335 |
| - |
336 |
| - <div>{children}</div> |
337 |
| - </div> |
338 |
| - ); |
339 |
| -} |
340 |
| - |
341 | 338 | function ImpactTags() {
|
342 | 339 | const { control, watch, formState } =
|
343 | 340 | useFormContext<z.infer<typeof ApplicationCreateSchema>>();
|
|
0 commit comments