mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 05:27:17 +08:00
* update: hide quota notices * update: remove quota notices from the app * update: remove plan visit from quota bar and indicator * update: prevent notices from registering * Update modules/settings/module.php --------- Co-authored-by: Raz Ohad <ohad@elementor.com>
91 lines
2.4 KiB
JavaScript
91 lines
2.4 KiB
JavaScript
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,
|
|
} 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 />}
|
|
|
|
<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;
|
|
`;
|