|
| 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? |
0 commit comments