import { getFeatureFlagMap } from "@calcom/features/flags/server/utils"; import { AverageEventDurationChart, BookingKPICards, BookingStatusLineChart, LeastBookedTeamMembersTable, MostBookedTeamMembersTable, PopularEventsTable, } from "@calcom/features/insights/components"; import { FiltersProvider } from "@calcom/features/insights/context/FiltersProvider"; import { Filters } from "@calcom/features/insights/filters"; import Shell from "@calcom/features/shell/Shell"; import { UpgradeTip } from "@calcom/features/tips"; import { WEBAPP_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc"; import { Button, ButtonGroup } from "@calcom/ui"; import { RefreshCcw, UserPlus, Users } from "@calcom/ui/components/icon"; const Heading = () => { const { t } = useLocale(); return (

{t("analytics_for_organisation")}

{t("subtitle_analytics")}

); }; export default function InsightsPage() { const { t } = useLocale(); const { data: user } = trpc.viewer.me.useQuery(); const features = [ { icon: , title: t("view_bookings_across"), description: t("view_bookings_across_description"), }, { icon: , title: t("identify_booking_trends"), description: t("identify_booking_trends_description"), }, { icon: , title: t("spot_popular_event_types"), description: t("spot_popular_event_types_description"), }, ]; return (
}> {!user ? ( <> ) : (
{t("looking_for_more_insights")}{" "} {" "} {t("contact_support")}
)} ); } // If feature flag is disabled, return not found on getServerSideProps export const getServerSideProps = async () => { const prisma = await import("@calcom/prisma").then((mod) => mod.default); const flags = await getFeatureFlagMap(prisma); if (flags.insights === false) { return { notFound: true, }; } return { props: {}, }; };