+1








22339b9786
* chore: init tailwind v4 * chore: update all configs * chore: add source to parse monorepo packages * chore: combine all css files * feat: added extended colors * chore: update typography * chore: update extended color var names * refactor: remove initial spacing variable and update dark mode selector * chore: update css files * chore: update animations * chore: remove spacing tokens * fix: external css files * chore: update tailwind-merge version * chore: update font family * chore: added brief agents.md and story for new design system * chore: enhance design system documentation with rare exceptions for visual separation * chore: add fontsource package for typography * chore: material symbols font added * chore: update shadow default * chore: add stroke and outline theme vars * chore: update ring and fill colors * chore: overwrite tailwind typography tokens * chore: add high contrast mode tokens * chore: update scrollbar colors * chore: backward compatibility for buttons and placeholders * chore: add priority colors * chore: update urgent priority color * chore: update plan colors * chore: add missing utility class * chore: update height and padding classes * chore: update label colors * chore: add missing utlity * chore: add typography plugin to space app * chore: replace existing classNames with new design system tokens #8244 (#8278) * chore: update border colors * chore: update all borders * chore: update text colors * chore: update css variables * chore: update font sizes and weights * chore: update bg colors * chore: sync changes * fix: uncomment spacing-1200 variable in variables.css * chore: update primary colors * refactor: updated border to border-subtle * refactor: update various components and improve UI consistency across the application * updated classnames * updated classnames * refactor: update color-related class names to use new design system variables for consistency * chore: default automations * chore: update text sizes * chore: home and power k * chore: home and power k * chore: replace ui package button components * chore: update text sizes * chore: updated issue identifier (#8275) * refactor: top navigation and sidebar design token (#8276) * chore: update all button components (#8277) * chore: new button component * chore: update existing buttons * chore: overwrite tailwind typography tokens * fix: twMerge config + fixed cn instances * refactor: toast design token updated (#8279) * chore: update existing buttons * chore: tooltip design token updatged (#8280) * chore: moved cn utility to propel (#8281) * chore: update space app UI (#8285) * chore; update space app filters component * fix: button whitespace wrap * chore: space app votes * chore: update dropdown components * refactor: auth, onboarding, sidebar, and common component design token migration (#8291) * chore: checkbox component design token updated * chore: indicator and oauth component design token updated * chore: sidebar design token updated * chore: auth and onboarding design token updated * chore: update divider color * style: update background colors and hover effects across list components * fix: tailwind merge * refactor: toggle switch design token migration and header utility classname added (#8295) * chore: toggle component design token updated * chore: h-header utility class added * chore: updated color tokens for work item detail page (#8296) * chore: update react-day-picker UI * refactor: update button sizes and styles in filters components * refactor: breadcrumbs design token updated (#8297) * chore: update priority icon colors * refactor: updated layout variables * chore: update plan card primary CTA * Chore update editor design system (#8299) * refactor: update styles for callout, color selector, logo selector, and image uploader * refactor:fix image * chore: update settings UI * chore: updated notifications color and size tokens (#8302) * chore: update sm button border radius * fix: logo renderer * chore: icon button component * chore: remove deprecated classes * chore: remove deprecated classes * chore: update editor list spacing * fix: icon button size * chore: improvements (#8309) * chore: update cycles and modules pages * refactor: update background styles across various components to use new design system colors * fix: button type errors * chore: update modals design system (#8310) * refactor: callout bg * refactor: code bg * refactor: modal size and variant --------- Co-authored-by: Aaryan Khandelwal <[email protected]> * chore: update next-themes * design: update billing and plans component styles and remove unused utility functions (#8313) * refactor: empty state design token migration and improvements (#8315) * fix: profile page * refactor: tabs design token updated (#8316) * chore: updated buttons and tokens for work items (#8317) * fix: adjust trial button spacing in checkout modal * chore: update add button hover state * fix: type error (#8318) * fix: type error * chore: code refactor * refactor: update button sizes and background styles in rich filters components * refactor: update editor bg * refactor: enhance Gantt chart sidebar functionality and styling - Removed unused prop from . - Updated to include new props for better block management and scrolling behavior. - Improved auto-scroll functionality for Gantt chart items. - Adjusted styles in component for consistent design. * regression: gantt design * chore: new badge component * fix: favorite star * chore: update backgroung, typography and button sizes across workspace settings general and members pages * fix: header button sizes * fix: emoji icon logo (#8323) * more fixes * chore: update settings sidebar * refactor: avatar component * chore: updated work item detail sidebar (#8327) * refactor: update link preview * fix: work item property dropdowns * fix: dropdown buttons border radius * chore: update power k translation * chore: updated profile activity design (#8328) * chore: update settings pages * chore: update work item sidebar alignments (#8330) * refactor: admin design system * chore: update page header --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]> * fix: formatting * reexport types * fix: lint error --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]>
178 lines
5.7 KiB
TypeScript
178 lines
5.7 KiB
TypeScript
import type { FC } from "react";
|
|
import { useState, useEffect, useCallback, useRef } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useTranslation } from "@plane/i18n";
|
|
import type { TNameDescriptionLoader } from "@plane/types";
|
|
// components
|
|
import { TextArea } from "@plane/ui";
|
|
// types
|
|
import { cn } from "@plane/utils";
|
|
import useDebounce from "@/hooks/use-debounce";
|
|
import type { TIssueOperations } from "./issue-detail";
|
|
// hooks
|
|
|
|
export type IssueTitleInputProps = {
|
|
disabled?: boolean;
|
|
value: string | undefined | null;
|
|
workspaceSlug: string;
|
|
isSubmitting: TNameDescriptionLoader;
|
|
setIsSubmitting: (value: TNameDescriptionLoader) => void;
|
|
issueOperations: TIssueOperations;
|
|
projectId: string;
|
|
issueId: string;
|
|
className?: string;
|
|
containerClassName?: string;
|
|
};
|
|
|
|
export const IssueTitleInput = observer(function IssueTitleInput(props: IssueTitleInputProps) {
|
|
const {
|
|
disabled,
|
|
value,
|
|
workspaceSlug,
|
|
isSubmitting,
|
|
setIsSubmitting,
|
|
issueId,
|
|
issueOperations,
|
|
projectId,
|
|
className,
|
|
containerClassName,
|
|
} = props;
|
|
const { t } = useTranslation();
|
|
// states
|
|
const [title, setTitle] = useState("");
|
|
const [isLengthVisible, setIsLengthVisible] = useState(false);
|
|
// ref to track if there are unsaved changes
|
|
const hasUnsavedChanges = useRef(false);
|
|
// ref to store current title value for cleanup function
|
|
const currentTitleRef = useRef(title);
|
|
// hooks
|
|
const debouncedValue = useDebounce(title, 1500);
|
|
|
|
useEffect(() => {
|
|
if (value) {
|
|
setTitle(value);
|
|
currentTitleRef.current = value;
|
|
// Reset unsaved changes flag when value is set from props
|
|
hasUnsavedChanges.current = false;
|
|
}
|
|
}, [value]);
|
|
|
|
useEffect(() => {
|
|
const textarea = document.querySelector("#title-input");
|
|
if (debouncedValue && debouncedValue !== value) {
|
|
if (debouncedValue.trim().length > 0) {
|
|
issueOperations.update(workspaceSlug, projectId, issueId, { name: debouncedValue }).finally(() => {
|
|
setIsSubmitting("saved");
|
|
hasUnsavedChanges.current = false;
|
|
if (textarea && !textarea.matches(":focus")) {
|
|
const trimmedTitle = debouncedValue.trim();
|
|
if (trimmedTitle !== title) setTitle(trimmedTitle);
|
|
}
|
|
});
|
|
} else {
|
|
setTitle(value || "");
|
|
setIsSubmitting("saved");
|
|
hasUnsavedChanges.current = false;
|
|
}
|
|
}
|
|
// DO NOT Add more dependencies here. It will cause multiple requests to be sent.
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [debouncedValue]);
|
|
|
|
useEffect(() => {
|
|
const handleBlur = () => {
|
|
const trimmedTitle = title.trim();
|
|
if (trimmedTitle !== title && isSubmitting !== "submitting") {
|
|
if (trimmedTitle.length > 0) {
|
|
setTitle(trimmedTitle);
|
|
setIsSubmitting("submitting");
|
|
hasUnsavedChanges.current = true;
|
|
} else {
|
|
setTitle(value || "");
|
|
setIsSubmitting("saved");
|
|
hasUnsavedChanges.current = false;
|
|
}
|
|
}
|
|
};
|
|
|
|
const textarea = document.querySelector("#title-input"); // You might need to change this selector according to your TextArea component
|
|
if (textarea) {
|
|
textarea.addEventListener("blur", handleBlur);
|
|
}
|
|
|
|
return () => {
|
|
if (textarea) {
|
|
textarea.removeEventListener("blur", handleBlur);
|
|
}
|
|
};
|
|
}, [title, isSubmitting, setIsSubmitting]);
|
|
|
|
// Save on unmount if there are unsaved changes
|
|
useEffect(
|
|
() => () => {
|
|
if (hasUnsavedChanges.current && currentTitleRef.current.trim().length > 0) {
|
|
issueOperations
|
|
.update(workspaceSlug, projectId, issueId, { name: currentTitleRef.current.trim() })
|
|
.catch((error) => {
|
|
console.error("Failed to save title on unmount:", error);
|
|
})
|
|
.finally(() => {
|
|
setIsSubmitting("saved");
|
|
hasUnsavedChanges.current = false;
|
|
});
|
|
}
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[]
|
|
);
|
|
|
|
const handleTitleChange = useCallback(
|
|
(e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
setIsSubmitting("submitting");
|
|
const titleFromEvent = e.target.value;
|
|
setTitle(titleFromEvent);
|
|
currentTitleRef.current = titleFromEvent;
|
|
hasUnsavedChanges.current = true;
|
|
},
|
|
[setIsSubmitting]
|
|
);
|
|
|
|
if (disabled) return <div className="text-20 font-medium whitespace-pre-line">{title}</div>;
|
|
|
|
return (
|
|
<div className="flex flex-col gap-1.5">
|
|
<div className={cn("relative", containerClassName)}>
|
|
<TextArea
|
|
id="title-input"
|
|
className={cn(
|
|
"block w-full resize-none overflow-hidden rounded-sm border-none bg-transparent px-3 py-0 text-20 font-medium outline-none ring-0",
|
|
{
|
|
"ring-1 ring-red-400 mx-2.5": title?.length === 0,
|
|
},
|
|
className
|
|
)}
|
|
disabled={disabled}
|
|
value={title}
|
|
onChange={handleTitleChange}
|
|
maxLength={255}
|
|
placeholder={t("issue.title.label")}
|
|
onFocus={() => setIsLengthVisible(true)}
|
|
onBlur={() => setIsLengthVisible(false)}
|
|
/>
|
|
<div
|
|
className={cn(
|
|
"pointer-events-none absolute bottom-1 right-1 z-[2] rounded-sm bg-surface-1 p-0.5 text-11 text-secondary opacity-0 transition-opacity",
|
|
{
|
|
"opacity-100": isLengthVisible,
|
|
}
|
|
)}
|
|
>
|
|
<span className={`${title.length === 0 || title.length > 255 ? "text-red-500" : ""}`}>{title.length}</span>
|
|
/255
|
|
</div>
|
|
</div>
|
|
{title?.length === 0 && <span className="text-13 font-medium text-red-500">{t("form.title.required")}</span>}
|
|
</div>
|
|
);
|
|
});
|