mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e178bba9c0
* dev: move authentication to base class for credentials * chore: new account creation * dev: return error as query parameter * dev: accounts and profile endpoints for user * fix: user store updates * fix: store fixes * fix: type fixes * dev: set is_password_autoset and is_email_verifier for auth providers * dev: move all auth configuration to different apps * dev: fix circular imports * dev: remove unused imports * dev: fix imports for authentication * dev: update endpoints to use rest framework api viewa * fix: onboarding fixes * dev: session model changes * fix: session model and add check for last name first name and avatar * dev: fix referer redirect * dev: remove auth imports * dev: fix imports * dev: update migrations * fix: instance admin login * comflict: conflicts resolved * dev: fix import errors and email check endpoint * fix: error messages and redirects after login * dev: configs api * fix: is github enabled boolean * dev: merge config and instance api * conflict: merge conflict resolved * dev: instance admin sign up endpoint * dev: enable magic link login * dev: configure instance variables for github and google enabled * chore: typo fixes * fix: god mode docker file changes * build-error: resolved build errors * fix: docker compose changes * dev: add email credential check endpoint * fix: minor package changes * fix: docker related changes * dev: add nginx rules in the nginx template * dev: refactor the url patterns * fix: docker changes * fix: docker files for god-mode * fix: static export * fix: nginx conf * dev: smtp sender refused exception * fix: godmode fixes * chore: god mode revamp. * dev: add csrf secured flag * fix: oauth redirect uri and session settings * chore: god mode app changes. (#3982) * chore: send test email functionality. * style: authentication methods page UI revamp. * chore: create workspace popup. * fix: user me endpoint * dev: fix redirection after authentication * dev: handle god mode redirection * fix: redirections * fix: auth related hooks * fix: store related fixes * dev: fix session authentication for rest apis * fix: linting errors * fix: removing references of useStore= * dev: fix redirection and password validation * dev: add useUser hook * fix: build fixes and lint issues * fix: removing useApplication hook * fix: build errors * fix: delete unused files * fix: auth build fixes * fix: bugfixes * dev: alter avatar to support more than 255 chars * dev: fix profile endpoint and increase session expiry time and update session on every request * chore: resolved the migration * chore: resolved merge conflicts * dev: error codes and error messages for the auth flow * dev: instance admin sign up and sign in endpoint * dev: use zxcvbn to validate password strength * dev: add extra parameters when error handling on instance god mode * chore: auth init * chore: signin/ signup form ui updates and password strength meter. * chore: update password fields. * chore: validations and error handling. * chore: updated sign-up form * chore: updated workflow and updated the code structure * chore: instance empty state for god-mode. * chore: instance and auth wrappers update * fix: renaming godmode * fix: docker changes * chore: updated authentication wrappers * chore: updated the authentication workflow and rendered all pages * fix: build errors * fix: docker related fixes * fix: tailing slash added to space and admin for valid nginx locations * chore: seperate pages for signup and login * git-action modified for admin file changes * feature build action updated for admin app * self host modified * chore: resolved build errors and handled signin and signup in a seperate route * chore: sign-in and sign-up revamp. * fix: migration conflicts * dev: migrations * chore: handled redirection * dev: admin url * dev: create seperate endpoint for instance admin me * dev: instance admin endpoint * git action fixed * chore: handled auth wrappers * dev: add serializer and remove print logs * fix: build errors * dev: fix migrations * dev: instance folder structuring * fix: linting errors * chore: resolved build errors * chore: updated store and auth workflow and updates api service types * chore: Replaced Next Link with Anchoer tag for god-mode redirection * add 3333 port to allowed origins * make password login working again * dev: fix redirection, add admin signout endpoint and fix email credential check endpoint * fix unique code sign in * fix small build error * enable sign out * dev: add google client secret variable to configure instance * dev: add referer for redirection * fix origin urls for oauths * admin setup and login separation * dev: fix user redirection and tour completed endpoint * fix build errors * dev: add set password endpoint * dev: remove user creation logic for redirection * fix unique code page * fix forgot password * chore: onboarding revamp. * dev: fix workspace slug redirection in login * chore: invited user onboarding flow update. * chore: fix switch or delete account modal. * fix members exception * refactor auth flows and add invitations to auth flow * fix sig in sign up url * fix action url * fix build errors * dev: fix user set password when logging in * dev: reset password endpoint * chore: confirm password validation for signup and onboarding. * enable reset password * fix build error * chore: minor UI updates. * chore: forgot and reset password UI revamp. * fix authentication re directions * dev: auth redirections * change url paths for signup and signin * dev: make the user logged in when changing passwords * dev: next path redirection for web and space app * dev: next path for magic sign in endpoint * dev: github space endpoint * chore: minor ui updates and fixes in web app. * set password screen * fix multiple unique code generation * dev: next path base redirection * dev: remove print logs * dev: auth space endpoints * fix build errors * dev: invalidate cache on configuration update, god mode exception errors and authentication failed code * dev: fix space endpoints and add extra endpoints * chore: space auth revamp. * dev: add sign up for space app * fix: build errors. * fix: auth redirection logic. * chore: space app onboarding revamp. --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com> Co-authored-by: Manish Gupta <manish@mgupta.me> Co-authored-by: = <=> Co-authored-by: rahulramesha <rahulramesham@gmail.com>
756 lines
23 KiB
TypeScript
756 lines
23 KiB
TypeScript
import { useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
// store hooks
|
|
// icons
|
|
import {
|
|
TagIcon,
|
|
CopyPlus,
|
|
Calendar,
|
|
Link2Icon,
|
|
Users2Icon,
|
|
ArchiveIcon,
|
|
PaperclipIcon,
|
|
ContrastIcon,
|
|
TriangleIcon,
|
|
LayoutGridIcon,
|
|
SignalMediumIcon,
|
|
MessageSquareIcon,
|
|
UsersIcon,
|
|
Inbox,
|
|
} from "lucide-react";
|
|
import { IIssueActivity } from "@plane/types";
|
|
import { Tooltip, BlockedIcon, BlockerIcon, RelatedIcon, LayersIcon, DiceIcon } from "@plane/ui";
|
|
// helpers
|
|
import { renderFormattedDate } from "@/helpers/date-time.helper";
|
|
import { capitalizeFirstLetter } from "@/helpers/string.helper";
|
|
import { useEstimate, useLabel } from "@/hooks/store";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
// types
|
|
|
|
export const IssueLink = ({ activity }: { activity: IIssueActivity }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
const { isMobile } = usePlatformOS();
|
|
|
|
return (
|
|
<Tooltip
|
|
tooltipContent={activity?.issue_detail ? activity.issue_detail.name : "This issue has been deleted"}
|
|
isMobile={isMobile}
|
|
>
|
|
{activity?.issue_detail ? (
|
|
<a
|
|
aria-disabled={activity.issue === null}
|
|
href={`${`/${workspaceSlug ?? activity.workspace_detail?.slug}/projects/${activity.project}/issues/${
|
|
activity.issue
|
|
}`}`}
|
|
target={activity.issue === null ? "_self" : "_blank"}
|
|
rel={activity.issue === null ? "" : "noopener noreferrer"}
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="whitespace-nowrap">{`${activity.project_detail.identifier}-${activity.issue_detail.sequence_id}`}</span>{" "}
|
|
<span className="font-normal break-all">{activity.issue_detail?.name}</span>
|
|
</a>
|
|
) : (
|
|
<span className="inline-flex items-center gap-1 font-medium text-custom-text-100 whitespace-nowrap">
|
|
{" an Issue"}{" "}
|
|
</span>
|
|
)}
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
const UserLink = ({ activity }: { activity: IIssueActivity }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
return (
|
|
<a
|
|
href={`/${workspaceSlug ?? activity.workspace_detail?.slug}/profile/${
|
|
activity.new_identifier ?? activity.old_identifier
|
|
}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
{activity.new_value && activity.new_value !== "" ? activity.new_value : activity.old_value}
|
|
</a>
|
|
);
|
|
};
|
|
|
|
const LabelPill = observer(({ labelId, workspaceSlug }: { labelId: string; workspaceSlug: string }) => {
|
|
// store hooks
|
|
const { workspaceLabels, fetchWorkspaceLabels } = useLabel();
|
|
|
|
useEffect(() => {
|
|
if (!workspaceLabels) fetchWorkspaceLabels(workspaceSlug);
|
|
}, [fetchWorkspaceLabels, workspaceLabels, workspaceSlug]);
|
|
|
|
return (
|
|
<span
|
|
className="h-1.5 w-1.5 flex-shrink-0 rounded-full"
|
|
style={{
|
|
backgroundColor: workspaceLabels?.find((l) => l.id === labelId)?.color ?? "#000000",
|
|
}}
|
|
aria-hidden="true"
|
|
/>
|
|
);
|
|
});
|
|
|
|
const EstimatePoint = observer((props: { point: string }) => {
|
|
const { point } = props;
|
|
const { areEstimatesEnabledForCurrentProject, getEstimatePointValue } = useEstimate();
|
|
const currentPoint = Number(point) + 1;
|
|
|
|
const estimateValue = getEstimatePointValue(Number(point), null);
|
|
|
|
return (
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">
|
|
{areEstimatesEnabledForCurrentProject
|
|
? estimateValue
|
|
: `${currentPoint} ${currentPoint > 1 ? "points" : "point"}`}
|
|
</span>
|
|
);
|
|
});
|
|
|
|
const inboxActivityMessage = {
|
|
declined: {
|
|
showIssue: "declined issue",
|
|
noIssue: "declined this issue from inbox.",
|
|
},
|
|
snoozed: {
|
|
showIssue: "snoozed issue",
|
|
noIssue: "snoozed this issue.",
|
|
},
|
|
accepted: {
|
|
showIssue: "accepted issue",
|
|
noIssue: "accepted this issue from inbox.",
|
|
},
|
|
markedDuplicate: {
|
|
showIssue: "declined issue",
|
|
noIssue: "declined this issue from inbox by marking a duplicate issue.",
|
|
},
|
|
};
|
|
|
|
const getInboxUserActivityMessage = (activity: IIssueActivity, showIssue: boolean) => {
|
|
switch (activity.verb) {
|
|
case "-1":
|
|
return showIssue ? inboxActivityMessage.declined.showIssue : inboxActivityMessage.declined.noIssue;
|
|
case "0":
|
|
return showIssue ? inboxActivityMessage.snoozed.showIssue : inboxActivityMessage.snoozed.noIssue;
|
|
case "1":
|
|
return showIssue ? inboxActivityMessage.accepted.showIssue : inboxActivityMessage.accepted.noIssue;
|
|
case "2":
|
|
return showIssue ? inboxActivityMessage.markedDuplicate.showIssue : inboxActivityMessage.markedDuplicate.noIssue;
|
|
default:
|
|
return "updated inbox issue status.";
|
|
}
|
|
};
|
|
|
|
const activityDetails: {
|
|
[key: string]: {
|
|
message: (activity: IIssueActivity, showIssue: boolean, workspaceSlug: string) => React.ReactNode;
|
|
icon: React.ReactNode;
|
|
};
|
|
} = {
|
|
assignees: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<>
|
|
added a new assignee <UserLink activity={activity} />
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
to <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed the assignee <UserLink activity={activity} />
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <Users2Icon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
archived_at: {
|
|
message: (activity) => {
|
|
if (activity.new_value === "restore")
|
|
return (
|
|
<>
|
|
restored <IssueLink activity={activity} />
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
archived <IssueLink activity={activity} />
|
|
</>
|
|
);
|
|
},
|
|
icon: <ArchiveIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
attachment: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.verb === "created")
|
|
return (
|
|
<>
|
|
uploaded a new{" "}
|
|
<a
|
|
href={`${activity.new_value}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
attachment
|
|
</a>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
to <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed an attachment
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <PaperclipIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
description: {
|
|
message: (activity, showIssue) => (
|
|
<>
|
|
updated the description
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
of <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
),
|
|
icon: <MessageSquareIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
estimate_point: {
|
|
message: (activity, showIssue) => {
|
|
if (!activity.new_value)
|
|
return (
|
|
<>
|
|
removed the estimate point
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
set the estimate point to <EstimatePoint point={activity.new_value} />
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
for <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <TriangleIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
issue: {
|
|
message: (activity) => {
|
|
if (activity.verb === "created")
|
|
return (
|
|
<>
|
|
created <IssueLink activity={activity} />
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
deleted <IssueLink activity={activity} />
|
|
</>
|
|
);
|
|
},
|
|
icon: <LayersIcon width={12} height={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
labels: {
|
|
message: (activity, showIssue, workspaceSlug) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<span className="overflow-hidden">
|
|
added a new label{" "}
|
|
<span className="inline-flex items-center gap-2 rounded-full border border-custom-border-300 px-2 py-0.5 text-xs">
|
|
<LabelPill labelId={activity.new_identifier ?? ""} workspaceSlug={workspaceSlug} />
|
|
<span className="flex-shrink font-medium text-custom-text-100 break-all line-clamp-1">
|
|
{activity.new_value}
|
|
</span>
|
|
</span>
|
|
{showIssue && (
|
|
<span className="">
|
|
{" "}
|
|
to <IssueLink activity={activity} />
|
|
</span>
|
|
)}
|
|
</span>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed the label{" "}
|
|
<span className="inline-flex items-center gap-2 rounded-full border border-custom-border-300 px-2 py-0.5 text-xs">
|
|
<LabelPill labelId={activity.old_identifier ?? ""} workspaceSlug={workspaceSlug} />
|
|
<span className="flex-shrink font-medium text-custom-text-100 break-all line-clamp-1">
|
|
{activity.old_value}
|
|
</span>
|
|
</span>
|
|
{showIssue && (
|
|
<span>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</span>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <TagIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
link: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.verb === "created")
|
|
return (
|
|
<>
|
|
added this{" "}
|
|
<a
|
|
href={`${activity.new_value}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
link
|
|
</a>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
to <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else if (activity.verb === "updated")
|
|
return (
|
|
<>
|
|
updated the{" "}
|
|
<a
|
|
href={`${activity.old_value}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
link
|
|
</a>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed this{" "}
|
|
<a
|
|
href={`${activity.old_value}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
link
|
|
</a>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <Link2Icon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
cycles: {
|
|
message: (activity, showIssue, workspaceSlug) => {
|
|
if (activity.verb === "created")
|
|
return (
|
|
<>
|
|
<span className="flex-shrink-0">
|
|
added {showIssue ? <IssueLink activity={activity} /> : "this issue"}{" "}
|
|
<span className="whitespace-nowrap">to the cycle</span>{" "}
|
|
</span>
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/cycles/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
else if (activity.verb === "updated")
|
|
return (
|
|
<>
|
|
<span className="flex-shrink-0 whitespace-nowrap">set the cycle to </span>
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/cycles/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed <IssueLink activity={activity} /> from the cycle{" "}
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/cycles/${activity.old_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.old_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
},
|
|
icon: <ContrastIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
modules: {
|
|
message: (activity, showIssue, workspaceSlug) => {
|
|
if (activity.verb === "created")
|
|
return (
|
|
<>
|
|
added {showIssue ? <IssueLink activity={activity} /> : "this issue"} to the module{" "}
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
else if (activity.verb === "updated")
|
|
return (
|
|
<>
|
|
set the module to{" "}
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed <IssueLink activity={activity} /> from the module{" "}
|
|
<a
|
|
href={`/${workspaceSlug}/projects/${activity.project}/modules/${activity.old_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="break-all">{activity.old_value}</span>
|
|
</a>
|
|
</>
|
|
);
|
|
},
|
|
icon: <DiceIcon className="h-3 w-3 !text-[#6b7280]" aria-hidden="true" />,
|
|
},
|
|
name: {
|
|
message: (activity, showIssue) => (
|
|
<>
|
|
set the name to <span className="break-all">{activity.new_value}</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
of <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
),
|
|
icon: <MessageSquareIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
parent: {
|
|
message: (activity, showIssue) => {
|
|
if (!activity.new_value)
|
|
return (
|
|
<>
|
|
removed the parent{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.old_value}</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
set the parent to{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.new_value}</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
for <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <UsersIcon className="h-3 w-3 !text-[#6b7280]" aria-hidden="true" />,
|
|
},
|
|
priority: {
|
|
message: (activity, showIssue) => (
|
|
<>
|
|
set the priority to{" "}
|
|
<span className="font-medium text-custom-text-100">
|
|
{activity.new_value ? capitalizeFirstLetter(activity.new_value) : "None"}
|
|
</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
for <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
),
|
|
icon: <SignalMediumIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
relates_to: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<>
|
|
marked that {showIssue ? <IssueLink activity={activity} /> : "this issue"} relates to{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.new_value}</span>.
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed the relation from{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.old_value}</span>.
|
|
</>
|
|
);
|
|
},
|
|
icon: <RelatedIcon height="12" width="12" color="#6b7280" />,
|
|
},
|
|
blocking: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<>
|
|
marked {showIssue ? <IssueLink activity={activity} /> : "this issue"} is blocking issue{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.new_value}</span>.
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed the blocking issue{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.old_value}</span>.
|
|
</>
|
|
);
|
|
},
|
|
icon: <BlockerIcon height="12" width="12" color="#6b7280" />,
|
|
},
|
|
blocked_by: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<>
|
|
marked {showIssue ? <IssueLink activity={activity} /> : "this issue"} is being blocked by{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.new_value}</span>.
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed {showIssue ? <IssueLink activity={activity} /> : "this issue"} being blocked by issue{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.old_value}</span>.
|
|
</>
|
|
);
|
|
},
|
|
icon: <BlockedIcon height="12" width="12" color="#6b7280" />,
|
|
},
|
|
duplicate: {
|
|
message: (activity, showIssue) => {
|
|
if (activity.old_value === "")
|
|
return (
|
|
<>
|
|
marked {showIssue ? <IssueLink activity={activity} /> : "this issue"} as duplicate of{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.new_value}</span>.
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
removed {showIssue ? <IssueLink activity={activity} /> : "this issue"} as a duplicate of{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">{activity.old_value}</span>.
|
|
</>
|
|
);
|
|
},
|
|
icon: <CopyPlus size={12} color="#6b7280" />,
|
|
},
|
|
state: {
|
|
message: (activity, showIssue) => (
|
|
<>
|
|
set the state to <span className="font-medium text-custom-text-100 break-all">{activity.new_value}</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
for <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
),
|
|
icon: <LayoutGridIcon size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
start_date: {
|
|
message: (activity, showIssue) => {
|
|
if (!activity.new_value)
|
|
return (
|
|
<>
|
|
removed the start date
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
set the start date to{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">
|
|
{renderFormattedDate(activity.new_value)}
|
|
</span>
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
for <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <Calendar size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
target_date: {
|
|
message: (activity, showIssue) => {
|
|
if (!activity.new_value)
|
|
return (
|
|
<>
|
|
removed the due date
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
from <IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
else
|
|
return (
|
|
<>
|
|
set the due date to{" "}
|
|
<span className="font-medium text-custom-text-100 whitespace-nowrap">
|
|
{renderFormattedDate(activity.new_value)}
|
|
</span>
|
|
{showIssue && (
|
|
<>
|
|
<IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
icon: <Calendar size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
inbox: {
|
|
message: (activity, showIssue) => (
|
|
<>
|
|
{getInboxUserActivityMessage(activity, showIssue)}
|
|
{showIssue && (
|
|
<>
|
|
{" "}
|
|
<IssueLink activity={activity} />
|
|
</>
|
|
)}
|
|
</>
|
|
),
|
|
icon: <Inbox size={12} color="#6b7280" aria-hidden="true" />,
|
|
},
|
|
};
|
|
|
|
export const ActivityIcon = ({ activity }: { activity: IIssueActivity }) => (
|
|
<>{activityDetails[activity.field as keyof typeof activityDetails]?.icon}</>
|
|
);
|
|
|
|
type ActivityMessageProps = {
|
|
activity: IIssueActivity;
|
|
showIssue?: boolean;
|
|
};
|
|
|
|
export const ActivityMessage = ({ activity, showIssue = false }: ActivityMessageProps) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
return (
|
|
<>
|
|
{activityDetails[activity.field as keyof typeof activityDetails]?.message(
|
|
activity,
|
|
showIssue,
|
|
workspaceSlug ? workspaceSlug.toString() : activity.workspace_detail?.slug ?? ""
|
|
)}
|
|
</>
|
|
);
|
|
};
|