Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit f6c1a95

Browse files
authored
fix: export separatedly components with document error (#112)
1 parent 8dec94d commit f6c1a95

File tree

31 files changed

+270
-103
lines changed

31 files changed

+270
-103
lines changed

colors.md

-92
This file was deleted.

notes.md

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
## useApplicationEvaluations.ts
2+
3+
```typescript
4+
type UseApplicationEvaluations = (
5+
chainId: number,
6+
roundId: string,
7+
applicationId: string,
8+
) => {
9+
data: {
10+
application: ProjectApplication;
11+
applicationEvaluations: Evaluation[];
12+
};
13+
isLoading: boolean;
14+
isError: boolean;
15+
error: Error;
16+
};
17+
```
18+
19+
- useQuery -> ["viewApplicationEvaluationsPage", chainId, roundId, applicationId]
20+
- getApplicationByIdFromIndexer -> services/allo
21+
- getCheckerApplicationEvaluations -> services/checker
22+
23+
---
24+
25+
## useApplicationOverviewEvaluations.ts
26+
27+
```typescript
28+
type UseApplicationOverviewEvaluations = ({ applicationId }: { applicationId: string }) => {
29+
application: CheckerApplication;
30+
applicationEvaluations: Evaluation[];
31+
evaluationQuestions: CheckerApiEvaluationQuestion[];
32+
poolData: CheckerPoolData;
33+
};
34+
```
35+
36+
- gets poolId, chainId, poolsData from useCheckerContext
37+
- generates poolUUID
38+
- gets poolData from poolsData
39+
- gets application from poolData
40+
- gets applicationEvaluations from application
41+
- gets evaluationQuestions from poolData
42+
43+
---
44+
45+
## useGetApplicationsFinalEvaluationPage.ts
46+
47+
```typescript
48+
type UseGetApplicationsFinalEvaluationPage = () => {
49+
categorizedReviews: Record<
50+
"INREVIEW" | "READY_TO_REVIEW" | "APPROVED" | "REJECTED",
51+
ProjectReview[]
52+
>;
53+
statCardsProps: StatCardProps[];
54+
reviewBody: ReviewBody;
55+
poolData: CheckerPoolData;
56+
};
57+
```
58+
59+
- gets poolId, chainId, poolsData from useCheckerContext
60+
- generates poolUUID
61+
- gets poolData from poolsData
62+
- gets categorizedReviews and statCardsProps from poolData.applications -> categorizeProjectReviews()
63+
- generates reviewBody with poolData
64+
65+
## useGetApplicationsReviewPage.ts
66+
67+
```typescript
68+
type UseGetApplicationsReviewPage = () => {
69+
categorizedReviews: Record<
70+
"INREVIEW" | "READY_TO_REVIEW" | "APPROVED" | "REJECTED",
71+
ProjectReview[]
72+
>;
73+
statCardsProps: StatCardProps[];
74+
poolData: CheckerPoolData;
75+
};
76+
```
77+
78+
- gets poolId, chainId, poolsData from useCheckerContext
79+
- generates poolUUID
80+
- gets poolData from poolsData
81+
- gets categorizedReviews and statCardsProps from poolData.applications -> categorizeProjectReviews()
82+
83+
---
84+
85+
## useGetPastApplications.ts
86+
87+
```typescript
88+
type UseGetPastApplications = (
89+
chainId: number,
90+
roundId: string,
91+
applicationId: string,
92+
) => {
93+
data: PastApplication[];
94+
isLoading: boolean;
95+
isError: boolean;
96+
error: Error;
97+
};
98+
```
99+
100+
- useQuery -> ["getPastApplications", chainId, roundId, applicationId]
101+
- getPastApplicationsByApplicationIdFromIndexer -> services/allo
102+
103+
---
104+
105+
## useInitialize.ts
106+
107+
```typescript
108+
type UseInitialize = ({ address, poolId, chainId }: InitData) => void;
109+
```
110+
111+
- sets initialState with setInitialStateAction
112+
- usePoolData -> fetchPoolData and stores it in the context
113+
114+
---
115+
116+
## usePoolData.ts
117+
118+
```typescript
119+
type UsePoolData = () => {
120+
poolData: CheckerPoolData;
121+
refetch: () => void;
122+
};
123+
```
124+
125+
- useQuery -> ["poolData", chainId, poolId, address]
126+
- syncPool -> services/checker
127+
- getApplicationsFromIndexer -> services/allo
128+
- getCheckerPoolData -> services/checker
129+
- generates poolUUID
130+
- parses applications from indexer and checker api to applications object and stores it in the context
131+
132+
---
133+
134+
## usePerformEvaluation.ts
135+
136+
```typescript
137+
type UsePerformEvaluation = () => {
138+
setEvaluationBody: (evaluationBody: EvaluationBody) => void;
139+
isEvaluating: boolean;
140+
isError: boolean;
141+
isSuccess: boolean;
142+
};
143+
```
144+
145+
- has a state to store the evaluationBody
146+
- has a mutation to sign the evaluation
147+
- has a mutation to submit the evaluation
148+
- triggers the signing mutation when evaluationBody is set and submits the evaluation, resetting the evaluationBody.
149+
NOTE: wouldn't it be better to have a single mutation that handles both signing and submitting?
150+
Do we need to have a state to store the evaluationBody?
151+
152+
---
153+
154+
## usePerformOnChainReview.ts
155+
156+
```typescript
157+
type UsePerformOnChainReview = () => {
158+
setReviewBody: (reviewBody: ReviewBody) => void;
159+
steps: Step[];
160+
isReviewing: boolean;
161+
isError: boolean;
162+
isSuccess: boolean;
163+
error: Error;
164+
};
165+
```
166+
167+
- has a state to store the reviewBody
168+
- has states to store the progress of the review steps, contractUpdatingStatus, indexingStatus, finishingStatus
169+
- has a mutation to submit the review
170+
- triggers the mutation when reviewBody is set
171+
- resets the review steps when the mutation is successful
172+
- resets the reviewBody when the mutation is successful
173+
174+
NOTE: do we need to have a state to store the reviewBody?, do we need to have a state to store the review steps independently instead of combining them?

package.json

+25
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,31 @@
8282
"types": "./dist/retrofunding.d.ts",
8383
"import": "./dist/retrofunding.js",
8484
"require": "./dist/retrofunding.js"
85+
},
86+
"./form": {
87+
"types": "./dist/form.d.ts",
88+
"import": "./dist/form.js",
89+
"require": "./dist/form.js"
90+
},
91+
"./setup-progress-form": {
92+
"types": "./dist/setupProgressForm.d.ts",
93+
"import": "./dist/setupProgressForm.js",
94+
"require": "./dist/setupProgressForm.js"
95+
},
96+
"./accordion": {
97+
"types": "./dist/accordion.d.ts",
98+
"import": "./dist/accordion.js",
99+
"require": "./dist/accordion.js"
100+
},
101+
"./markdown-editor": {
102+
"types": "./dist/markdownEditor.d.ts",
103+
"import": "./dist/markdownEditor.js",
104+
"require": "./dist/markdownEditor.js"
105+
},
106+
"./markdown": {
107+
"types": "./dist/markdown.d.ts",
108+
"import": "./dist/markdown.js",
109+
"require": "./dist/markdown.js"
85110
}
86111
},
87112
"devDependencies": {

src/components/AllocationSidebar/components/AllocationChart.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import { CartesianGrid, Line, YAxis, LineChart } from "recharts";
24

35
export const AllocationChart = ({

src/components/AllocationSidebar/components/AllocationItem.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import { PropsWithChildren } from "react";
24

35
import { cn } from "@/lib/utils";

src/components/AllocationSidebar/components/AllocationSortButton.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import { ArrowDownNarrowWide } from "lucide-react";
24
import { ArrowUpWideNarrow } from "lucide-react";
35

src/components/AllocationSidebar/components/SkeletonAllocationItems.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import { cn } from "@/lib/utils";
24
import { Skeleton } from "@/primitives/Skeleton";
35

src/components/Form/FormControllers/AllowlistFormController/AllowlistFormController.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// src/components/Form/FormAllowlistController.tsx
1+
"use client";
2+
23
import React, { useRef } from "react";
34
import { useFormContext, Controller } from "react-hook-form";
45

src/components/Form/FormControllers/ApplicationQuestionsFormController/ApplicationQuestionsFormController.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// src/components/Form/ApplicationQuestionsController.tsx
1+
"use client";
2+
23
import React from "react";
34
import { useEffect } from "react";
45
import { useFieldArray, useFormContext, Controller } from "react-hook-form";

src/components/Form/FormControllers/DisabledProgramInputFormController/DisabledProgramInputFormController.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// src/components/Form/DisabledInputController.tsx
1+
"use client";
2+
23
import React from "react";
34
import { Controller, useFormContext } from "react-hook-form";
45

src/components/Form/FormControllers/FieldArrayFormController/FieldArrayFormController.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// src/components/Form/FieldArrayController.tsx
1+
"use client";
2+
23
import React from "react";
34
import { useFieldArray, useFormContext, Controller } from "react-hook-form";
45

src/components/Form/FormControllers/FileUploadController/FileUploadController.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import React from "react";
24
import { Controller, useFormContext } from "react-hook-form";
35

src/components/Form/FormControllers/MarkdownEditorFormController/MarkdownEditorFormController.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// src/components/Form/MarkdownEditorController.tsx
1+
"use client";
2+
23
import React from "react";
34
import { Controller, useFormContext } from "react-hook-form";
45

src/components/Form/FormControllers/MetricsFormController/MetricsFormController.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import { Controller, useFormContext } from "react-hook-form";
35

src/components/Form/FormControllers/RoundDatesFormController/RoundDatesFormController.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import { useFormContext, Controller } from "react-hook-form";
35

src/components/Form/FormControllers/RoundDatesFormController/SelectedDateRenderer.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24

35
import moment from "moment-timezone";

src/components/Form/FormControllers/RoundDatesFormController/TimelineRow.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import { CheckCircle2Icon } from "lucide-react";
24

35
import { Label } from "@/ui-shadcn/label";

src/components/Form/FormControllers/SelectFormController/SelectFormController.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import React from "react";
24
import { Controller, useFormContext } from "react-hook-form";
35

src/components/Form/utils/buildSchemaFromFields.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// File: utils/buildSchemaFromFields.ts
21
import { z } from "zod";
32

43
import { FormField } from "../types/fieldTypes";

0 commit comments

Comments
 (0)