mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
* feat(feeds): add pretext-backed item sizing across board, catalog, and thread replies * feat: finalize pretext feed sizing rollout * fix(catalog): raise multiboard viewport buffer * fix(board): preserve pretext query overrides
59 lines
2.1 KiB
TypeScript
59 lines
2.1 KiB
TypeScript
import './polyfills.js';
|
|
import './lib/react-scan';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './app';
|
|
import { HashRouter as Router } from 'react-router-dom';
|
|
import './lib/init-translations';
|
|
import './index.css';
|
|
import './themes.css';
|
|
import AppUpdateRegistration from './components/app-update-registration';
|
|
import { App as CapacitorApp } from '@capacitor/app';
|
|
import { Analytics } from '@vercel/analytics/react';
|
|
|
|
// Only enable analytics on 5chan.app (Vercel deployment)
|
|
// Exclude Electron (file:// or localhost), Capacitor/APK (capacitor:// or localhost), and IPFS (ipfs:// or different domain)
|
|
const isVercelDeployment =
|
|
typeof window !== 'undefined' && (window.location.hostname === '5chan.app' || window.location.hostname === 'www.5chan.app') && !window.isElectron;
|
|
const e2eStartHash = import.meta.env.VITE_E2E_START_HASH?.trim();
|
|
const requestedE2EHarness = import.meta.env.DEV && typeof window !== 'undefined' ? new URLSearchParams(window.location.search).get('e2e') : null;
|
|
|
|
if (typeof window !== 'undefined' && e2eStartHash && window.location.hash.length === 0) {
|
|
window.location.hash = e2eStartHash.startsWith('#') ? e2eStartHash : `#${e2eStartHash}`;
|
|
}
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
|
|
const renderRoot = async () => {
|
|
let e2eHarness: React.ComponentType | null = null;
|
|
if (requestedE2EHarness === 'thread-auto-update') {
|
|
e2eHarness = (await import('./e2e/thread-auto-update-harness')).default;
|
|
} else if (requestedE2EHarness === 'pretext-benchmark') {
|
|
e2eHarness = (await import('./e2e/pretext-benchmark-harness')).default;
|
|
}
|
|
|
|
root.render(
|
|
<React.StrictMode>
|
|
{e2eHarness ? (
|
|
React.createElement(e2eHarness)
|
|
) : (
|
|
<Router>
|
|
<AppUpdateRegistration />
|
|
<App />
|
|
{isVercelDeployment && <Analytics />}
|
|
</Router>
|
|
)}
|
|
</React.StrictMode>,
|
|
);
|
|
};
|
|
|
|
void renderRoot();
|
|
|
|
// add back button in android app
|
|
CapacitorApp.addListener('backButton', ({ canGoBack }) => {
|
|
if (canGoBack) {
|
|
window.history.back();
|
|
} else {
|
|
CapacitorApp.exitApp();
|
|
}
|
|
});
|