fleet/frontend/components/MainContent/MainContent.tsx
Gabriel Hernandez b92e9efdb5
show apns expiration banner in UI for free tier (#40936)
**Related issue:** Resolves #39184

show apns expiration banner for the free tier in the UI. Before it was
limited to show only for premium tier.

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
- [x] QA'd all new/changed functionality manually

---------

Co-authored-by: Nico <32375741+nulmete@users.noreply.github.com>
2026-03-04 13:12:33 +00:00

102 lines
3.2 KiB
TypeScript

import React, { ReactNode, useContext } from "react";
import classnames from "classnames";
import { hasLicenseExpired } from "utilities/helpers";
import { AppContext } from "context/app";
import AppleBMTermsMessage from "components/MDM/AppleBMTermsMessage";
import LicenseExpirationBanner from "components/LicenseExpirationBanner";
import ApplePNCertRenewalMessage from "components/MDM/ApplePNCertRenewalMessage";
import AppleBMRenewalMessage from "components/MDM/AppleBMRenewalMessage";
import AndroidEnterpriseDeletedMessage from "components/MDM/AndroidEnterpriseDeletedMessage";
import VppRenewalMessage from "./banners/VppRenewalMessage";
export interface IMainContentConfig {
renderedBanner: boolean;
}
interface IMainContentProps {
children: ReactNode | ((mainContentConfig: IMainContentConfig) => ReactNode);
/** An optional classname to pass to the main content component.
* This can be used to apply styles directly onto the main content div
*/
className?: string;
}
const baseClass = "main-content";
/**
* A component that controls the layout and styling of the main content region
* of the application.
*/
const MainContent = ({
children,
className,
}: IMainContentProps): JSX.Element => {
const classes = classnames(baseClass, className);
const {
config,
isPremiumTier,
isAndroidEnterpriseDeleted,
isApplePnsExpired,
isAppleBmExpired,
isVppExpired,
needsAbmTermsRenewal,
willAppleBmExpire,
willApplePnsExpire,
willVppExpire,
} = useContext(AppContext);
const renderAppWideBanner = () => {
const isFleetLicenseExpired = hasLicenseExpired(
config?.license.expiration || ""
);
let banner: JSX.Element | null = null;
// the order of these checks is important. This is the priority order
// for showing banners and only one banner is shown at a time.
if (isApplePnsExpired || willApplePnsExpire) {
// APNs expiration banner will show for either premium or free tiers
// but all other banners are only for premium tiers
banner = <ApplePNCertRenewalMessage expired={isApplePnsExpired} />;
} else if (isPremiumTier) {
if (isAndroidEnterpriseDeleted) {
banner = <AndroidEnterpriseDeletedMessage />;
} else if (isAppleBmExpired || willAppleBmExpire) {
banner = <AppleBMRenewalMessage expired={isAppleBmExpired} />;
} else if (needsAbmTermsRenewal) {
banner = <AppleBMTermsMessage />;
} else if (isVppExpired || willVppExpire) {
banner = <VppRenewalMessage expired={isVppExpired} />;
} else if (isFleetLicenseExpired) {
banner = <LicenseExpirationBanner />;
}
}
if (banner) {
return (
<div className={`${baseClass}--animation-disabled`}>
<div className={`${baseClass}__warning-banner`}>{banner}</div>
</div>
);
}
return null;
};
const appWideBanner = renderAppWideBanner();
const mainContentConfig: IMainContentConfig = {
renderedBanner: !!appWideBanner,
};
return (
<div className={classes}>
{appWideBanner}
{typeof children === "function" ? children(mainContentConfig) : children}
</div>
);
};
export default MainContent;