mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 09:13:57 +00:00
Merge branch 'feat/adding-level-generic-interface' of https://github.com/hydralauncher/hydra into feat/search-autosuggest
This commit is contained in:
@@ -31,6 +31,8 @@ import {
|
||||
getAchievementSoundUrl,
|
||||
getAchievementSoundVolume,
|
||||
} from "./helpers";
|
||||
import { levelDBService } from "./services/leveldb.service";
|
||||
import type { UserPreferences } from "@types";
|
||||
import "./app.scss";
|
||||
|
||||
export interface AppProps {
|
||||
@@ -77,11 +79,12 @@ export function App() {
|
||||
const { showSuccessToast } = useToast();
|
||||
|
||||
useEffect(() => {
|
||||
Promise.all([window.electron.getUserPreferences(), updateLibrary()]).then(
|
||||
([preferences]) => {
|
||||
dispatch(setUserPreferences(preferences));
|
||||
}
|
||||
);
|
||||
Promise.all([
|
||||
levelDBService.get("userPreferences", null, "json"),
|
||||
updateLibrary(),
|
||||
]).then(([preferences]) => {
|
||||
dispatch(setUserPreferences(preferences as UserPreferences | null));
|
||||
});
|
||||
}, [navigate, location.pathname, dispatch, updateLibrary]);
|
||||
|
||||
useEffect(() => {
|
||||
@@ -204,7 +207,11 @@ export function App() {
|
||||
}, [dispatch, draggingDisabled]);
|
||||
|
||||
const loadAndApplyTheme = useCallback(async () => {
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
isActive?: boolean;
|
||||
code?: string;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((theme) => theme.isActive);
|
||||
if (activeTheme?.code) {
|
||||
injectCustomCss(activeTheme.code);
|
||||
} else {
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import React from "react";
|
||||
|
||||
interface HighlightTextProps {
|
||||
text: string;
|
||||
query: string;
|
||||
readonly text: string;
|
||||
readonly query: string;
|
||||
}
|
||||
|
||||
export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
export function HighlightText({ text, query }: Readonly<HighlightTextProps>) {
|
||||
if (!query.trim()) {
|
||||
return <>{text}</>;
|
||||
}
|
||||
@@ -20,7 +20,7 @@ export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
}
|
||||
|
||||
const textWords = text.split(/\b/);
|
||||
const matches: Array<{ start: number; end: number; text: string }> = [];
|
||||
const matches: { start: number; end: number; text: string }[] = [];
|
||||
|
||||
let currentIndex = 0;
|
||||
textWords.forEach((word) => {
|
||||
@@ -45,7 +45,7 @@ export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
|
||||
matches.sort((a, b) => a.start - b.start);
|
||||
|
||||
const mergedMatches: Array<{ start: number; end: number }> = [];
|
||||
const mergedMatches: { start: number; end: number }[] = [];
|
||||
|
||||
if (matches.length === 0) {
|
||||
return <>{text}</>;
|
||||
@@ -63,7 +63,7 @@ export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
}
|
||||
mergedMatches.push(current);
|
||||
|
||||
const parts: Array<{ text: string; highlight: boolean }> = [];
|
||||
const parts: { text: string; highlight: boolean; key: string }[] = [];
|
||||
let lastIndex = 0;
|
||||
|
||||
mergedMatches.forEach((match) => {
|
||||
@@ -71,12 +71,14 @@ export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
parts.push({
|
||||
text: text.slice(lastIndex, match.start),
|
||||
highlight: false,
|
||||
key: `${lastIndex}-${match.start}`,
|
||||
});
|
||||
}
|
||||
|
||||
parts.push({
|
||||
text: text.slice(match.start, match.end),
|
||||
highlight: true,
|
||||
key: `${match.start}-${match.end}`,
|
||||
});
|
||||
|
||||
lastIndex = match.end;
|
||||
@@ -86,18 +88,19 @@ export function HighlightText({ text, query }: HighlightTextProps) {
|
||||
parts.push({
|
||||
text: text.slice(lastIndex),
|
||||
highlight: false,
|
||||
key: `${lastIndex}-${text.length}`,
|
||||
});
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
{parts.map((part, index) =>
|
||||
{parts.map((part) =>
|
||||
part.highlight ? (
|
||||
<mark key={index} className="search-dropdown__highlight">
|
||||
<mark key={part.key} className="search-dropdown__highlight">
|
||||
{part.text}
|
||||
</mark>
|
||||
) : (
|
||||
<React.Fragment key={index}>{part.text}</React.Fragment>
|
||||
<React.Fragment key={part.key}>{part.text}</React.Fragment>
|
||||
)
|
||||
)}
|
||||
</>
|
||||
|
||||
@@ -44,7 +44,8 @@
|
||||
transition: color ease 0.2s;
|
||||
|
||||
&:hover {
|
||||
color: #dadbe1;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -76,6 +77,12 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: transparent;
|
||||
|
||||
&:hover {
|
||||
color: #ff3333;
|
||||
background-color: rgba(255, 85, 85, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
&__item {
|
||||
@@ -134,8 +141,8 @@
|
||||
}
|
||||
|
||||
&__highlight {
|
||||
background-color: rgba(255, 193, 7, 0.3);
|
||||
color: #ffc107;
|
||||
background-color: rgba(255, 193, 7, 0.4);
|
||||
color: #ffa000;
|
||||
font-weight: 600;
|
||||
padding: 0 2px;
|
||||
border-radius: 2px;
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import { createContext, useCallback, useEffect, useRef, useState } from "react";
|
||||
|
||||
import { setHeaderTitle } from "@renderer/features";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import { orderBy } from "lodash-es";
|
||||
import { getSteamLanguage } from "@renderer/helpers";
|
||||
import {
|
||||
useAppDispatch,
|
||||
@@ -10,6 +12,7 @@ import {
|
||||
} from "@renderer/hooks";
|
||||
|
||||
import type {
|
||||
DownloadSource,
|
||||
GameRepack,
|
||||
GameShop,
|
||||
GameStats,
|
||||
@@ -297,7 +300,10 @@ export function GameDetailsContextProvider({
|
||||
|
||||
const fetchDownloadSources = async () => {
|
||||
try {
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
const sourcesRaw = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sources = orderBy(sourcesRaw, "createdAt", "desc");
|
||||
|
||||
const params = {
|
||||
take: 100,
|
||||
|
||||
@@ -2,6 +2,7 @@ import { createContext, useCallback, useEffect, useState } from "react";
|
||||
|
||||
import { setUserPreferences } from "@renderer/features";
|
||||
import { useAppDispatch } from "@renderer/hooks";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import type { UserBlocks, UserPreferences } from "@types";
|
||||
import { useSearchParams } from "react-router-dom";
|
||||
|
||||
@@ -134,9 +135,11 @@ export function SettingsContextProvider({
|
||||
|
||||
const updateUserPreferences = async (values: Partial<UserPreferences>) => {
|
||||
await window.electron.updateUserPreferences(values);
|
||||
window.electron.getUserPreferences().then((userPreferences) => {
|
||||
dispatch(setUserPreferences(userPreferences));
|
||||
});
|
||||
levelDBService
|
||||
.get("userPreferences", null, "json")
|
||||
.then((userPreferences) => {
|
||||
dispatch(setUserPreferences(userPreferences as UserPreferences | null));
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
19
src/renderer/src/declaration.d.ts
vendored
19
src/renderer/src/declaration.d.ts
vendored
@@ -438,6 +438,25 @@ declare global {
|
||||
onNewDownloadOptions: (
|
||||
cb: (gamesWithNewOptions: { gameId: string; count: number }[]) => void
|
||||
) => () => Electron.IpcRenderer;
|
||||
|
||||
/* LevelDB Generic CRUD */
|
||||
leveldb: {
|
||||
get: (
|
||||
key: string,
|
||||
sublevelName?: string | null,
|
||||
valueEncoding?: "json" | "utf8"
|
||||
) => Promise<unknown>;
|
||||
put: (
|
||||
key: string,
|
||||
value: unknown,
|
||||
sublevelName?: string | null,
|
||||
valueEncoding?: "json" | "utf8"
|
||||
) => Promise<void>;
|
||||
del: (key: string, sublevelName?: string | null) => Promise<void>;
|
||||
clear: (sublevelName: string) => Promise<void>;
|
||||
values: (sublevelName: string) => Promise<unknown[]>;
|
||||
iterator: (sublevelName: string) => Promise<[string, unknown][]>;
|
||||
};
|
||||
}
|
||||
|
||||
interface Window {
|
||||
|
||||
@@ -3,6 +3,7 @@ import type { GameShop } from "@types";
|
||||
import Color from "color";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import { THEME_WEB_STORE_URL } from "./constants";
|
||||
import { levelDBService } from "./services/leveldb.service";
|
||||
|
||||
export const formatDownloadProgress = (
|
||||
progress?: number,
|
||||
@@ -127,7 +128,12 @@ export const getAchievementSoundUrl = async (): Promise<string> => {
|
||||
.default;
|
||||
|
||||
try {
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
id: string;
|
||||
isActive?: boolean;
|
||||
hasCustomSound?: boolean;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((theme) => theme.isActive);
|
||||
|
||||
if (activeTheme?.hasCustomSound) {
|
||||
const soundDataUrl = await window.electron.getThemeSoundDataUrl(
|
||||
@@ -146,10 +152,18 @@ export const getAchievementSoundUrl = async (): Promise<string> => {
|
||||
|
||||
export const getAchievementSoundVolume = async (): Promise<number> => {
|
||||
try {
|
||||
const prefs = await window.electron.getUserPreferences();
|
||||
const prefs = (await levelDBService.get(
|
||||
"userPreferences",
|
||||
null,
|
||||
"json"
|
||||
)) as { achievementSoundVolume?: number } | null;
|
||||
return prefs?.achievementSoundVolume ?? 0.15;
|
||||
} catch (error) {
|
||||
console.error("Failed to get sound volume", error);
|
||||
return 0.15;
|
||||
}
|
||||
};
|
||||
|
||||
export const getGameKey = (shop: GameShop, objectId: string): string => {
|
||||
return `${shop}:${objectId}`;
|
||||
};
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import axios from "axios";
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import type { DownloadSource } from "@types";
|
||||
import { useAppDispatch } from "./redux";
|
||||
import { setGenres, setTags } from "@renderer/features";
|
||||
import type { DownloadSource } from "@types";
|
||||
|
||||
export const externalResourcesInstance = axios.create({
|
||||
baseURL: import.meta.env.RENDERER_VITE_EXTERNAL_RESOURCES_URL,
|
||||
@@ -40,8 +41,9 @@ export function useCatalogue() {
|
||||
}, []);
|
||||
|
||||
const getDownloadSources = useCallback(() => {
|
||||
window.electron.getDownloadSources().then((results) => {
|
||||
setDownloadSources(results.filter((source) => !!source.fingerprint));
|
||||
levelDBService.values("downloadSources").then((results) => {
|
||||
const sources = results as DownloadSource[];
|
||||
setDownloadSources(sources.filter((source) => !!source.fingerprint));
|
||||
});
|
||||
}, []);
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { useState, useEffect, useCallback, useRef } from "react";
|
||||
import { useAppSelector } from "./redux";
|
||||
import { debounce } from "lodash-es";
|
||||
import { logger } from "@renderer/logger";
|
||||
|
||||
export interface SearchSuggestion {
|
||||
title: string;
|
||||
@@ -85,12 +86,12 @@ export function useSearchSuggestions(
|
||||
|
||||
try {
|
||||
const response = await window.electron.hydraApi.get<
|
||||
Array<{
|
||||
{
|
||||
title: string;
|
||||
objectId: string;
|
||||
shop: string;
|
||||
iconUrl: string | null;
|
||||
}>
|
||||
}[]
|
||||
>("/catalogue/search/suggestions", {
|
||||
params: {
|
||||
query: searchQuery,
|
||||
@@ -113,6 +114,7 @@ export function useSearchSuggestions(
|
||||
} catch (error) {
|
||||
if (!abortController.signal.aborted) {
|
||||
setSuggestions([]);
|
||||
logger.error("Failed to fetch catalogue suggestions", error);
|
||||
}
|
||||
} finally {
|
||||
if (!abortController.signal.aborted) {
|
||||
|
||||
@@ -21,6 +21,7 @@ import resources from "@locales";
|
||||
|
||||
import { logger } from "./logger";
|
||||
import { addCookieInterceptor } from "./cookies";
|
||||
import { levelDBService } from "./services/leveldb.service";
|
||||
import Catalogue from "./pages/catalogue/catalogue";
|
||||
import Home from "./pages/home/home";
|
||||
import Downloads from "./pages/downloads/downloads";
|
||||
@@ -48,7 +49,11 @@ i18n
|
||||
},
|
||||
})
|
||||
.then(async () => {
|
||||
const userPreferences = await window.electron.getUserPreferences();
|
||||
const userPreferences = (await levelDBService.get(
|
||||
"userPreferences",
|
||||
null,
|
||||
"json"
|
||||
)) as { language?: string } | null;
|
||||
|
||||
if (userPreferences?.language) {
|
||||
i18n.changeLanguage(userPreferences.language);
|
||||
|
||||
@@ -11,6 +11,7 @@ import {
|
||||
getAchievementSoundVolume,
|
||||
} from "@renderer/helpers";
|
||||
import { AchievementNotificationItem } from "@renderer/components/achievements/notification/achievement-notification";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import app from "../../../app.scss?inline";
|
||||
import styles from "../../../components/achievements/notification/achievement-notification.scss?inline";
|
||||
import root from "react-shadow";
|
||||
@@ -144,7 +145,11 @@ export function AchievementNotification() {
|
||||
|
||||
const loadAndApplyTheme = useCallback(async () => {
|
||||
if (!shadowRootRef) return;
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
isActive?: boolean;
|
||||
code?: string;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((theme) => theme.isActive);
|
||||
if (activeTheme?.code) {
|
||||
injectCustomCss(activeTheme.code, shadowRootRef);
|
||||
} else {
|
||||
|
||||
@@ -100,20 +100,48 @@ export function GallerySlider() {
|
||||
src?: string;
|
||||
poster?: string;
|
||||
videoSrc?: string;
|
||||
videoType?: string;
|
||||
alt: string;
|
||||
}> = [];
|
||||
|
||||
if (shopDetails?.movies) {
|
||||
shopDetails.movies.forEach((video, index) => {
|
||||
items.push({
|
||||
id: String(video.id),
|
||||
type: "video",
|
||||
poster: video.thumbnail,
|
||||
videoSrc: video.mp4.max.startsWith("http://")
|
||||
? video.mp4.max.replace("http://", "https://")
|
||||
: video.mp4.max,
|
||||
alt: t("video", { number: String(index + 1) }),
|
||||
});
|
||||
// Prefer new formats: HLS (best browser support), then DASH H264, then DASH AV1
|
||||
// Fallback to old format: mp4/webm if new formats are not available
|
||||
let videoSrc: string | undefined;
|
||||
let videoType: string | undefined;
|
||||
|
||||
if (video.hls_h264) {
|
||||
videoSrc = video.hls_h264;
|
||||
videoType = "application/x-mpegURL";
|
||||
} else if (video.dash_h264) {
|
||||
videoSrc = video.dash_h264;
|
||||
videoType = "application/dash+xml";
|
||||
} else if (video.dash_av1) {
|
||||
videoSrc = video.dash_av1;
|
||||
videoType = "application/dash+xml";
|
||||
} else if (video.mp4?.max) {
|
||||
// Fallback to old format
|
||||
videoSrc = video.mp4.max;
|
||||
videoType = "video/mp4";
|
||||
} else if (video.webm?.max) {
|
||||
// Fallback to webm if mp4 is not available
|
||||
videoSrc = video.webm.max;
|
||||
videoType = "video/webm";
|
||||
}
|
||||
|
||||
if (videoSrc) {
|
||||
items.push({
|
||||
id: String(video.id),
|
||||
type: "video",
|
||||
poster: video.thumbnail,
|
||||
videoSrc: videoSrc.startsWith("http://")
|
||||
? videoSrc.replace("http://", "https://")
|
||||
: videoSrc,
|
||||
videoType,
|
||||
alt: video.name || t("video", { number: String(index + 1) }),
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -172,7 +200,9 @@ export function GallerySlider() {
|
||||
autoPlay={autoplayEnabled}
|
||||
tabIndex={-1}
|
||||
>
|
||||
<source src={item.videoSrc} />
|
||||
{item.videoSrc && (
|
||||
<source src={item.videoSrc} type={item.videoType} />
|
||||
)}
|
||||
</video>
|
||||
) : (
|
||||
<img
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { useContext, useRef, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Button, CheckboxField, Modal, TextField } from "@renderer/components";
|
||||
import type { LibraryGame, ShortcutLocation } from "@types";
|
||||
import type { Game, LibraryGame, ShortcutLocation } from "@types";
|
||||
import { gameDetailsContext } from "@renderer/context";
|
||||
import { DeleteGameModal } from "@renderer/pages/downloads/delete-game-modal";
|
||||
import { useDownload, useToast, useUserDetails } from "@renderer/hooks";
|
||||
@@ -11,6 +11,8 @@ import { ChangeGamePlaytimeModal } from "./change-game-playtime-modal";
|
||||
import { FileDirectoryIcon, FileIcon } from "@primer/octicons-react";
|
||||
import SteamLogo from "@renderer/assets/steam-logo.svg?react";
|
||||
import { debounce } from "lodash-es";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import { getGameKey } from "@renderer/helpers";
|
||||
import "./game-options-modal.scss";
|
||||
import { logger } from "@renderer/logger";
|
||||
|
||||
@@ -75,11 +77,19 @@ export function GameOptionsModal({
|
||||
|
||||
const debounceUpdateLaunchOptions = useRef(
|
||||
debounce(async (value: string) => {
|
||||
await window.electron.updateLaunchOptions(
|
||||
game.shop,
|
||||
game.objectId,
|
||||
value
|
||||
);
|
||||
const gameKey = getGameKey(game.shop, game.objectId);
|
||||
const gameData = (await levelDBService.get(
|
||||
gameKey,
|
||||
"games"
|
||||
)) as Game | null;
|
||||
if (gameData) {
|
||||
const trimmedValue = value.trim();
|
||||
const updated = {
|
||||
...gameData,
|
||||
launchOptions: trimmedValue ? trimmedValue : null,
|
||||
};
|
||||
await levelDBService.put(gameKey, updated, "games");
|
||||
}
|
||||
updateGame();
|
||||
}, 1000)
|
||||
).current;
|
||||
@@ -213,9 +223,16 @@ export function GameOptionsModal({
|
||||
const handleClearLaunchOptions = async () => {
|
||||
setLaunchOptions("");
|
||||
|
||||
window.electron
|
||||
.updateLaunchOptions(game.shop, game.objectId, null)
|
||||
.then(updateGame);
|
||||
const gameKey = getGameKey(game.shop, game.objectId);
|
||||
const gameData = (await levelDBService.get(
|
||||
gameKey,
|
||||
"games"
|
||||
)) as Game | null;
|
||||
if (gameData) {
|
||||
const updated = { ...gameData, launchOptions: null };
|
||||
await levelDBService.put(gameKey, updated, "games");
|
||||
}
|
||||
updateGame();
|
||||
};
|
||||
|
||||
const shouldShowWinePrefixConfiguration =
|
||||
@@ -256,11 +273,15 @@ export function GameOptionsModal({
|
||||
) => {
|
||||
setAutomaticCloudSync(event.target.checked);
|
||||
|
||||
await window.electron.toggleAutomaticCloudSync(
|
||||
game.shop,
|
||||
game.objectId,
|
||||
event.target.checked
|
||||
);
|
||||
const gameKey = getGameKey(game.shop, game.objectId);
|
||||
const gameData = (await levelDBService.get(
|
||||
gameKey,
|
||||
"games"
|
||||
)) as Game | null;
|
||||
if (gameData) {
|
||||
const updated = { ...gameData, automaticCloudSync: event.target.checked };
|
||||
await levelDBService.put(gameKey, updated, "games");
|
||||
}
|
||||
|
||||
updateGame();
|
||||
};
|
||||
|
||||
@@ -15,7 +15,7 @@ import {
|
||||
TextField,
|
||||
CheckboxField,
|
||||
} from "@renderer/components";
|
||||
import type { DownloadSource, GameRepack } from "@types";
|
||||
import type { DownloadSource, Game, GameRepack } from "@types";
|
||||
|
||||
import { DownloadSettingsModal } from "./download-settings-modal";
|
||||
import { gameDetailsContext } from "@renderer/context";
|
||||
@@ -23,6 +23,8 @@ import { Downloader } from "@shared";
|
||||
import { orderBy } from "lodash-es";
|
||||
import { useDate, useFeature, useAppDispatch } from "@renderer/hooks";
|
||||
import { clearNewDownloadOptions } from "@renderer/features";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import { getGameKey } from "@renderer/helpers";
|
||||
import "./repacks-modal.scss";
|
||||
|
||||
export interface RepacksModalProps {
|
||||
@@ -98,8 +100,11 @@ export function RepacksModal({
|
||||
|
||||
useEffect(() => {
|
||||
const fetchDownloadSources = async () => {
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
};
|
||||
|
||||
fetchDownloadSources();
|
||||
@@ -109,10 +114,19 @@ export function RepacksModal({
|
||||
const fetchLastCheckTimestamp = async () => {
|
||||
setIsLoadingTimestamp(true);
|
||||
|
||||
const timestamp = await window.electron.getDownloadSourcesSinceValue();
|
||||
try {
|
||||
const timestamp = (await levelDBService.get(
|
||||
"downloadSourcesSinceValue",
|
||||
null,
|
||||
"utf8"
|
||||
)) as string | null;
|
||||
|
||||
setLastCheckTimestamp(timestamp);
|
||||
setIsLoadingTimestamp(false);
|
||||
setLastCheckTimestamp(timestamp);
|
||||
} catch {
|
||||
setLastCheckTimestamp(null);
|
||||
} finally {
|
||||
setIsLoadingTimestamp(false);
|
||||
}
|
||||
};
|
||||
|
||||
if (visible) {
|
||||
@@ -126,7 +140,20 @@ export function RepacksModal({
|
||||
game?.newDownloadOptionsCount &&
|
||||
game.newDownloadOptionsCount > 0
|
||||
) {
|
||||
globalThis.electron.clearNewDownloadOptions(game.shop, game.objectId);
|
||||
const gameKey = getGameKey(game.shop, game.objectId);
|
||||
levelDBService
|
||||
.get(gameKey, "games")
|
||||
.then((gameData) => {
|
||||
if (gameData) {
|
||||
const updated = {
|
||||
...(gameData as Game),
|
||||
newDownloadOptionsCount: undefined,
|
||||
};
|
||||
return levelDBService.put(gameKey, updated, "games");
|
||||
}
|
||||
return Promise.resolve();
|
||||
})
|
||||
.catch(() => {});
|
||||
|
||||
const gameId = `${game.shop}:${game.objectId}`;
|
||||
dispatch(clearNewDownloadOptions({ gameId }));
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import { orderBy } from "lodash-es";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
|
||||
import Skeleton, { SkeletonTheme } from "react-loading-skeleton";
|
||||
|
||||
import { Button, GameCard, Hero } from "@renderer/components";
|
||||
import type { ShopAssets, Steam250Game } from "@types";
|
||||
import type { DownloadSource, ShopAssets, Steam250Game } from "@types";
|
||||
|
||||
import flameIconStatic from "@renderer/assets/icons/flame-static.png";
|
||||
import flameIconAnimated from "@renderer/assets/icons/flame-animated.gif";
|
||||
@@ -40,7 +42,10 @@ export default function Home() {
|
||||
setCurrentCatalogueCategory(category);
|
||||
setIsLoading(true);
|
||||
|
||||
const downloadSources = await window.electron.getDownloadSources();
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const downloadSources = orderBy(sources, "createdAt", "desc");
|
||||
|
||||
const params = {
|
||||
take: 12,
|
||||
|
||||
@@ -8,6 +8,7 @@ import { useState } from "react";
|
||||
import { DeleteThemeModal } from "../modals/delete-theme-modal";
|
||||
import { injectCustomCss, removeCustomCss } from "@renderer/helpers";
|
||||
import { THEME_WEB_STORE_URL } from "@renderer/constants";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
interface ThemeCardProps {
|
||||
theme: Theme;
|
||||
@@ -22,11 +23,18 @@ export const ThemeCard = ({ theme, onListUpdated }: ThemeCardProps) => {
|
||||
|
||||
const handleSetTheme = async () => {
|
||||
try {
|
||||
const currentTheme = await window.electron.getCustomThemeById(theme.id);
|
||||
const currentTheme = (await levelDBService.get(
|
||||
theme.id,
|
||||
"themes"
|
||||
)) as Theme | null;
|
||||
|
||||
if (!currentTheme) return;
|
||||
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
id: string;
|
||||
isActive?: boolean;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((t) => t.isActive);
|
||||
|
||||
if (activeTheme) {
|
||||
removeCustomCss();
|
||||
|
||||
@@ -10,6 +10,7 @@ import * as yup from "yup";
|
||||
import { yupResolver } from "@hookform/resolvers/yup";
|
||||
import { useCallback } from "react";
|
||||
import { generateUUID } from "@renderer/helpers";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
import "./modals.scss";
|
||||
|
||||
@@ -90,7 +91,7 @@ export function AddThemeModal({
|
||||
updatedAt: new Date(),
|
||||
};
|
||||
|
||||
await window.electron.addCustomTheme(theme);
|
||||
await levelDBService.put(theme.id, theme, "themes");
|
||||
onThemeAdded();
|
||||
onClose();
|
||||
reset();
|
||||
|
||||
@@ -3,6 +3,7 @@ import { Modal } from "@renderer/components/modal/modal";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import "./modals.scss";
|
||||
import { removeCustomCss } from "@renderer/helpers";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
interface DeleteAllThemesModalProps {
|
||||
visible: boolean;
|
||||
@@ -18,13 +19,16 @@ export const DeleteAllThemesModal = ({
|
||||
const { t } = useTranslation("settings");
|
||||
|
||||
const handleDeleteAllThemes = async () => {
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
isActive?: boolean;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((theme) => theme.isActive);
|
||||
|
||||
if (activeTheme) {
|
||||
removeCustomCss();
|
||||
}
|
||||
|
||||
await window.electron.deleteAllCustomThemes();
|
||||
await levelDBService.clear("themes");
|
||||
await window.electron.closeEditorWindow();
|
||||
onClose();
|
||||
onThemesDeleted();
|
||||
|
||||
@@ -3,6 +3,7 @@ import { Modal } from "@renderer/components/modal/modal";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import "./modals.scss";
|
||||
import { removeCustomCss } from "@renderer/helpers";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
interface DeleteThemeModalProps {
|
||||
visible: boolean;
|
||||
@@ -28,7 +29,7 @@ export const DeleteThemeModal = ({
|
||||
removeCustomCss();
|
||||
}
|
||||
|
||||
await window.electron.deleteCustomTheme(themeId);
|
||||
await levelDBService.del(themeId, "themes");
|
||||
await window.electron.closeEditorWindow(themeId);
|
||||
onThemeDeleted();
|
||||
};
|
||||
|
||||
@@ -11,6 +11,7 @@ import {
|
||||
import { useToast } from "@renderer/hooks";
|
||||
import { THEME_WEB_STORE_URL } from "@renderer/constants";
|
||||
import { logger } from "@renderer/logger";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
interface ImportThemeModalProps {
|
||||
visible: boolean;
|
||||
@@ -45,9 +46,12 @@ export const ImportThemeModal = ({
|
||||
};
|
||||
|
||||
try {
|
||||
await window.electron.addCustomTheme(theme);
|
||||
await levelDBService.put(theme.id, theme, "themes");
|
||||
|
||||
const currentTheme = await window.electron.getCustomThemeById(theme.id);
|
||||
const currentTheme = (await levelDBService.get(
|
||||
theme.id,
|
||||
"themes"
|
||||
)) as Theme | null;
|
||||
|
||||
if (!currentTheme) return;
|
||||
|
||||
@@ -61,7 +65,11 @@ export const ImportThemeModal = ({
|
||||
logger.error("Failed to import theme sound", soundError);
|
||||
}
|
||||
|
||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||
const allThemes = (await levelDBService.values("themes")) as {
|
||||
id: string;
|
||||
isActive?: boolean;
|
||||
}[];
|
||||
const activeTheme = allThemes.find((t) => t.isActive);
|
||||
|
||||
if (activeTheme) {
|
||||
removeCustomCss();
|
||||
|
||||
@@ -5,6 +5,7 @@ import type { Theme } from "@types";
|
||||
import { ImportThemeModal } from "./modals/import-theme-modal";
|
||||
import { settingsContext } from "@renderer/context";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
|
||||
interface SettingsAppearanceProps {
|
||||
appearance: {
|
||||
@@ -31,7 +32,7 @@ export function SettingsAppearance({
|
||||
const navigate = useNavigate();
|
||||
|
||||
const loadThemes = useCallback(async () => {
|
||||
const themesList = await window.electron.getAllCustomThemes();
|
||||
const themesList = (await levelDBService.values("themes")) as Theme[];
|
||||
setThemes(themesList);
|
||||
}, []);
|
||||
|
||||
|
||||
@@ -21,6 +21,8 @@ import { DownloadSourceStatus } from "@shared";
|
||||
import { settingsContext } from "@renderer/context";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import { setFilters, clearFilters } from "@renderer/features";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import { orderBy } from "lodash-es";
|
||||
import "./settings-download-sources.scss";
|
||||
import { logger } from "@renderer/logger";
|
||||
|
||||
@@ -52,8 +54,11 @@ export function SettingsDownloadSources() {
|
||||
|
||||
useEffect(() => {
|
||||
const fetchDownloadSources = async () => {
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
};
|
||||
|
||||
fetchDownloadSources();
|
||||
@@ -73,8 +78,11 @@ export function SettingsDownloadSources() {
|
||||
const intervalId = setInterval(async () => {
|
||||
try {
|
||||
await window.electron.syncDownloadSources();
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
} catch (error) {
|
||||
logger.error("Failed to fetch download sources:", error);
|
||||
}
|
||||
@@ -88,8 +96,11 @@ export function SettingsDownloadSources() {
|
||||
|
||||
try {
|
||||
await window.electron.removeDownloadSource(false, downloadSource.id);
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
showSuccessToast(t("removed_download_source"));
|
||||
} catch (error) {
|
||||
logger.error("Failed to remove download source:", error);
|
||||
@@ -103,8 +114,11 @@ export function SettingsDownloadSources() {
|
||||
|
||||
try {
|
||||
await window.electron.removeDownloadSource(true);
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
showSuccessToast(t("removed_all_download_sources"));
|
||||
} catch (error) {
|
||||
logger.error("Failed to remove all download sources:", error);
|
||||
@@ -116,8 +130,11 @@ export function SettingsDownloadSources() {
|
||||
|
||||
const handleAddDownloadSource = async () => {
|
||||
try {
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
} catch (error) {
|
||||
logger.error("Failed to refresh download sources:", error);
|
||||
}
|
||||
@@ -127,8 +144,11 @@ export function SettingsDownloadSources() {
|
||||
setIsSyncingDownloadSources(true);
|
||||
try {
|
||||
await window.electron.syncDownloadSources();
|
||||
const sources = await window.electron.getDownloadSources();
|
||||
setDownloadSources(sources);
|
||||
const sources = (await levelDBService.values(
|
||||
"downloadSources"
|
||||
)) as DownloadSource[];
|
||||
const sorted = orderBy(sources, "createdAt", "desc");
|
||||
setDownloadSources(sorted);
|
||||
|
||||
showSuccessToast(t("download_sources_synced_successfully"));
|
||||
} finally {
|
||||
|
||||
@@ -16,6 +16,7 @@ import { injectCustomCss, getAchievementSoundVolume } from "@renderer/helpers";
|
||||
import { AchievementNotificationItem } from "@renderer/components/achievements/notification/achievement-notification";
|
||||
import { generateAchievementCustomNotificationTest } from "@shared";
|
||||
import { CollapsedMenu } from "@renderer/components/collapsed-menu/collapsed-menu";
|
||||
import { levelDBService } from "@renderer/services/leveldb.service";
|
||||
import app from "../../app.scss?inline";
|
||||
import styles from "../../components/achievements/notification/achievement-notification.scss?inline";
|
||||
import root from "react-shadow";
|
||||
@@ -64,15 +65,16 @@ export default function ThemeEditor() {
|
||||
|
||||
useEffect(() => {
|
||||
if (themeId) {
|
||||
window.electron.getCustomThemeById(themeId).then((loadedTheme) => {
|
||||
if (loadedTheme) {
|
||||
setTheme(loadedTheme);
|
||||
setCode(loadedTheme.code);
|
||||
if (loadedTheme.originalSoundPath) {
|
||||
setSoundPath(loadedTheme.originalSoundPath);
|
||||
levelDBService.get(themeId, "themes").then((loadedTheme) => {
|
||||
const theme = loadedTheme as Theme | null;
|
||||
if (theme) {
|
||||
setTheme(theme);
|
||||
setCode(theme.code);
|
||||
if (theme.originalSoundPath) {
|
||||
setSoundPath(theme.originalSoundPath);
|
||||
}
|
||||
if (shadowRootRef) {
|
||||
injectCustomCss(loadedTheme.code, shadowRootRef);
|
||||
injectCustomCss(theme.code, shadowRootRef);
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -132,7 +134,10 @@ export default function ThemeEditor() {
|
||||
if (filePaths && filePaths.length > 0) {
|
||||
const originalPath = filePaths[0];
|
||||
await window.electron.copyThemeAchievementSound(theme.id, originalPath);
|
||||
const updatedTheme = await window.electron.getCustomThemeById(theme.id);
|
||||
const updatedTheme = (await levelDBService.get(
|
||||
theme.id,
|
||||
"themes"
|
||||
)) as Theme | null;
|
||||
if (updatedTheme) {
|
||||
setTheme(updatedTheme);
|
||||
if (updatedTheme.originalSoundPath) {
|
||||
@@ -146,7 +151,10 @@ export default function ThemeEditor() {
|
||||
if (!theme) return;
|
||||
|
||||
await window.electron.removeThemeAchievementSound(theme.id);
|
||||
const updatedTheme = await window.electron.getCustomThemeById(theme.id);
|
||||
const updatedTheme = (await levelDBService.get(
|
||||
theme.id,
|
||||
"themes"
|
||||
)) as Theme | null;
|
||||
if (updatedTheme) {
|
||||
setTheme(updatedTheme);
|
||||
}
|
||||
|
||||
36
src/renderer/src/services/leveldb.service.ts
Normal file
36
src/renderer/src/services/leveldb.service.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
class LevelDBService {
|
||||
get(
|
||||
key: string,
|
||||
sublevelName?: string | null,
|
||||
valueEncoding?: "json" | "utf8"
|
||||
): Promise<unknown> {
|
||||
return window.electron.leveldb.get(key, sublevelName, valueEncoding);
|
||||
}
|
||||
|
||||
put(
|
||||
key: string,
|
||||
value: unknown,
|
||||
sublevelName?: string | null,
|
||||
valueEncoding?: "json" | "utf8"
|
||||
): Promise<void> {
|
||||
return window.electron.leveldb.put(key, value, sublevelName, valueEncoding);
|
||||
}
|
||||
|
||||
del(key: string, sublevelName?: string | null): Promise<void> {
|
||||
return window.electron.leveldb.del(key, sublevelName);
|
||||
}
|
||||
|
||||
clear(sublevelName: string): Promise<void> {
|
||||
return window.electron.leveldb.clear(sublevelName);
|
||||
}
|
||||
|
||||
values(sublevelName: string): Promise<unknown[]> {
|
||||
return window.electron.leveldb.values(sublevelName);
|
||||
}
|
||||
|
||||
iterator(sublevelName: string): Promise<[string, unknown][]> {
|
||||
return window.electron.leveldb.iterator(sublevelName);
|
||||
}
|
||||
}
|
||||
|
||||
export const levelDBService = new LevelDBService();
|
||||
Reference in New Issue
Block a user