-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): working submission comments to submission page (#1709)
* fix(submissionDetails): display start, end, today date, deviceid seperately above * fix(accordion): add seperator props * fix(submissionDetails): use accordion to display nested values, code refactor * fix(submissionTable): change submission taskId key * fix(submissionsTable): redirect to submission instance page with taskUId * fix(submission): pass taskUId while reviewStateModal dispatch * feat(assetModules): calendar icon add * fix(submissionComments): submission comments component add * fix(submissionDetails): fix UI, submissionComments component add * feat(updateReviewStatusModal): add comments api integration * fix(projectInfo): fix index access * fix(submissionService): remove clear reviewStatusState & loading state remove from service * fix(comments): filter task comments only * fix(submissionComments): display msg if no comments * fix(submissionDetails): text size change * fix(submissionDetails): style fixes
- Loading branch information
Showing
11 changed files
with
299 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/frontend/src/components/SubmissionInstance/SubmissionComments.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { useAppSelector } from '@/types/reduxTypes'; | ||
import React from 'react'; | ||
import { useParams } from 'react-router-dom'; | ||
import AssetModules from '@/shared/AssetModules'; | ||
import CoreModules from '@/shared/CoreModules'; | ||
|
||
const SubmissionComments = () => { | ||
const params = useParams(); | ||
const submissionInstanceId = params.instanceId; | ||
|
||
const taskCommentsList = useAppSelector((state) => state?.project?.projectCommentsList); | ||
const filteredTaskCommentsList = taskCommentsList | ||
?.filter((comment) => comment?.action_text.includes('-SUBMISSION_INST-')) | ||
.filter((comment) => comment.action_text.split('-SUBMISSION_INST-')[0] === submissionInstanceId); | ||
const taskGetCommentsLoading = useAppSelector((state) => state?.project?.projectGetCommentsLoading); | ||
|
||
return ( | ||
<div className="fmtm-bg-white fmtm-rounded-xl fmtm-p-6"> | ||
<h4 className="fmtm-font-bold fmtm-text-[#555] fmtm-text-xl fmtm-mb-[0.625rem]">Comments</h4> | ||
{taskGetCommentsLoading ? ( | ||
<div> | ||
{Array.from({ length: 6 }).map((_, i) => ( | ||
<div | ||
key={i} | ||
className="fmtm-flex fmtm-flex-col fmtm-gap-1 fmtm-py-[0.875rem] fmtm-border-b fmtm-border-[#D4D4D4]" | ||
> | ||
<div className="fmtm-flex fmtm-justify-between"> | ||
<CoreModules.Skeleton className="!fmtm-w-[6rem] fmtm-h-6" /> | ||
<CoreModules.Skeleton className="!fmtm-w-[6rem] fmtm-h-4" /> | ||
</div> | ||
<CoreModules.Skeleton className="!fmtm-w-full fmtm-h-5" /> | ||
</div> | ||
))} | ||
</div> | ||
) : filteredTaskCommentsList?.length > 0 ? ( | ||
filteredTaskCommentsList?.map((comment) => ( | ||
<div className="fmtm-py-[0.875rem] fmtm-border-b fmtm-border-[#D4D4D4] fmtm-flex fmtm-flex-col fmtm-gap-2"> | ||
<div className="fmtm-flex fmtm-justify-between fmtm-items-center"> | ||
<p className="fmtm-text-base fmtm-font-bold fmtm-text-[#555]">{comment?.username}</p> | ||
<div className="fmtm-flex fmtm-items-center fmtm-gap-1"> | ||
<AssetModules.CalendarTodayOutlinedIcon style={{ fontSize: '12px' }} className="fmtm-text-[#D73F37]" /> | ||
<p className="fmtm-text-xs fmtm-text-[#555]">{comment?.action_date?.split('T')[0]}</p> | ||
</div> | ||
</div> | ||
<p className="fmtm-text-[#555] fmtm-text-sm">{comment?.action_text?.split('-SUBMISSION_INST-')[1]}</p> | ||
</div> | ||
)) | ||
) : ( | ||
<p className="fmtm-text-center fmtm-py-5 fmtm-text-xl fmtm-text-gray-400">No Comments!</p> | ||
)} | ||
</div> | ||
); | ||
}; | ||
|
||
export default SubmissionComments; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.