feat: issue & comment reaction (#1690)

* feat: developed reaction selector component

* feat add reaction on issue & issue comment

refactor: reaction selector component, made hooks to abstracted reaction logic & state by making custom hook

* fix: emoji.helper.tsx function

* refactor: reaction not working on inbox issue
This commit is contained in:
Dakshesh Jain 2023-07-27 18:55:03 +05:30 committed by GitHub
parent 5cfea3948f
commit 0cc4468091
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 686 additions and 0 deletions

View file

@ -17,6 +17,7 @@ import {
IssueAttachments,
IssueDescriptionForm,
SubIssuesList,
IssueReaction,
} from "components/issues";
// ui
import { CustomMenu } from "components/ui";
@ -117,6 +118,9 @@ export const IssueMainContent: React.FC<Props> = ({
handleFormSubmit={submitChanges}
isAllowed={memberRole.isMember || memberRole.isOwner || !uneditable}
/>
<IssueReaction workspaceSlug={workspaceSlug} issueId={issueId} projectId={projectId} />
<div className="mt-2 space-y-2">
<SubIssuesList parentIssue={issueDetails} user={user} disabled={uneditable} />
</div>