import { c } from "ttag"; import { skipToken } from "metabase/api"; import Link from "metabase/core/components/Link"; import { color } from "metabase/lib/colors"; import { useSelector } from "metabase/lib/redux"; import * as Urls from "metabase/lib/urls"; import { PLUGIN_COLLECTIONS } from "metabase/plugins"; import { getUserIsAdmin } from "metabase/selectors/user"; import { Alert, Box, Icon } from "metabase/ui"; import { useListStaleCollectionItemsQuery } from "metabase-enterprise/api/collection"; import type { Collection } from "metabase-types/api"; import { getDateFilterValue } from "../CleanupCollectionModal/utils"; const TEXT = { CLEAN_THINGS_UP: c( "This is the heading of a banner that invites the user to clean up a collection.", ).t`Clean things up!`, GET_RID_OF_UNUSED_CONTENT: c( "This is the heading of a banner that invites the user to clean up a collection.", ).t`Get rid of unused content in this collection`, }; export const CollectionCleanupAlert = ({ collection, }: { collection: Collection; }) => { const isAdmin = useSelector(getUserIsAdmin); const shouldFetchStaleItems = isAdmin && PLUGIN_COLLECTIONS.canCleanUp(collection); const { data: staleItems, isLoading, error, } = useListStaleCollectionItemsQuery( shouldFetchStaleItems ? { id: collection.id, limit: 0, // only fetch pagination info before_date: getDateFilterValue("three-months"), // set to 3 months ago } : skipToken, ); const hasSomethingToCleanUp = !!staleItems?.total; if (isLoading || error || !hasSomethingToCleanUp) { return null; } return ( <Alert data-testid="cleanup-alert" icon={<Icon name="ai" size={16} />} styles={{ root: { padding: 0, marginTop: "-.5rem", marginBottom: "2rem" }, icon: { marginRight: ".5rem" }, wrapper: { backgroundColor: color("brand-lighter"), padding: "1rem 1.5rem", }, }} > <Box fz="md" c={"text-dark"}> {TEXT.CLEAN_THINGS_UP}{" "} <Box component={Link} ml="2.5rem" fw="bold" variant="brand" to={`${Urls.collection(collection)}/cleanup`} > {TEXT.GET_RID_OF_UNUSED_CONTENT} </Box> </Box> </Alert> ); };