debian-image-builder-frontend/src/AppCockpit.tsx
Gianluca Zuccarelli 50d88e5949 AppCockpit: add dark mode helper
Import the cockpit-dark-theme helper from the cockpit project. This detects
when dark mode is enabled and automatically applies the correct styles.
2025-06-18 06:37:51 +00:00

59 lines
1.6 KiB
TypeScript

import '@patternfly/react-core/dist/styles/base.css';
import '@patternfly/patternfly/patternfly-addons.css';
import React from 'react';
import 'cockpit-dark-theme';
import { Page, PageSection } from '@patternfly/react-core';
import NotificationsPortal from '@redhat-cloud-services/frontend-components-notifications/NotificationPortal';
import { createRoot } from 'react-dom/client';
import { Provider } from 'react-redux';
import { HashRouter } from 'react-router-dom';
import './AppCockpit.scss';
import { NotReady, RequireAdmin } from './Components/Cockpit';
import { Router } from './Router';
import { onPremStore as store } from './store';
import { useGetComposerSocketStatus } from './Utilities/useComposerStatus';
import { useIsCockpitAdmin } from './Utilities/useIsCockpitAdmin';
const Application = () => {
const { enabled, started } = useGetComposerSocketStatus();
const isAdmin = useIsCockpitAdmin();
if (!started || !enabled) {
return <NotReady enabled={enabled} />;
}
if (!isAdmin) {
return <RequireAdmin />;
}
return (
<React.Fragment>
<NotificationsPortal />
<HashRouter>
<Router />
</HashRouter>
</React.Fragment>
);
};
const ImageBuilder = () => (
<Provider store={store}>
<Page className="no-masthead-sidebar" isContentFilled>
<PageSection>
<Application />
</PageSection>
</Page>
</Provider>
);
const main = async () => {
const root = document.getElementById('main');
if (root) {
const reactRoot = createRoot(root);
reactRoot.render(<ImageBuilder />);
}
};
main();