2022-12-17 08:54:27 +00:00
|
|
|
import React, { Suspense } from "react";
|
2022-02-16 20:30:12 +00:00
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import { HashRouter } from "react-router-dom";
|
2022-12-13 22:50:13 +00:00
|
|
|
import { ErrorBoundary } from "@/components/layout/ErrorBoundary";
|
2023-01-07 20:36:18 +00:00
|
|
|
import { conf } from "@/setup/config";
|
|
|
|
|
|
|
|
import App from "@/setup/App";
|
|
|
|
import "@/setup/i18n";
|
|
|
|
import "@/setup/index.css";
|
2023-01-11 20:16:48 +00:00
|
|
|
import "@/backend";
|
2022-12-29 17:25:57 +00:00
|
|
|
|
|
|
|
// initialize
|
|
|
|
const key =
|
|
|
|
(window as any)?.__CONFIG__?.VITE_KEY ?? import.meta.env.VITE_KEY ?? null;
|
|
|
|
if (key) {
|
|
|
|
(window as any).initMW(conf().BASE_PROXY_URL, key);
|
|
|
|
}
|
2021-07-13 22:31:37 +00:00
|
|
|
|
2023-01-13 23:30:50 +00:00
|
|
|
// TODO video todos:
|
|
|
|
// - captions
|
|
|
|
// - mobile UI
|
2023-01-16 20:26:01 +00:00
|
|
|
// - season/episode select
|
|
|
|
// - chrome cast support
|
|
|
|
// - source selection
|
2023-01-13 23:30:50 +00:00
|
|
|
// - safari fullscreen will make video overlap player controls
|
|
|
|
// - safari progress bar is fucked (video doesnt change time but video.currentTime does change)
|
|
|
|
|
|
|
|
// TODO optional todos:
|
|
|
|
// - shortcuts when player is active
|
|
|
|
// - improve seekables (if possible)
|
|
|
|
|
|
|
|
// TODO stuff to test:
|
|
|
|
// - browser: firefox, chrome, edge, safari desktop
|
|
|
|
// - phones: android firefox, android chrome, iphone safari
|
|
|
|
// - devices: ipadOS
|
2023-01-16 20:25:16 +00:00
|
|
|
// - HLS
|
|
|
|
// - HLS error handling
|
|
|
|
// - video player error handling
|
|
|
|
|
|
|
|
// TODO backend system:
|
|
|
|
// - caption support
|
|
|
|
// - move over old providers to new system
|
|
|
|
// - implement jons providers/embedscrapers
|
|
|
|
// - AFTER all that: rank providers/embedscrapers
|
2023-01-13 23:30:50 +00:00
|
|
|
|
2023-01-15 15:01:07 +00:00
|
|
|
// TODO general todos:
|
|
|
|
// - localize everything
|
2023-01-15 15:51:55 +00:00
|
|
|
// - add titles to pages
|
2023-01-16 20:25:16 +00:00
|
|
|
// - find place for bookmark button
|
2023-01-16 20:19:49 +00:00
|
|
|
// - find place for progress bar for "continue watching" section
|
2023-01-15 15:01:07 +00:00
|
|
|
|
2021-07-13 22:31:37 +00:00
|
|
|
ReactDOM.render(
|
2022-02-16 20:30:12 +00:00
|
|
|
<React.StrictMode>
|
|
|
|
<ErrorBoundary>
|
|
|
|
<HashRouter>
|
2022-12-17 08:54:27 +00:00
|
|
|
<Suspense fallback="">
|
|
|
|
<App />
|
|
|
|
</Suspense>
|
2022-02-16 20:30:12 +00:00
|
|
|
</HashRouter>
|
|
|
|
</ErrorBoundary>
|
|
|
|
</React.StrictMode>,
|
|
|
|
document.getElementById("root")
|
2021-07-13 22:31:37 +00:00
|
|
|
);
|