mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import { HashRouter, Routes, Route } from 'react-router-dom';
|
|
import './index.css';
|
|
import SettingsPage from './pages/SettingsPage.js';
|
|
import browser from 'webextension-polyfill';
|
|
import font from '../resources/fonts/IconFamily.woff'
|
|
|
|
import * as Sentry from "@sentry/react";
|
|
import ThemeCreator from './pages/ThemeCreator';
|
|
|
|
browser.storage.local.get().then(({ telemetry, DarkMode }) => {
|
|
if (DarkMode) document.body.classList.add('dark');
|
|
|
|
if (telemetry === true)
|
|
Sentry.init({
|
|
dsn: "https://4bc7197431b170218e15daba4095d08b@o4506347383291904.ingest.sentry.io/4506347394105344",
|
|
integrations: [
|
|
Sentry.browserTracingIntegration()
|
|
],
|
|
// Performance Monitoring
|
|
tracesSampleRate: 1.0, // Capture 100% of the transactions
|
|
});
|
|
})
|
|
|
|
const style = document.createElement("style");
|
|
style.setAttribute("type", "text/css");
|
|
style.innerHTML = `
|
|
@font-face {
|
|
font-family: 'IconFamily';
|
|
src: url('${browser.runtime.getURL(font)}') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}`;
|
|
document.head.appendChild(style);
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('ExtensionPopup')!);
|
|
|
|
root.render(
|
|
<React.StrictMode>
|
|
<HashRouter>
|
|
<Routes>
|
|
<Route path="/settings" element={<SettingsPage standalone={true} />} />
|
|
<Route path="/settings/embedded" element={<SettingsPage standalone={false} />} />
|
|
<Route path="/themeCreator" element={<ThemeCreator />} />
|
|
</Routes>
|
|
</HashRouter>
|
|
</React.StrictMode>,
|
|
); |