journal.pl/src/index.tsx
2024-02-14 13:43:46 +03:00

42 lines
995 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import ReactDom from 'react-dom';
import App from './app';
import { keycloak } from './__data__/const';
export default () => <App/>;
const start = async () => {
// onLoad: 'check-sso',
// silentCheckSsoRedirectUri: `${location.origin}/silent-check-sso.html`
try {
const authenticated = await keycloak.init({ onLoad: 'login-required' });
console.log(`User is ${authenticated ? 'authenticated' : 'not authenticated'}`);
} catch (error) {
console.error('Failed to initialize adapter:', error);
}
}
start();
export const mount = (Сomponent) => {
ReactDom.render(
<Сomponent/>,
document.getElementById('app')
);
if(module.hot) {
module.hot.accept('./app', ()=> {
ReactDom.render(
<App/>,
document.getElementById('app')
);
})
}
};
export const unmount = () => {
ReactDom.unmountComponentAtNode(document.getElementById('app'));
};