mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e3ebb9b61c
* chore: bulk operations folder restructuring. * fix: build errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
22 lines
680 B
TypeScript
22 lines
680 B
TypeScript
import { observer } from "mobx-react";
|
|
// components
|
|
import { BulkOperationsUpgradeBanner } from "@/components/issues";
|
|
// hooks
|
|
import { useMultipleSelectStore } from "@/hooks/store";
|
|
import { TSelectionHelper } from "@/hooks/use-multiple-select";
|
|
|
|
type Props = {
|
|
className?: string;
|
|
selectionHelpers: TSelectionHelper;
|
|
};
|
|
|
|
export const IssueBulkOperationsRoot: React.FC<Props> = observer((props) => {
|
|
const { className, selectionHelpers } = props;
|
|
// store hooks
|
|
const { isSelectionActive } = useMultipleSelectStore();
|
|
|
|
if (!isSelectionActive || selectionHelpers.isSelectionDisabled) return null;
|
|
|
|
return <BulkOperationsUpgradeBanner className={className} />;
|
|
});
|