mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f13c190676
* fix: is in iframe validation check * chore: remove/ disable all actionable items from deploy url in case url is embeded using Iframe. * chore: remove copy issue link option if clipboard write access is not granted. --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
34 lines
1016 B
TypeScript
34 lines
1016 B
TypeScript
import { useParams } from "next/navigation";
|
|
import { IssueEmojiReactions, IssueVotes } from "@/components/issues/peek-overview";
|
|
import { useProject } from "@/hooks/store";
|
|
import useIsInIframe from "@/hooks/use-is-in-iframe";
|
|
|
|
// type IssueReactionsProps = {
|
|
// workspaceSlug: string;
|
|
// projectId: string;
|
|
// };
|
|
|
|
export const IssueReactions: React.FC = () => {
|
|
const { workspace_slug: workspaceSlug, project_id: projectId } = useParams<any>();
|
|
|
|
const { canVote, canReact } = useProject();
|
|
const isInIframe = useIsInIframe();
|
|
|
|
return (
|
|
<div className="mt-4 flex items-center gap-3">
|
|
{canVote && (
|
|
<>
|
|
<div className="flex items-center gap-2">
|
|
<IssueVotes workspaceSlug={workspaceSlug} projectId={projectId} />
|
|
</div>
|
|
</>
|
|
)}
|
|
{!isInIframe && canReact && (
|
|
<div className="flex items-center gap-2">
|
|
<IssueEmojiReactions workspaceSlug={workspaceSlug} projectId={projectId} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|