80 lines
2.8 KiB
JavaScript
Executable File
80 lines
2.8 KiB
JavaScript
Executable File
import 'core-js/stable';
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
import 'formdata-polyfill';
|
|
import { AppProvider, ErrorPage } from '@edx/frontend-platform/react';
|
|
import {
|
|
subscribe, initialize, APP_INIT_ERROR, APP_READY, mergeConfig,
|
|
} from '@edx/frontend-platform';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Route, Routes, Outlet } from 'react-router-dom';
|
|
|
|
import Header from '@edx/frontend-component-header';
|
|
import FooterSlot from '@openedx/frontend-slot-footer';
|
|
|
|
import configureStore from './data/configureStore';
|
|
import AccountSettingsPage, { NotFoundPage } from './account-settings';
|
|
import IdVerificationPageSlot from './plugin-slots/IdVerificationPageSlot';
|
|
import messages from './i18n';
|
|
|
|
import './index.scss';
|
|
import Head from './head/Head';
|
|
import NotificationCourses from './notification-preferences/NotificationCourses';
|
|
import NotificationPreferences from './notification-preferences/NotificationPreferences';
|
|
|
|
subscribe(APP_READY, () => {
|
|
ReactDOM.render(
|
|
<AppProvider store={configureStore()}>
|
|
<Head />
|
|
<Routes>
|
|
<Route element={(
|
|
<div className="d-flex flex-column" style={{ minHeight: '100vh' }}>
|
|
<Header />
|
|
<main className="flex-grow-1" id="main">
|
|
<Outlet />
|
|
</main>
|
|
<FooterSlot />
|
|
</div>
|
|
)}
|
|
>
|
|
<Route path="/notifications/:courseId" element={<NotificationPreferences />} />
|
|
<Route path="/notifications" element={<NotificationCourses />} />
|
|
<Route
|
|
path="/id-verification/*"
|
|
element={<IdVerificationPageSlot />}
|
|
/>
|
|
<Route path="/" element={<AccountSettingsPage />} />
|
|
<Route path="/notfound" element={<NotFoundPage />} />
|
|
<Route path="*" element={<NotFoundPage />} />
|
|
</Route>
|
|
</Routes>
|
|
</AppProvider>,
|
|
document.getElementById('root'),
|
|
);
|
|
});
|
|
|
|
subscribe(APP_INIT_ERROR, (error) => {
|
|
ReactDOM.render(<ErrorPage message={error.message} />, document.getElementById('root'));
|
|
});
|
|
|
|
initialize({
|
|
messages,
|
|
requireAuthenticatedUser: true,
|
|
hydrateAuthenticatedUser: true,
|
|
handlers: {
|
|
config: () => {
|
|
mergeConfig({
|
|
SUPPORT_URL: process.env.SUPPORT_URL,
|
|
SHOW_EMAIL_CHANNEL: process.env.SHOW_EMAIL_CHANNEL || 'false',
|
|
ENABLE_COPPA_COMPLIANCE: (process.env.ENABLE_COPPA_COMPLIANCE || false),
|
|
ENABLE_ACCOUNT_DELETION: (process.env.ENABLE_ACCOUNT_DELETION !== 'false'),
|
|
ENABLE_DOB_UPDATE: (process.env.ENABLE_DOB_UPDATE || false),
|
|
MARKETING_EMAILS_OPT_IN: (process.env.MARKETING_EMAILS_OPT_IN || false),
|
|
PASSWORD_RESET_SUPPORT_LINK: process.env.PASSWORD_RESET_SUPPORT_LINK,
|
|
LEARNER_FEEDBACK_URL: process.env.LEARNER_FEEDBACK_URL,
|
|
}, 'App loadConfig override handler');
|
|
},
|
|
},
|
|
});
|