/* eslint-disable jsx-a11y/no-static-element-interactions */ /* eslint-disable jsx-a11y/click-events-have-key-events */ /* eslint-disable jsx-a11y/anchor-is-valid */ import './AppLayout.styles.scss'; import * as Sentry from '@sentry/react'; import { Flex } from 'antd'; import manageCreditCardApi from 'api/billing/manage'; import getUserLatestVersion from 'api/user/getLatestVersion'; import getUserVersion from 'api/user/getVersion'; import cx from 'classnames'; import ChatSupportGateway from 'components/ChatSupportGateway/ChatSupportGateway'; import OverlayScrollbar from 'components/OverlayScrollbar/OverlayScrollbar'; import { SOMETHING_WENT_WRONG } from 'constants/api'; import { FeatureKeys } from 'constants/features'; import ROUTES from 'constants/routes'; import SideNav from 'container/SideNav'; import TopNav from 'container/TopNav'; import dayjs from 'dayjs'; import { useIsDarkMode } from 'hooks/useDarkMode'; import { useNotifications } from 'hooks/useNotifications'; import history from 'lib/history'; import { isNull } from 'lodash-es'; import ErrorBoundaryFallback from 'pages/ErrorBoundaryFallback/ErrorBoundaryFallback'; import { useAppContext } from 'providers/App/App'; import { ReactNode, useEffect, useMemo, useRef, useState } from 'react'; import { Helmet } from 'react-helmet-async'; import { useTranslation } from 'react-i18next'; import { useMutation, useQueries } from 'react-query'; import { useDispatch } from 'react-redux'; import { useLocation } from 'react-router-dom'; import { Dispatch } from 'redux'; import AppActions from 'types/actions'; import { UPDATE_CURRENT_ERROR, UPDATE_CURRENT_VERSION, UPDATE_LATEST_VERSION, UPDATE_LATEST_VERSION_ERROR, } from 'types/actions/app'; import { ErrorResponse, SuccessResponse } from 'types/api'; import { CheckoutSuccessPayloadProps } from 'types/api/billing/checkout'; import { LicenseEvent } from 'types/api/licensesV3/getActive'; import { isCloudUser } from 'utils/app'; import { getFormattedDate, getFormattedDateWithMinutes, getRemainingDays, } from 'utils/timeUtils'; import { ChildrenContainer, Layout, LayoutContent } from './styles'; import { getRouteKey } from './utils'; // eslint-disable-next-line sonarjs/cognitive-complexity function AppLayout(props: AppLayoutProps): JSX.Element { const { isLoggedIn, user, licenses, isFetchingLicenses, activeLicenseV3, isFetchingActiveLicenseV3, featureFlags, isFetchingFeatureFlags, featureFlagsFetchError, } = useAppContext(); const { notifications } = useNotifications(); const [ showPaymentFailedWarning, setShowPaymentFailedWarning, ] = useState(false); const handleBillingOnSuccess = ( data: ErrorResponse | SuccessResponse, ): void => { if (data?.payload?.redirectURL) { const newTab = document.createElement('a'); newTab.href = data.payload.redirectURL; newTab.target = '_blank'; newTab.rel = 'noopener noreferrer'; newTab.click(); } }; const handleBillingOnError = (): void => { notifications.error({ message: SOMETHING_WENT_WRONG, }); }; const { mutate: manageCreditCard, isLoading: isLoadingManageBilling, } = useMutation(manageCreditCardApi, { onSuccess: (data) => { handleBillingOnSuccess(data); }, onError: handleBillingOnError, }); const isDarkMode = useIsDarkMode(); const { pathname } = useLocation(); const { t } = useTranslation(['titles']); const [getUserVersionResponse, getUserLatestVersionResponse] = useQueries([ { queryFn: getUserVersion, queryKey: ['getUserVersion', user?.accessJwt], enabled: isLoggedIn, }, { queryFn: getUserLatestVersion, queryKey: ['getUserLatestVersion', user?.accessJwt], enabled: isLoggedIn, }, ]); useEffect(() => { if (getUserLatestVersionResponse.status === 'idle' && isLoggedIn) { getUserLatestVersionResponse.refetch(); } if (getUserVersionResponse.status === 'idle' && isLoggedIn) { getUserVersionResponse.refetch(); } }, [getUserLatestVersionResponse, getUserVersionResponse, isLoggedIn]); const { children } = props; const dispatch = useDispatch>(); const latestCurrentCounter = useRef(0); const latestVersionCounter = useRef(0); useEffect(() => { if ( getUserLatestVersionResponse.isFetched && getUserLatestVersionResponse.isError && latestCurrentCounter.current === 0 ) { latestCurrentCounter.current = 1; dispatch({ type: UPDATE_LATEST_VERSION_ERROR, payload: { isError: true, }, }); notifications.error({ message: t('oops_something_went_wrong_version'), }); } if ( getUserVersionResponse.isFetched && getUserVersionResponse.isError && latestVersionCounter.current === 0 ) { latestVersionCounter.current = 1; dispatch({ type: UPDATE_CURRENT_ERROR, payload: { isError: true, }, }); notifications.error({ message: t('oops_something_went_wrong_version'), }); } if ( getUserVersionResponse.isFetched && getUserLatestVersionResponse.isSuccess && getUserVersionResponse.data && getUserVersionResponse.data.payload ) { dispatch({ type: UPDATE_CURRENT_VERSION, payload: { currentVersion: getUserVersionResponse.data.payload.version, ee: getUserVersionResponse.data.payload.ee, setupCompleted: getUserVersionResponse.data.payload.setupCompleted, }, }); } if ( getUserLatestVersionResponse.isFetched && getUserLatestVersionResponse.isSuccess && getUserLatestVersionResponse.data && getUserLatestVersionResponse.data.payload ) { dispatch({ type: UPDATE_LATEST_VERSION, payload: { latestVersion: getUserLatestVersionResponse.data.payload.tag_name, }, }); } }, [ dispatch, isLoggedIn, pathname, t, getUserLatestVersionResponse.isLoading, getUserLatestVersionResponse.isError, getUserLatestVersionResponse.data, getUserVersionResponse.isLoading, getUserVersionResponse.isError, getUserVersionResponse.data, getUserLatestVersionResponse.isFetched, getUserVersionResponse.isFetched, getUserLatestVersionResponse.isSuccess, notifications, ]); const isToDisplayLayout = isLoggedIn; const routeKey = useMemo(() => getRouteKey(pathname), [pathname]); const pageTitle = t(routeKey); const renderFullScreen = pathname === ROUTES.GET_STARTED || pathname === ROUTES.ONBOARDING || pathname === ROUTES.GET_STARTED_APPLICATION_MONITORING || pathname === ROUTES.GET_STARTED_INFRASTRUCTURE_MONITORING || pathname === ROUTES.GET_STARTED_LOGS_MANAGEMENT || pathname === ROUTES.GET_STARTED_AWS_MONITORING || pathname === ROUTES.GET_STARTED_AZURE_MONITORING; const [showTrialExpiryBanner, setShowTrialExpiryBanner] = useState(false); useEffect(() => { if ( !isFetchingLicenses && licenses && licenses.onTrial && !licenses.trialConvertedToSubscription && !licenses.workSpaceBlock && getRemainingDays(licenses.trialEnd) < 7 ) { setShowTrialExpiryBanner(true); } }, [isFetchingLicenses, licenses]); useEffect(() => { if ( !isFetchingActiveLicenseV3 && !isNull(activeLicenseV3) && activeLicenseV3?.event_queue?.event === LicenseEvent.FAILED_PAYMENT ) { setShowPaymentFailedWarning(true); } }, [activeLicenseV3, isFetchingActiveLicenseV3]); useEffect(() => { // after logging out hide the trial expiry banner if (!isLoggedIn) { setShowTrialExpiryBanner(false); setShowPaymentFailedWarning(false); } }, [isLoggedIn]); const handleUpgrade = (): void => { if (user.role === 'ADMIN') { history.push(ROUTES.BILLING); } }; const handleFailedPayment = (): void => { manageCreditCard({ licenseKey: activeLicenseV3?.key || '', successURL: window.location.origin, cancelURL: window.location.origin, }); }; const isLogsView = (): boolean => routeKey === 'LOGS' || routeKey === 'LOGS_EXPLORER' || routeKey === 'LOGS_PIPELINES' || routeKey === 'LOGS_SAVE_VIEWS'; const isTracesView = (): boolean => routeKey === 'TRACES_EXPLORER' || routeKey === 'TRACES_SAVE_VIEWS'; const isMessagingQueues = (): boolean => routeKey === 'MESSAGING_QUEUES' || routeKey === 'MESSAGING_QUEUES_DETAIL' || routeKey === 'MESSAGING_QUEUES_CELERY_TASK' || routeKey === 'MESSAGING_QUEUES_OVERVIEW'; const isDashboardListView = (): boolean => routeKey === 'ALL_DASHBOARD'; const isAlertHistory = (): boolean => routeKey === 'ALERT_HISTORY'; const isAlertOverview = (): boolean => routeKey === 'ALERT_OVERVIEW'; const isInfraMonitoring = (): boolean => routeKey === 'INFRASTRUCTURE_MONITORING_HOSTS' || routeKey === 'INFRASTRUCTURE_MONITORING_KUBERNETES'; const isPathMatch = (regex: RegExp): boolean => regex.test(pathname); const isDashboardView = (): boolean => isPathMatch(/^\/dashboard\/[a-zA-Z0-9_-]+$/); const isDashboardWidgetView = (): boolean => isPathMatch(/^\/dashboard\/[a-zA-Z0-9_-]+\/new$/); const isTraceDetailsView = (): boolean => isPathMatch(/^\/trace\/[a-zA-Z0-9]+(\?.*)?$/); useEffect(() => { if (isDarkMode) { document.body.classList.remove('lightMode'); document.body.classList.add('darkMode'); } else { document.body.classList.add('lightMode'); document.body.classList.remove('darkMode'); } }, [isDarkMode]); const showAddCreditCardModal = useMemo(() => { if ( !isFetchingFeatureFlags && (featureFlags || featureFlagsFetchError) && licenses ) { let isChatSupportEnabled = false; let isPremiumSupportEnabled = false; const isCloudUserVal = isCloudUser(); if (featureFlags && featureFlags.length > 0) { isChatSupportEnabled = featureFlags.find((flag) => flag.name === FeatureKeys.CHAT_SUPPORT) ?.active || false; isPremiumSupportEnabled = featureFlags.find((flag) => flag.name === FeatureKeys.PREMIUM_SUPPORT) ?.active || false; } return ( isLoggedIn && !isPremiumSupportEnabled && isChatSupportEnabled && !licenses.trialConvertedToSubscription && isCloudUserVal ); } return false; }, [ featureFlags, featureFlagsFetchError, isFetchingFeatureFlags, isLoggedIn, licenses, ]); return ( {pageTitle} {showTrialExpiryBanner && !showPaymentFailedWarning && (
You are in free trial period. Your free trial will end on{' '} {getFormattedDate(licenses?.trialEnd || Date.now())}. {user.role === 'ADMIN' ? ( {' '} Please{' '} upgrade to continue using SigNoz features. ) : ( 'Please contact your administrator for upgrading to a paid plan.' )}
)} {!showTrialExpiryBanner && showPaymentFailedWarning && (
Your bill payment has failed. Your workspace will get suspended on{' '} {getFormattedDateWithMinutes( dayjs(activeLicenseV3?.event_queue?.scheduled_at).unix() || Date.now(), )} . {user.role === 'ADMIN' ? ( {' '} Please{' '} { if (!isLoadingManageBilling) { handleFailedPayment(); } }} > pay the bill to continue using SigNoz features. ) : ( ' Please contact your administrator to pay the bill.' )}
)} {isToDisplayLayout && !renderFullScreen && }
}> {isToDisplayLayout && !renderFullScreen && } {children}
{showAddCreditCardModal && }
); } interface AppLayoutProps { children: ReactNode; } export default AppLayout;