forked from github/plane
c7deb00f2a
* fix: calendar mutation fix, chore: calendar type added * feat: calendar view display property added * feat: calendar header, single date and single issue component added, chore: code refactor * chore: partialupdateissue function updated * fix: dropdown overflow fix, style: issue card styling * fix: calendar weekly view row height fix * feat: calendar issue card ellipsis added, fix: edit and delete mutation fix * style: plus icon , add issue button padding and onhover effect fix * style: calendar issue card * style: weekly view height
116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import stateService from "services/state.service";
|
|
import trackEventServices from "services/track-event.service";
|
|
// ui
|
|
import { CustomSearchSelect, Tooltip } from "components/ui";
|
|
// icons
|
|
import { getStateGroupIcon } from "components/icons";
|
|
// helpers
|
|
import { addSpaceIfCamelCase } from "helpers/string.helper";
|
|
import { getStatesList } from "helpers/state.helper";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// fetch-keys
|
|
import { STATES_LIST } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
partialUpdateIssue: (formData: Partial<IIssue>, issueId: string) => void;
|
|
position?: "left" | "right";
|
|
selfPositioned?: boolean;
|
|
isNotAllowed: boolean;
|
|
};
|
|
|
|
export const ViewStateSelect: React.FC<Props> = ({
|
|
issue,
|
|
partialUpdateIssue,
|
|
position = "left",
|
|
selfPositioned = false,
|
|
isNotAllowed,
|
|
}) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { data: stateGroups } = useSWR(
|
|
workspaceSlug && issue ? STATES_LIST(issue.project) : null,
|
|
workspaceSlug && issue
|
|
? () => stateService.getStates(workspaceSlug as string, issue.project)
|
|
: null
|
|
);
|
|
const states = getStatesList(stateGroups ?? {});
|
|
|
|
const options = states?.map((state) => ({
|
|
value: state.id,
|
|
query: state.name,
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
{getStateGroupIcon(state.group, "16", "16", state.color)}
|
|
{state.name}
|
|
</div>
|
|
),
|
|
}));
|
|
|
|
const selectedOption = states?.find((s) => s.id === issue.state);
|
|
|
|
return (
|
|
<CustomSearchSelect
|
|
value={issue.state}
|
|
onChange={(data: string) => {
|
|
partialUpdateIssue(
|
|
{
|
|
state: data,
|
|
priority: issue.priority,
|
|
target_date: issue.target_date,
|
|
},
|
|
issue.id
|
|
);
|
|
trackEventServices.trackIssuePartialPropertyUpdateEvent(
|
|
{
|
|
workspaceSlug,
|
|
workspaceId: issue.workspace,
|
|
projectId: issue.project_detail.id,
|
|
projectIdentifier: issue.project_detail.identifier,
|
|
projectName: issue.project_detail.name,
|
|
issueId: issue.id,
|
|
},
|
|
"ISSUE_PROPERTY_UPDATE_STATE"
|
|
);
|
|
|
|
const oldState = states.find((s) => s.id === issue.state);
|
|
const newState = states.find((s) => s.id === data);
|
|
|
|
if (oldState?.group !== "completed" && newState?.group !== "completed") {
|
|
trackEventServices.trackIssueMarkedAsDoneEvent({
|
|
workspaceSlug: issue.workspace_detail.slug,
|
|
workspaceId: issue.workspace_detail.id,
|
|
projectId: issue.project_detail.id,
|
|
projectIdentifier: issue.project_detail.identifier,
|
|
projectName: issue.project_detail.name,
|
|
issueId: issue.id,
|
|
});
|
|
}
|
|
}}
|
|
options={options}
|
|
label={
|
|
<Tooltip
|
|
tooltipHeading="State"
|
|
tooltipContent={addSpaceIfCamelCase(selectedOption?.name ?? "")}
|
|
>
|
|
<div className="flex items-center gap-2 text-brand-secondary">
|
|
{selectedOption &&
|
|
getStateGroupIcon(selectedOption.group, "16", "16", selectedOption.color)}
|
|
{selectedOption?.name ?? "State"}
|
|
</div>
|
|
</Tooltip>
|
|
}
|
|
position={position}
|
|
disabled={isNotAllowed}
|
|
noChevron
|
|
/>
|
|
);
|
|
};
|