File: /var/www/wp-content/plugins/pojo-accessibility/modules/settings/assets/js/app.js
import '../css/style.css';
import Box from '@elementor/ui/Box';
import DirectionProvider from '@elementor/ui/DirectionProvider';
import Grid from '@elementor/ui/Grid';
import { styled, ThemeProvider } from '@elementor/ui/styles';
import {
ConnectModal,
MenuItems,
Notifications,
PostConnectModal,
UrlMismatchModal,
OnboardingModal,
} from '@ea11y/components';
import {
useNotificationSettings,
useSavedSettings,
useSettings,
} from '@ea11y/hooks';
import { Sidebar, TopBar } from '@ea11y/layouts';
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
import { useEffect } from '@wordpress/element';
import { usePluginSettingsContext } from './contexts/plugin-settings';
import PageContent from './page-content';
const App = () => {
const { hasFinishedResolution, loading } = useSavedSettings();
const { isConnected, isRTL, closePostConnectModal, isUrlMismatch } =
usePluginSettingsContext();
const { notificationMessage, notificationType } = useNotificationSettings();
const { selectedMenu } = useSettings();
useEffect(() => {
if (window.ea11ySettingsData?.planData?.user?.id) {
mixpanelService.init().then(() => {
mixpanelService.sendEvent(mixpanelEvents.pageView, {
page: 'Button',
});
});
}
}, [window.ea11ySettingsData?.planData?.user?.id]);
const selectedParent = MenuItems[selectedMenu?.parent];
const selectedChild = selectedMenu?.child
? selectedParent?.children[selectedMenu?.child]
: null;
return (
<DirectionProvider rtl={isRTL}>
<ThemeProvider colorScheme="light">
{isConnected !== undefined && !isUrlMismatch && !isConnected && (
<ConnectModal />
)}
{isConnected && !closePostConnectModal && <PostConnectModal />}
{isUrlMismatch && !isConnected && <UrlMismatchModal />}
<OnboardingModal />
<TopBar />
<StyledGrid>
<Sidebar />
<StyledContainer>
<PageContent
// Looks the best if we have both checks
isLoading={!hasFinishedResolution || loading}
page={selectedChild ? selectedChild?.page : selectedParent?.page}
/>
</StyledContainer>
</StyledGrid>
<Notifications message={notificationMessage} type={notificationType} />
</ThemeProvider>
</DirectionProvider>
);
};
export default App;
const StyledContainer = styled(Box)`
width: 100%;
display: flex;
flex-direction: column;
justify-content: start;
`;
const StyledGrid = styled(Grid)`
height: calc(100% - 54.5px);
display: flex;
flex-direction: row;
`;