feat(react): typescriptify everything

This commit is contained in:
neoapps-dev 2026-05-23 18:31:49 +03:00
parent 043d8445f2
commit 736376dc04
33 changed files with 223 additions and 150 deletions

View file

@ -2,6 +2,8 @@ import { useEffect, useRef, memo } from 'react';
import * as THREE from 'three';
import { PCKAsset, PCKAssetType } from '../../types/pck';
type UVSet = Record<string, number[]>;
interface SkinPreview3DProps {
asset: PCKAsset;
previewUrl?: string;
@ -73,7 +75,7 @@ const SkinPreview3D = memo(function SkinPreview3D({ asset, previewUrl, className
};
const isFallbackUrl = !previewUrl;
const url = previewUrl || URL.createObjectURL(new Blob([asset.data as any], { type: 'image/png' }));
const url = previewUrl || URL.createObjectURL(new Blob([asset.data], { type: 'image/png' }));
const textureLoader = new THREE.TextureLoader();
let active = true;
textureLoader.load(url, (texture) => {
@ -96,10 +98,10 @@ const SkinPreview3D = memo(function SkinPreview3D({ asset, previewUrl, className
return new THREE.MeshLambertMaterial({ map: matTex, transparent: true, alphaTest: 0.5, side: THREE.FrontSide });
};
const createPart = (w: number, h: number, d: number, uv: any, overlayUv?: any, isMirror = false) => {
const createPart = (w: number, h: number, d: number, uv: UVSet, overlayUv?: UVSet, isMirror = false) => {
const group = new THREE.Group();
const geo = new THREE.BoxGeometry(w, h, d);
const getMats = (uvSet: any) => {
const getMats = (uvSet: UVSet) => {
return [
createFaceMaterial(uvSet.right[0], uvSet.right[1], uvSet.right[2], uvSet.right[3], isMirror), // +x
createFaceMaterial(uvSet.left[0], uvSet.left[1], uvSet.left[2], uvSet.left[3], isMirror), // -x

View file

@ -4,6 +4,8 @@ import * as THREE from 'three';
import { useLocalStorage } from '../../hooks/useLocalStorage';
import { useConfig } from '../../context/LauncherContext';
type UVSet = Record<string, number[]>;
interface SkinViewerProps {
username: string;
setUsername: (name: string) => void;
@ -60,10 +62,10 @@ const SkinViewer = memo(function SkinViewer({ username, setUsername, playPressSo
return new THREE.MeshLambertMaterial({ map: matTex, transparent: true, alphaTest: 0.5, side: THREE.FrontSide });
};
const createPart = (w: number, h: number, d: number, uv: any, overlayUv?: any, swapMats = false, isLegacyMirror = false) => {
const createPart = (w: number, h: number, d: number, uv: UVSet, overlayUv?: UVSet, swapMats = false, isLegacyMirror = false) => {
const group = new THREE.Group();
const geo = new THREE.BoxGeometry(w, h, d);
const getMats = (uvSet: any) => {
const getMats = (uvSet: UVSet) => {
const flipX = isLegacyMirror;
return [
createFaceMaterial(swapMats ? uvSet.right[0] : uvSet.left[0], uvSet.left[1], uvSet.left[2], uvSet.left[3], flipX), // +x (L)

View file

@ -6,7 +6,7 @@ const appWindow = getCurrentWindow();
interface AppHeaderProps {
playPressSound: () => void;
uiFade: any;
uiFade: Record<string, unknown>;
}
export const AppHeader = memo(function AppHeader({ playPressSound, uiFade }: AppHeaderProps) {

View file

@ -1,10 +1,11 @@
import { motion } from "framer-motion";
import { memo } from "react";
import type { Edition } from "../../types/edition";
interface DownloadOverlayProps {
downloadProgress: number | null;
downloadingId: string | null;
editions: any[];
editions: Edition[];
}
export const DownloadOverlay = memo(function DownloadOverlay({ downloadProgress, downloadingId, editions }: DownloadOverlayProps) {

View file

@ -2,6 +2,7 @@ import { useState, useEffect } from "react";
import { motion } from "framer-motion";
import { TauriService } from "../../services/TauriService";
import { lceLiveService, GameInvite } from "../../services/LceLiveService";
import type { Edition } from "../../types/edition";
export default function ChooseInstanceModal({
isOpen,
@ -16,7 +17,7 @@ export default function ChooseInstanceModal({
onClose: () => void;
playPressSound: (s?: string) => void;
playBackSound: (s?: string) => void;
editions: any[];
editions: Edition[];
installs: string[];
invite: GameInvite | null;
}) {
@ -26,7 +27,7 @@ export default function ChooseInstanceModal({
const [isJoining, setIsJoining] = useState(false);
const [focusIndex, setFocusIndex] = useState(0);
const validInstances = editions.filter((e: any) =>
const validInstances = editions.filter((e: Edition) =>
installs.includes(e.instanceId)
);
@ -53,10 +54,11 @@ export default function ChooseInstanceModal({
setError("");
setStatus("Accepting invite...");
try {
const inviteData = await lceLiveService.acceptGameInvite(invite.inviteId);
const hostIp = inviteData.hostIp || (typeof invite.from !== 'string' && (invite as any).from?.hostIp);
const hostPort = inviteData.hostPort || invite.hostPort;
const sessionId = inviteData.signalingSessionId || invite.signalingSessionId || "";
const inviteData = await lceLiveService.acceptGameInvite(invite.inviteId) as Record<string, unknown>;
const fromIp = typeof invite.from !== 'string' ? (invite.from as unknown as Record<string, string>).hostIp : undefined;
const hostIp: string = (inviteData.hostIp as string) || fromIp || invite.hostIp;
const hostPort: number = (inviteData.hostPort as number) || invite.hostPort;
const sessionId = (inviteData.signalingSessionId as string) || invite.signalingSessionId || "";
if (sessionId) {
setStatus("Connecting via relay...");
@ -77,8 +79,8 @@ export default function ChooseInstanceModal({
]);
}
onClose();
} catch (e: any) {
setError(e.toString());
} catch (e: unknown) {
setError(e instanceof Error ? e.message : String(e));
setStatus("");
setIsJoining(false);
}
@ -101,7 +103,7 @@ export default function ChooseInstanceModal({
setFocusIndex((prev) => (prev - 1 + max) % max);
} else if (e.key === "Enter") {
if (focusIndex === 0 && validInstances.length > 0) {
const currentIdx = validInstances.findIndex((i: any) => i.instanceId === selectedInstance);
const currentIdx = validInstances.findIndex((i: Edition) => i.instanceId === selectedInstance);
const next = (currentIdx + 1) % validInstances.length;
setSelectedInstance(validInstances[next].instanceId);
playPressSound();
@ -147,7 +149,7 @@ export default function ChooseInstanceModal({
{validInstances.length > 0 ? (
<div className="w-full mb-4 flex flex-col gap-2 max-h-[300px] overflow-y-auto"
style={{ scrollbarWidth: "thin", scrollbarColor: "#373737 transparent" }}>
{validInstances.map((inst: any) => {
{validInstances.map((inst: Edition) => {
const isSelected = selectedInstance === inst.instanceId;
return (
<div

View file

@ -41,7 +41,15 @@ export default function CustomTUModal({
playBackSound,
editingEdition = null,
initialPath = "",
}: any) {
}: {
isOpen: boolean;
onClose: () => void;
onImport: (ed: { name: string; desc: string; url: string; path?: string }) => void;
playPressSound: (sound?: string) => void;
playBackSound: (sound?: string) => void;
editingEdition?: { name: string; desc: string; url: string; path?: string } | null;
initialPath?: string;
}) {
const [name, setName] = useState("");
const [desc, setDesc] = useState("");
const [url, setUrl] = useState("");

View file

@ -1,6 +1,7 @@
import { useState, useEffect } from "react";
import { motion } from "framer-motion";
import { TauriService } from "../../services/TauriService";
import type { Edition } from "../../types/edition";
export default function SetUidModal({
isOpen,
@ -10,7 +11,15 @@ export default function SetUidModal({
instances,
installedVersions,
targetInstanceId,
}: any) {
}: {
isOpen: boolean;
onClose: () => void;
playPressSound: (s?: string) => void;
playBackSound: (s?: string) => void;
instances: Edition[];
installedVersions: string[];
targetInstanceId: string;
}) {
const [mode, setMode] = useState<"manual" | "copy">("manual");
const [uid, setUid] = useState("0xFF02F0C87E8AC1F2");
const [selectedInstance, setSelectedInstance] = useState("");
@ -44,7 +53,7 @@ export default function SetUidModal({
}
}, [isOpen, targetInstanceId]);
const validInstances = instances.filter((i: any) => installedVersions.includes(i.instanceId) && i.instanceId !== targetInstanceId);
const validInstances = instances.filter((i: Edition) => installedVersions.includes(i.instanceId) && i.instanceId !== targetInstanceId);
const handleSave = async () => {
playPressSound("save_click.wav");
try {
@ -74,8 +83,8 @@ export default function SetUidModal({
await TauriService.writeBinaryFile(`${targetPath}/uid.dat`, encodedUid);
onClose();
} catch (e: any) {
setError(e.toString());
} catch (e: unknown) {
setError(e instanceof Error ? e.message : String(e));
}
};
@ -198,7 +207,7 @@ export default function SetUidModal({
<span className="truncate">
{selectedInstance
? (() => {
const i = validInstances.find((inst: any) => inst.instanceId === selectedInstance);
const i = validInstances.find((inst: Edition) => inst.instanceId === selectedInstance);
return i ? `${i.name} ${i.selectedBranch ? `(${i.selectedBranch})` : ""}` : "-- Select an Instance --";
})()
: "-- Select an Instance --"}
@ -208,7 +217,7 @@ export default function SetUidModal({
{isDropdownOpen && validInstances.length > 0 && (
<div className="absolute top-[60px] left-0 w-full max-h-40 overflow-y-auto bg-black/90 border-2 border-[#373737] z-50 flex flex-col custom-scrollbar shadow-xl" style={{ imageRendering: "pixelated" }}>
{validInstances.map((i: any) => (
{validInstances.map((i: Edition) => (
<div
key={i.instanceId}
onClick={() => {

View file

@ -6,7 +6,12 @@ export default function TeamModal({
onClose,
playPressSound,
playSfx,
}: any) {
}: {
isOpen: boolean;
onClose: () => void;
playPressSound: () => void;
playSfx: (sound: string) => void;
}) {
const [focusIndex, setFocusIndex] = useState(0);
const team = [

View file

@ -71,7 +71,7 @@ export const ArcEditorView: React.FC = () => {
}
setSelectedEntryIdx(null);
showNotification(`Loaded ${parsed.name}`);
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") {
console.error("Failed to parse ARC", err);
showNotification("Failed to parse ARC", "error");
@ -96,7 +96,7 @@ export const ArcEditorView: React.FC = () => {
setOpenedPath(targetPath);
showNotification("ARC Saved Successfully");
}
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Save failed", "error");
}
};
@ -109,7 +109,7 @@ export const ArcEditorView: React.FC = () => {
playPressSound();
await TauriService.writeBinaryFile(path, entry.data);
showNotification(`Extracted: ${entry.filename}`);
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Extraction failed", "error");
}
};
@ -212,7 +212,7 @@ export const ArcEditorView: React.FC = () => {
};
const treeData = useMemo(() => {
const root: any = { name: "<root>", children: {}, isFolder: true };
const root: Record<string, any> = { name: "<root>", children: {}, isFolder: true };
filteredEntries.forEach((entry) => {
const parts = entry.filename.split(/\//);
let current = root;
@ -237,7 +237,7 @@ export const ArcEditorView: React.FC = () => {
setExpandedNodes(newExpanded);
};
const renderTree = (node: any, path: string = "") => {
const renderTree = (node: Record<string, any>, path: string = "") => {
const nodePath = path ? `${path}/${node.name}` : node.name;
const isExpanded = expandedNodes.has(nodePath);
@ -285,7 +285,7 @@ export const ArcEditorView: React.FC = () => {
exit={{ height: 0, opacity: 0 }}
className="ml-4 border-l border-white/10 overflow-hidden"
>
{Object.values(node.children).map((child: any) => renderTree(child, nodePath))}
{Object.values(node.children as Record<string, any>).map((child: Record<string, any>) => renderTree(child, nodePath))}
</motion.div>
)}
</AnimatePresence>
@ -306,7 +306,7 @@ export const ArcEditorView: React.FC = () => {
await TauriService.writeBinaryFile(`${baseFolder}/${fileName}`, entry.data);
}
showNotification("All Entries Exported");
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Export failed", "error");
}
};

View file

@ -47,9 +47,9 @@ export default function ColEditorView() {
const parsedCol = ColService.readCOL(buffer);
setCol(parsedCol);
showNotification(`Loaded ${file.name}`);
} catch (err: any) {
} catch (err: unknown) {
console.error("Failed to parse COL", err);
showNotification(err.message || "Failed to parse COL", "error");
showNotification(err instanceof Error ? err.message : "Failed to parse COL", "error");
}
e.target.value = "";
};
@ -67,9 +67,9 @@ export default function ColEditorView() {
a.click();
URL.revokeObjectURL(url);
showNotification("COL Saved Successfully");
} catch (err: any) {
} catch (err: unknown) {
console.error("Failed to save COL", err);
showNotification(err.message || "Failed to save COL", "error");
showNotification(err instanceof Error ? err.message : "Failed to save COL", "error");
}
};

View file

@ -28,9 +28,9 @@ export default function GrfEditorView() {
setGrf(parsedGrf);
setFilename(file.name);
showNotification(`Loaded ${file.name}`);
} catch (err: any) {
} catch (err: unknown) {
console.error("Failed to parse GRF", err);
showNotification(err.message || "Failed to parse GRF", "error");
showNotification(err instanceof Error ? err.message : "Failed to parse GRF", "error");
}
e.target.value = "";
};
@ -94,7 +94,7 @@ export default function GrfEditorView() {
playPressSound();
try {
const buffer = GrfService.serializeGRF(grf);
const blob = new Blob([buffer as any]);
const blob = new Blob([buffer]);
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
@ -102,9 +102,9 @@ export default function GrfEditorView() {
a.click();
URL.revokeObjectURL(url);
showNotification("GRF Saved Successfully");
} catch (err: any) {
} catch (err: unknown) {
console.error("Failed to save GRF", err);
showNotification(err.message || "Failed to save GRF", "error");
showNotification(err instanceof Error ? err.message : "Failed to save GRF", "error");
}
};

View file

@ -6,6 +6,7 @@ import {
useAudio,
useGame,
} from "../../context/LauncherContext";
import type { Edition } from "../../types/edition";
const HomeView = memo(function HomeView() {
const { setActiveView, setShowCredits, focusSection, onNavigateToSkin } =
@ -24,7 +25,7 @@ const HomeView = memo(function HomeView() {
} = useGame();
const isFocusedSection = focusSection === "menu";
const selectedEdition = editions.find((e: any) => e.id === profile);
const selectedEdition = editions.find((e: Edition) => e.id === profile);
const selectedVersionName = selectedEdition?.name || "Game";
const isInstalled = installs.includes(profile);
const isDownloading = downloadingId === profile;
@ -128,7 +129,7 @@ const HomeView = memo(function HomeView() {
transition={{ duration: useConfig().animationsEnabled ? 0.3 : 0 }}
className="relative w-full max-w-[540px] flex flex-col space-y-3 outline-none"
>
{buttons.map((btn: any, i: number) => (
{buttons.map((btn: { label: string; action: () => void; isDanger?: boolean; disabled: boolean; id?: string }, i: number) => (
<div key={i} className="relative w-full group">
<button
onMouseEnter={() =>

View file

@ -11,6 +11,7 @@ import {
LceLiveAccount,
FriendRequest,
GameInvite,
DeviceLinkStartResponse,
} from "../../services/LceLiveService";
import { TauriService } from "../../services/TauriService";
import ChooseInstanceModal from "../modals/ChooseInstanceModal";
@ -31,7 +32,7 @@ const LceLiveView = memo(function LceLiveView() {
const [incomingReqs, setIncomingReqs] = useState<FriendRequest[]>([]);
const [outgoingReqs, setOutgoingReqs] = useState<FriendRequest[]>([]);
const [invites, setInvites] = useState<GameInvite[]>([]);
const [linkData, setLinkData] = useState<any>(null);
const [linkData, setLinkData] = useState<DeviceLinkStartResponse | null>(null);
const [linkError, setLinkError] = useState<string | null>(null);
const [isHosting, setIsHosting] = useState(false);
const [hostStatus, setHostStatus] = useState("");
@ -59,7 +60,7 @@ const LceLiveView = memo(function LceLiveView() {
setIncomingReqs(reqs.incoming);
setOutgoingReqs(reqs.outgoing);
setInvites(invs.filter((i: GameInvite) => i.status === "pending"));
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
}
};
@ -86,15 +87,15 @@ const LceLiveView = memo(function LceLiveView() {
useEffect(() => {
if (currentTab !== "device_link") return;
let mounted = true;
let pollInterval: any = null;
let pollInterval: ReturnType<typeof setInterval> | null = null;
const startLink = async () => {
try {
if (!linkData) {
const data = await lceLiveService.startDeviceLink();
if (mounted) setLinkData(data);
}
} catch (e: any) {
if (mounted) setLinkError(e.message);
} catch (e: unknown) {
if (mounted) setLinkError(e instanceof Error ? e.message : String(e));
}
};
@ -109,9 +110,9 @@ const LceLiveView = memo(function LceLiveView() {
if (res.isLinked && mounted) {
setIsSignedIn(true);
setLinkData(null);
clearInterval(pollInterval);
if (pollInterval !== null) clearInterval(pollInterval);
}
} catch (e: any) {
} catch (e: unknown) {
console.warn("Poll failed", e);
}
},
@ -121,7 +122,7 @@ const LceLiveView = memo(function LceLiveView() {
return () => {
mounted = false;
if (pollInterval) clearInterval(pollInterval);
if (pollInterval !== null) clearInterval(pollInterval);
};
}, [currentTab, linkData]);
@ -151,8 +152,8 @@ const LceLiveView = memo(function LceLiveView() {
try {
await action();
fetchSocialData();
} catch (e: any) {
setErrorModal(e.message || "An error occurred");
} catch (e: unknown) {
setErrorModal(e instanceof Error ? e.message : "An error occurred");
}
};
@ -174,8 +175,8 @@ const LceLiveView = memo(function LceLiveView() {
setIsHosting(true);
setHostStatus(`Hosting at ${endpoint.ip}:25565`);
setInvitedFriends(new Set());
} catch (e: any) {
const msg = typeof e === "string" ? e : e?.message || "Unknown error";
} catch (e: unknown) {
const msg = e instanceof Error ? e.message : typeof e === "string" ? e : "Unknown error";
setErrorModal("STUN discovery failed: " + msg);
setHostStatus("");
} finally {
@ -207,7 +208,7 @@ const LceLiveView = memo(function LceLiveView() {
try {
await TauriService.stopAllProxies();
await lceLiveService.deactivateGameInvites();
} catch (e: any) {
} catch (e: unknown) {
console.warn("Stop hosting failed", e);
}
setIsHosting(false);
@ -237,16 +238,17 @@ const LceLiveView = memo(function LceLiveView() {
25565,
)
.then(() => setHostStatus("Relay active"))
.catch((relayErr: any) => {
.catch((relayErr: unknown) => {
const relayMsg =
typeof relayErr === "string"
? relayErr
: relayErr?.message || "Unknown error";
relayErr instanceof Error ? relayErr.message
: typeof relayErr === "string"
? relayErr
: "Unknown error";
console.warn("Relay failed:", relayMsg);
setHostStatus("Relay disconnected");
});
} catch (e: any) {
const msg = typeof e === "string" ? e : e?.message || "Unknown error";
} catch (e: unknown) {
const msg = e instanceof Error ? e.message : typeof e === "string" ? e : "Unknown error";
setErrorModal("Failed to send invite: " + msg);
}
};
@ -377,7 +379,7 @@ const LceLiveView = memo(function LceLiveView() {
showHostMethodPicker,
]);
const tabs = ["friends", "requests", "invites"];
const tabs: ("friends" | "requests" | "invites")[] = ["friends", "requests", "invites"];
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (errorModal) {
@ -433,14 +435,14 @@ const LceLiveView = memo(function LceLiveView() {
const curIdx = tabs.indexOf(currentTab);
if (e.key === "q" || e.key === "Q" || e.key === "ArrowLeft") {
const next = curIdx > 0 ? tabs[curIdx - 1] : tabs[tabs.length - 1];
setCurrentTab(next as any);
setCurrentTab(next);
setFocusIndex(0);
playPressSound();
return;
}
if (e.key === "e" || e.key === "E" || e.key === "ArrowRight") {
const next = curIdx < tabs.length - 1 ? tabs[curIdx + 1] : tabs[0];
setCurrentTab(next as any);
setCurrentTab(next);
setFocusIndex(0);
playPressSound();
return;
@ -774,7 +776,7 @@ const LceLiveView = memo(function LceLiveView() {
imageRendering: "pixelated",
}}
onClick={() => {
setCurrentTab(t as any);
setCurrentTab(t);
setFocusIndex(0);
playPressSound();
}}

View file

@ -50,7 +50,7 @@ export default function LocEditorView() {
if (!loc) return;
playPressSound();
const buffer = ArcService.serializeLOC(loc);
const blob = new Blob([buffer as any]);
const blob = new Blob([buffer]);
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;

View file

@ -32,9 +32,9 @@ export default function OptionsEditorView() {
const parsed = OptionsService.readOptions(buffer);
setOpt(parsed);
showNotification(`Loaded options.dat`);
} catch (err: any) {
} catch (err: unknown) {
console.error("Failed to parse Options", err);
showNotification(err.message || "Failed to parse Options", "error");
showNotification(err instanceof Error ? err.message : "Failed to parse Options", "error");
}
e.target.value = "";
};
@ -52,12 +52,12 @@ export default function OptionsEditorView() {
a.click();
URL.revokeObjectURL(url);
showNotification("Options Saved");
} catch (err: any) {
} catch (err: unknown) {
showNotification("Failed to save", "error");
}
};
const updateSetting = (field: keyof OptionsFile, value: any) => {
const updateSetting = (field: keyof OptionsFile, value: string | number | boolean | number[]) => {
if (!opt) return;
setOpt({ ...opt, [field]: value });
};

View file

@ -68,7 +68,7 @@ export default function PckEditorView() {
});
});
const convert = (nodes: Record<string, TempNode>): any[] => {
const convert = (nodes: Record<string, TempNode>): TreeNode[] => {
return Object.values(nodes)
.sort((a, b) => {
if (a.isFolder && !b.isFolder) return -1;
@ -107,7 +107,7 @@ export default function PckEditorView() {
return;
}
const blob = new Blob([selectedAsset.data as any], { type: "image/png" });
const blob = new Blob([selectedAsset.data], { type: "image/png" });
const url = URL.createObjectURL(blob);
setAssetPreview({ id: selectedAsset.id, url });
@ -128,17 +128,19 @@ export default function PckEditorView() {
setExpandedFolders(next);
};
const renderTree = (nodes: any[], depth = 0) => {
type TreeNode = { name: string; path: string; isFolder: boolean; children: TreeNode[]; asset?: PCKAsset };
const renderTree = (nodes: TreeNode[], depth = 0) => {
return nodes.map((node) => {
const isExpanded = expandedFolders.has(node.path) || !!searchTerm;
const isSelected = selectedAssetId === node.asset?.id;
const isSelected = node.asset ? selectedAssetId === node.asset.id : false;
return (
<div key={node.path} className="flex flex-col">
<div
onClick={() => {
if (node.isFolder) {
toggleFolder(node.path);
} else {
} else if (node.asset) {
playPressSound();
setSelectedAssetId(node.asset.id);
}
@ -175,7 +177,7 @@ export default function PckEditorView() {
<span className="truncate mc-text-shadow text-base">
{node.name}
</span>
{!node.isFolder && (
{!node.isFolder && node.asset && (
<span className="ml-auto text-[10px] opacity-40 uppercase">
{(node.asset.size / 1024).toFixed(1)} KB
</span>
@ -202,7 +204,7 @@ export default function PckEditorView() {
setOpenedPath(path);
setSelectedAssetId(parsed.files[0]?.id || null);
setExpandedFolders(new Set());
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") {
console.error("Failed to parse PCK", err);
showNotification("Failed to parse PCK", "error");
@ -246,7 +248,7 @@ export default function PckEditorView() {
playPressSound();
await TauriService.writeBinaryFile(path, asset.data);
showNotification(`Exported: ${fileName}`);
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Export failed", "error");
}
};
@ -413,7 +415,7 @@ export default function PckEditorView() {
);
}
showNotification("All Assets Exported");
} catch (err: any) {
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Export failed", "error");
}
};
@ -438,8 +440,8 @@ export default function PckEditorView() {
setOpenedPath(targetPath);
showNotification("PCK Saved Successfully");
}
} catch (err: any) {
if (err !== "CANCELED") showNotification("Save failed", "error");
} catch (err: unknown) {
if (err !== "CANCELED") showNotification("Export failed", "error");
}
};

View file

@ -6,6 +6,7 @@ import {
useGame,
useConfig,
} from "../../context/LauncherContext";
import type { Edition } from "../../types/edition";
import {
ScreenshotService,
ScreenshotInfo,
@ -147,7 +148,7 @@ const ScreenshotsView = memo(function ScreenshotsView() {
}, [gridFocusIndex, selectedScreenshot]);
const getEditionLogo = (instanceId: string) => {
const edition = editions.find((e: any) => e.id === instanceId);
const edition = editions.find((e: Edition) => e.id === instanceId);
return edition?.logo || edition?.titleImage;
};

View file

@ -227,7 +227,7 @@ const SettingsView = memo(function SettingsView() {
label: string;
type: "slider";
value: number;
onChange: (val: any) => void;
onChange: (val: number) => void;
}
| {
id: string;
@ -474,7 +474,8 @@ const SettingsView = memo(function SettingsView() {
const item = settingsItems[focusIndex];
if (item.type === "slider") {
const delta = e.key === "ArrowRight" ? 5 : -5;
item.onChange((v: number) => Math.max(0, Math.min(100, v + delta)));
const newVal = Math.max(0, Math.min(100, item.value + delta));
item.onChange(newVal);
}
} else if (e.key === "Enter" && focusIndex !== null) {
const item = settingsItems[focusIndex];
@ -583,8 +584,8 @@ const SettingsView = memo(function SettingsView() {
);
}
const isRed = (item as any).color === "red";
const isSmall = (item as any).small;
const isRed = ("color" in item && (item as { color: string }).color === "red");
const isSmall = "small" in item && (item as { small: boolean }).small;
return (
<button
@ -651,8 +652,8 @@ const SettingsView = memo(function SettingsView() {
);
}
const isRed = (item as any).color === "red";
const isSmall = (item as any).small;
const isRed = item.type === "button" && item.color === "red";
const isSmall = item.type === "button" && !!item.small;
const isToggle = isToggleOption(item.label);
const toggleState = isToggle ? getToggleState(item.label) : false;

View file

@ -165,9 +165,9 @@ const SkinsView = memo(function SkinsView() {
const skinBase64 = `data:image/png;base64,${base64Raw}`;
processSkinImage(skinBase64, exactName.substring(0, 16));
}
} catch (e: any) {
} catch (e: unknown) {
setImportError(
typeof e === "string" ? e : e.message || "Failed to fetch",
e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to fetch",
);
} finally {
setIsImporting(false);

View file

@ -40,7 +40,7 @@ export default function SwfView() {
if (imageUrls[img.id]) return imageUrls[img.id];
let url = "";
if (img.type === "jpeg") {
const blob = new Blob([img.data as any], { type: "image/jpeg" });
const blob = new Blob([img.data], { type: "image/jpeg" });
url = URL.createObjectURL(blob);
} else if (img.type === "lossless") {
const rgba = await SwfService.decodeLosslessToRGBA(img);
@ -80,7 +80,7 @@ export default function SwfView() {
setSelectedImageId(extracted[0].id);
}
showNotification(`Loaded ${file.name}`);
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
showNotification("Failed to process SWF", "error");
setImages([]);
@ -99,7 +99,7 @@ export default function SwfView() {
let blob: Blob;
let ext = "png";
if (img.type === "jpeg") {
blob = new Blob([img.data as any], { type: "image/jpeg" });
blob = new Blob([img.data], { type: "image/jpeg" });
ext = "jpg";
} else if (img.type === "lossless") {
const rgba = await SwfService.decodeLosslessToRGBA(img);
@ -114,11 +114,11 @@ export default function SwfView() {
const res = await fetch(dataUrl);
blob = await res.blob();
} else {
blob = new Blob([rgba as any], { type: "application/octet-stream" });
blob = new Blob([rgba], { type: "application/octet-stream" });
ext = "bin";
}
} else {
blob = new Blob([img.data as any], { type: "application/octet-stream" });
blob = new Blob([img.data], { type: "application/octet-stream" });
ext = "bin";
}
@ -162,7 +162,7 @@ export default function SwfView() {
if (!swfData) return;
playPressSound();
const result = SwfService.serialize(swfData.version, swfData.compressed, swfData.frameHeader, swfData.tags);
const blob = new Blob([result as any], { type: "application/x-shockwave-flash" });
const blob = new Blob([result], { type: "application/x-shockwave-flash" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;

View file

@ -10,6 +10,7 @@ import {
useGame,
} from "../../context/LauncherContext";
import { ScreenshotImage } from "../common/ScreenshotImage";
import type { Edition } from "../../types/edition";
interface DeleteConfirmButtonProps {
label: string;
onClick: () => void;
@ -73,14 +74,14 @@ const VersionsView = memo(function VersionsView() {
const [isImportModalOpen, setIsImportModalOpen] = useState(false);
const [isSetUidModalOpen, setIsSetUidModalOpen] = useState(false);
const [setUidTargetId, setSetUidTargetId] = useState("");
const [editingEdition, setEditingEdition] = useState<any>(null);
const [editingEdition, setEditingEdition] = useState<Edition | null>(null);
const [initialPath, setInitialPath] = useState<string>("");
const [hoveredBtn, setHoveredBtn] = useState<{
row: number;
btn: string;
} | null>(null);
const [openMenuId, setOpenMenuId] = useState<string | null>(null);
const [deleteConfirmEdition, setDeleteConfirmEdition] = useState<any>(null);
const [deleteConfirmEdition, setDeleteConfirmEdition] = useState<Edition | null>(null);
const containerRef = useRef<HTMLDivElement>(null);
const listRef = useRef<HTMLDivElement>(null);
const ITEM_COUNT = editions.length + 3;
@ -185,7 +186,7 @@ const VersionsView = memo(function VersionsView() {
}
}, [focusIndex]);
const handleEditionClick = (edition: any, index: number) => {
const handleEditionClick = (edition: Edition, index: number) => {
const isInstalled = installedVersions.includes(edition.instanceId);
if (isInstalled) {
playPressSound();
@ -233,7 +234,7 @@ const VersionsView = memo(function VersionsView() {
className="w-full max-h-[45vh] overflow-y-auto py-2 custom-scrollbar"
>
<div className="flex flex-col gap-1">
{editions.map((edition: any, i: number) => {
{editions.map((edition: Edition, i: number) => {
const isInstalled = installedVersions.includes(
edition.instanceId,
);
@ -514,7 +515,7 @@ const VersionsView = memo(function VersionsView() {
addToSteam(
edition.instanceId,
edition.name,
edition.titleImage,
edition.titleImage ?? "",
panoramaUrl,
);
setOpenMenuId(null);
@ -702,7 +703,7 @@ const VersionsView = memo(function VersionsView() {
setEditingEdition(null);
setInitialPath("");
}}
onImport={(ed: any) => {
onImport={(ed: { name: string; desc: string; url: string; path?: string }) => {
if (editingEdition) {
onUpdateEdition(editingEdition.id, ed);
} else {

View file

@ -20,6 +20,7 @@ import {
import {
TauriService,
InstalledWorkshopPackage,
type CustomEdition,
} from "../../services/TauriService";
const REGISTRY_URL =
"https://raw.githubusercontent.com/LCE-Hub/LCE-Workshop/refs/heads/main/registry.json";
@ -224,7 +225,7 @@ const WorkshopView = memo(function WorkshopView() {
(pkgId: string) => {
if (activeTab === "Versions") {
const isAdded = config.customEditions?.some(
(e: any) =>
(e: CustomEdition) =>
e.id === pkgId ||
e.url === versionPackages.find((p) => p.id === pkgId)?.url,
);
@ -252,7 +253,7 @@ const WorkshopView = memo(function WorkshopView() {
if (activeTab === "Versions") {
return (
config.customEditions?.some(
(e: any) =>
(e: CustomEdition) =>
e.id === pkgId ||
e.url === versionPackages.find((p) => p.id === pkgId)?.url,
) ?? false
@ -1471,10 +1472,10 @@ function InstallModal({
pkg.version,
);
setStatus("success");
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setStatus("error");
setErrorMsg(typeof e === "string" ? e : e.message);
setErrorMsg(e instanceof Error ? e.message : typeof e === "string" ? e : "Unknown error");
}
};
@ -1646,10 +1647,10 @@ function UninstallModal({
await TauriService.workshopUninstall(instanceId, pkg.id);
}
setStatus("success");
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setStatus("error");
setErrorMsg(typeof e === "string" ? e : e.message);
setErrorMsg(e instanceof Error ? e.message : typeof e === "string" ? e : "Unknown error");
}
};

View file

@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { useLocalStorage } from "./useLocalStorage";
import { TauriService } from "../services/TauriService";
import { TauriService, type CustomEdition } from "../services/TauriService";
export function useAppConfig() {
const [username, setUsername] = useLocalStorage("lce-username", "Steve");
const [theme, setTheme] = useLocalStorage("lce-theme", "Modern");
@ -17,7 +17,7 @@ export function useAppConfig() {
const [isLoaded, setIsLoaded] = useState(false);
const [linuxRunner, setLinuxRunner] = useState<string | undefined>();
const [perfBoost, setPerfBoost] = useState(false);
const [customEditions, setCustomEditions] = useState<any[]>([]);
const [customEditions, setCustomEditions] = useState<CustomEdition[]>([]);
const [mangohudEnabled, setMangohudEnabled] = useState(false);
useEffect(() => {
TauriService.loadConfig().then((config) => {

View file

@ -1,5 +1,6 @@
import { useEffect } from "react";
import RpcService from "../services/RpcService";
import type { Edition } from "../types/edition";
interface DiscordRPCProps {
rpcEnabled: boolean;
showIntro: boolean;
@ -10,7 +11,7 @@ interface DiscordRPCProps {
isWindowVisible: boolean;
downloadProgress: number | null;
downloadingId: string | null;
editions: any[];
editions: Edition[];
}
export function useDiscordRPC({

View file

@ -1,6 +1,7 @@
import { useState, useEffect, useCallback, useMemo, useRef } from "react";
import { TauriService } from "../services/TauriService";
import { TauriService, type CustomEdition } from "../services/TauriService";
import { getCurrentWindow } from "@tauri-apps/api/window";
import type { Edition } from "../types/edition";
async function imageUrlToBase64(url: string): Promise<string> {
const response = await fetch(url);
@ -74,8 +75,8 @@ const PARTNERSHIP_SERVERS = [
interface GameManagerProps {
profile: string;
setProfile: (id: string) => void;
customEditions: any[];
setCustomEditions: (editions: any[]) => void;
customEditions: CustomEdition[];
setCustomEditions: (editions: CustomEdition[]) => void;
}
function compareVersions(v1: string, v2: string) {
@ -146,7 +147,7 @@ export function useGameManager({
if (response.ok) {
const data = await response.json();
const asset = data.assets.find(
(a: any) => a.name === "neoLegacyWindows64.zip",
(a: { name: string }) => a.name === "neoLegacyWindows64.zip",
);
if (asset) {
setDynamicUrls((prev) => ({
@ -176,7 +177,7 @@ export function useGameManager({
if (response.ok) {
const data = await response.json();
let tags: string[] = data
.map((r: any) => r.tag_name)
.map((r: { tag_name: string }) => r.tag_name)
.filter((t: string) => !t.toLowerCase().includes("server"));
const vTags = tags
@ -231,7 +232,7 @@ export function useGameManager({
[branches, profile, setProfile],
);
const editions = useMemo(() => {
const editions = useMemo((): Edition[] => {
return [
...BASE_EDITIONS.map((e) => {
const availableBranches = branches[e.id] || ["Stable"];
@ -343,10 +344,10 @@ export function useGameManager({
try {
await TauriService.downloadRunner(name, url);
setRunnerDownloadProgress(null);
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setError(
typeof e === "string" ? e : e.message || "Failed to download runner",
e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to download runner",
);
} finally {
setIsRunnerDownloading(false);
@ -370,10 +371,10 @@ export function useGameManager({
setProfile(id);
setDownloadProgress(null);
setDownloadingId(null);
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setError(
typeof e === "string" ? e : e.message || "Failed to install version",
e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to install version",
);
setDownloadProgress(null);
setDownloadingId(null);
@ -410,10 +411,10 @@ export function useGameManager({
try {
getCurrentWindow().minimize();
await TauriService.launchGame(profile, PARTNERSHIP_SERVERS);
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setError(
typeof e === "string" ? e : e.message || "Failed to launch game",
e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to launch game",
);
} finally {
setIsGameRunning(false);
@ -485,10 +486,10 @@ export function useGameManager({
setSteamSuccessMessage(
`Added ${name} to Steam! (Restart Steam to see it)`,
);
} catch (e: any) {
} catch (e: unknown) {
console.error(e);
setError(
typeof e === "string" ? e : e.message || "Failed to add to Steam",
e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to add to Steam",
);
}
},

View file

@ -53,7 +53,7 @@ export const useGamepad = ({ playSfx, isWindowVisible }: UseGamepadProps) => {
const btnVal = (i: number): number => {
const btn = gp.buttons[i];
if (!btn) return 0;
return typeof btn === "object" ? btn.value : (btn as any) ?? 0;
return typeof btn === "object" ? btn.value : 0;
};
const justPressed = (i: number) => btnVal(i) > 0.5 && !lastButtons.current[i];
if (justPressed(1)) dispatchKey('Enter');

View file

@ -1,12 +1,12 @@
import { useState, useEffect, useRef } from "react";
import { lceLiveService } from "../services/LceLiveService";
import { lceLiveService, type FriendRequest, type GameInvite } from "../services/LceLiveService";
export function useLceLiveNotifications() {
const [friendRequestMessage, setFriendRequestMessage] = useState<string | null>(null);
const [gameInviteMessage, setGameInviteMessage] = useState<string | null>(null);
const seenRequests = useRef<Set<string>>(new Set());
const seenInvites = useRef<Set<string>>(new Set());
useEffect(() => {
let pollInterval: any;
let pollInterval: ReturnType<typeof setInterval>;
const init = async () => {
if (lceLiveService.signedIn) {
try {
@ -20,8 +20,8 @@ export function useLceLiveNotifications() {
lceLiveService.getPendingRequests(),
lceLiveService.getGameInvites()
]);
reqs.incoming.forEach((r: any) => seenRequests.current.add(r.accountId));
invs.filter((i: any) => i.status === "pending").forEach((i: any) => seenInvites.current.add(i.inviteId));
reqs.incoming.forEach((r: FriendRequest) => seenRequests.current.add(r.accountId));
invs.filter((i: GameInvite) => i.status === "pending").forEach((i: GameInvite) => seenInvites.current.add(i.inviteId));
} catch (e) { }
}
@ -33,14 +33,14 @@ export function useLceLiveNotifications() {
lceLiveService.getGameInvites()
]);
reqs.incoming.forEach((r: any) => {
reqs.incoming.forEach((r: FriendRequest) => {
if (!seenRequests.current.has(r.accountId)) {
seenRequests.current.add(r.accountId);
setFriendRequestMessage(`New request from ${r.displayName}`);
}
});
invs.filter((i: any) => i.status === "pending").forEach((i: any) => {
invs.filter((i: GameInvite) => i.status === "pending").forEach((i: GameInvite) => {
if (!seenInvites.current.has(i.inviteId)) {
seenInvites.current.add(i.inviteId);
const fromName = typeof i.from === 'string' ? "Unknown" : i.from.displayName;

View file

@ -2,7 +2,7 @@ import { useState, useEffect } from "react";
import { useLocalStorage } from "./useLocalStorage";
import { PckService } from "../services/PckService";
import { TauriService } from "../services/TauriService";
import { PCKAssetType, PCKProperty } from "../types/pck";
import { PCKAsset, PCKAssetType, PCKProperty } from "../types/pck";
interface Edition {
id: string;
supportsSlimSkins?: boolean;
@ -99,7 +99,7 @@ export function useSkinSync({ username, profile, editions }: UseSkinSyncProps) {
const seededId = getSeededId(username);
const packId = seededId.slice(-4);
const files: any[] = [
const files: PCKAsset[] = [
{
id: "0",
path: "0",

View file

@ -31,6 +31,7 @@ import {
} from "../context/LauncherContext";
import { TauriService } from "../services/TauriService";
import { useLceLiveNotifications } from "../hooks/useLceLiveNotifications";
import type { Edition } from "../types/edition";
import pkg from "../../package.json";
export default function App() {
const {
@ -67,7 +68,7 @@ export default function App() {
}, [config.isDayTime]);
const selectedEdition = game.editions.find(
(e: any) => e.instanceId === config.profile,
(e: Edition) => e.instanceId === config.profile,
);
const selectedVersionName = selectedEdition?.name || "";
const hasAnyInstall = game.installs.length > 0;
@ -132,7 +133,7 @@ export default function App() {
{...backgroundFade}
>
<PanoramaBackground
profile={selectedEdition?.panorama}
profile={selectedEdition?.panorama ?? "vanilla_tu19"}
isDay={displayIsDay}
/>
</motion.div>

View file

@ -298,7 +298,7 @@ export class GrfService {
fw.setInt32(poff, compressedSize, false); poff += 4;
}
finalBuffer.set(bodyData as any, poff);
finalBuffer.set(bodyData, poff);
return finalBuffer.buffer;
}

View file

@ -122,13 +122,13 @@ export class LceLiveService {
}
}
private async request(
private async request<T = any>(
method: string,
path: string,
body?: any,
body?: unknown,
authed: boolean = true,
retryCount: number = 0,
): Promise<any> {
): Promise<T> {
if (authed && this._session?.refreshToken && retryCount === 0) {
try {
await this.refreshSession(); //neo: i do this on every request only because it doesnt always return 401
@ -198,7 +198,7 @@ export class LceLiveService {
}
async startDeviceLink(): Promise<DeviceLinkStartResponse> {
return this.request(
return this.request<DeviceLinkStartResponse>(
"POST",
"/api/auth/device/start",
{
@ -210,7 +210,7 @@ export class LceLiveService {
}
async pollDeviceLink(deviceCode: string): Promise<DeviceLinkPollResponse> {
const data = await this.request(
const data = await this.request<DeviceLinkPollResponse>(
"GET",
`/api/auth/device/poll/${deviceCode}`,
null,
@ -219,8 +219,8 @@ export class LceLiveService {
if (data.isLinked && data.accessToken) {
this._session = {
accessToken: data.accessToken,
refreshToken: data.refreshToken,
account: data.account,
refreshToken: data.refreshToken ?? "",
account: data.account ?? { accountId: "", username: "", displayName: "" },
};
this.saveSession();
}
@ -297,12 +297,12 @@ export class LceLiveService {
async getPendingRequests(): Promise<PendingRequests> {
const data = await this.request("GET", "/api/social/requests");
return {
incoming: (data.incoming || []).map((r: any) => ({
incoming: (data.incoming || []).map((r: Record<string, string>) => ({
accountId: r.requesterUserId || r.accountId || r.userId,
username: r.requesterUsername || r.username,
displayName: r.requesterDisplayName || r.displayName,
})),
outgoing: (data.outgoing || []).map((r: any) => ({
outgoing: (data.outgoing || []).map((r: Record<string, string>) => ({
accountId: r.targetUserId || r.accountId || r.userId,
username: r.targetUsername || r.username,
displayName: r.targetDisplayName || r.displayName,
@ -321,7 +321,7 @@ export class LceLiveService {
async getGameInvites(): Promise<GameInvite[]> {
const data = await this.request("GET", "/api/sessions/invites");
const incoming = data.incoming || [];
return incoming.map((inv: any) => ({
return incoming.map((inv: Record<string, unknown>) => ({
inviteId: inv.inviteId,
from: {
accountId: inv.senderAccountId,
@ -352,7 +352,7 @@ export class LceLiveService {
});
}
async acceptGameInvite(inviteId: string): Promise<any> {
async acceptGameInvite(inviteId: string): Promise<Record<string, unknown>> {
return this.request("POST", `/api/sessions/invites/${inviteId}/accept`, {});
}

View file

@ -46,7 +46,7 @@ export interface AppConfig {
export interface ThemePalette {
id: string;
name: string;
colors: any;
colors: Record<string, string>;
}
export interface Runner {

32
src/types/edition.ts Normal file
View file

@ -0,0 +1,32 @@
export interface Edition {
id: string;
name: string;
desc: string;
url: string;
titleImage?: string;
supportsSlimSkins?: boolean;
logo?: string;
panorama?: string;
branches?: string[];
selectedBranch?: string;
instanceId: string;
comingSoon?: boolean;
category?: string[];
}
export interface CustomEditionInput {
name: string;
desc: string;
url: string;
path?: string;
category?: string[];
logo?: string;
id?: string;
}
export interface EditionUpdate {
name: string;
desc: string;
url: string;
path?: string;
}