mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* feat: add navigation dropdown component * chore: enhance title/ description loader and componenet modularity * chore: issue store filter update * chore: added few icons to ui package * chore: improvements for tabs componenet * chore: enhance sidebar modularity * chore: update issue and router store to add support for additional issue layouts * chore: enhanced cycle componenets modularity * feat: added project grouping header for cycles list * chore: enhanced project dropdown componenet by adding multiple selection functionality * chore: enhanced rich text editor modularity by taking members ids as props for mentions * chore: added functionality to filter disabled layouts in issue-layout dropdown * chore: added support to pass project ids as props in project card list * feat: multi select project modal * chore: seperate out project componenet for reusability * chore: command pallete store improvements * fix: build errors
29 lines
846 B
TypeScript
29 lines
846 B
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { RefreshCw } from "lucide-react";
|
|
// types
|
|
import { TNameDescriptionLoader } from "@plane/types";
|
|
|
|
type Props = {
|
|
isSubmitting: TNameDescriptionLoader;
|
|
};
|
|
|
|
export const NameDescriptionUpdateStatus: React.FC<Props> = observer((props) => {
|
|
const { isSubmitting } = props;
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
className={`flex items-center gap-x-2 transition-all duration-300 ${
|
|
isSubmitting === "saved" ? "fade-out" : "fade-in"
|
|
}`}
|
|
>
|
|
{isSubmitting !== "submitted" && isSubmitting !== "saved" && (
|
|
<RefreshCw className="animate-spin size-3.5 stroke-custom-text-300" />
|
|
)}
|
|
<span className="text-sm text-custom-text-300">{isSubmitting === "submitting" ? "Saving..." : "Saved"}</span>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|