mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 16:53:57 +00:00
Compare commits
129 Commits
fix/custom
...
fix/fixing
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac01930d68 | ||
|
|
37caeb8047 | ||
|
|
7d6eddb17e | ||
|
|
48775e57fc | ||
|
|
fdc3fecd6f | ||
|
|
f0dc7478cf | ||
|
|
2e8da53d1a | ||
|
|
8794fbc742 | ||
|
|
bf387aef3f | ||
|
|
c2a26b9750 | ||
|
|
3dc2a29114 | ||
|
|
6ebf7766aa | ||
|
|
19bf99ff11 | ||
|
|
9c00a17193 | ||
|
|
d167628ed4 | ||
|
|
59cfce86ae | ||
|
|
51c4e4f5b3 | ||
|
|
138120460c | ||
|
|
c71f5947ba | ||
|
|
ff8a61ff7a | ||
|
|
d1d46971b6 | ||
|
|
b8af69b0fb | ||
|
|
1af69465c1 | ||
|
|
f6c12c22b5 | ||
|
|
539010d817 | ||
|
|
aa148c0b70 | ||
|
|
a83a96f214 | ||
|
|
aadbda770b | ||
|
|
bd059cc7fa | ||
|
|
bbbf861594 | ||
|
|
80e0adcd49 | ||
|
|
2aa31c0db0 | ||
|
|
4bfe6d7f86 | ||
|
|
aadf648a2b | ||
|
|
87dbd548d0 | ||
|
|
459bf73121 | ||
|
|
a2ef0f304d | ||
|
|
b04561986e | ||
|
|
1bd88e6c6e | ||
|
|
4ff8dc4fa7 | ||
|
|
dcc671f999 | ||
|
|
6e76111e23 | ||
|
|
3fce26f1f7 | ||
|
|
90c5ccb796 | ||
|
|
41092c2dd4 | ||
|
|
6383b728bc | ||
|
|
4dd28bbbf1 | ||
|
|
21074322fa | ||
|
|
0e7e53478a | ||
|
|
65e49550ad | ||
|
|
0990951183 | ||
|
|
53c162f0e4 | ||
|
|
2fb44a6c0e | ||
|
|
49c2bc34d1 | ||
|
|
ef52d710ed | ||
|
|
31d57a784e | ||
|
|
49df40650c | ||
|
|
499a830e3e | ||
|
|
437b0a3b19 | ||
|
|
d59ff5c484 | ||
|
|
dcf13a5920 | ||
|
|
51861752a1 | ||
|
|
fb29152a0b | ||
|
|
19bbbbfb77 | ||
|
|
952d4d9ee2 | ||
|
|
2fce12eba7 | ||
|
|
1427775c98 | ||
|
|
e143fadf38 | ||
|
|
f99f8d9554 | ||
|
|
274080069f | ||
|
|
b1069426e4 | ||
|
|
dc6d578462 | ||
|
|
8a12c6e088 | ||
|
|
b795cea599 | ||
|
|
dc8a19e845 | ||
|
|
ce0619bbe3 | ||
|
|
4acb7f7001 | ||
|
|
a11b3e8877 | ||
|
|
6b96c99bb1 | ||
|
|
1123aaa65e | ||
|
|
2f8d241ded | ||
|
|
5c770bc7e7 | ||
|
|
b431ed479c | ||
|
|
9e09a5decb | ||
|
|
1e1a1c61c9 | ||
|
|
fc6068d603 | ||
|
|
3ab1e29578 | ||
|
|
1effa80311 | ||
|
|
549e1270ee | ||
|
|
eb006c5e90 | ||
|
|
54632bd06d | ||
|
|
a073cf7f8c | ||
|
|
6921bfa3ff | ||
|
|
2835207d79 | ||
|
|
2a90faeb42 | ||
|
|
87a57f7a37 | ||
|
|
7c272aeed8 | ||
|
|
4471bf0f8b | ||
|
|
f239562bb3 | ||
|
|
11c19f5fe5 | ||
|
|
8de6c92d28 | ||
|
|
29e822f2f1 | ||
|
|
a388acf948 | ||
|
|
40f7e6e2ad | ||
|
|
29e1713824 | ||
|
|
81a77411cc | ||
|
|
cc95deb709 | ||
|
|
daf9751cf6 | ||
|
|
d21ec52814 | ||
|
|
f539977431 | ||
|
|
3ff20417d5 | ||
|
|
65f83399f5 | ||
|
|
eb34f051e1 | ||
|
|
ab27f3295e | ||
|
|
3782f79100 | ||
|
|
86ab5b107b | ||
|
|
acf8f340dd | ||
|
|
035f6e8d24 | ||
|
|
362d6b634e | ||
|
|
73e378e26a | ||
|
|
3782d74ad2 | ||
|
|
8a40c678f7 | ||
|
|
e1ce5bc6cb | ||
|
|
48ce9a2476 | ||
|
|
2909be312a | ||
|
|
d2089ec7d4 | ||
|
|
c2273dbf71 | ||
|
|
3dc71a8d1f | ||
|
|
8203399eda |
37
.cursorrules
Normal file
37
.cursorrules
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
# Hydra Project Rules
|
||||||
|
|
||||||
|
## Logging
|
||||||
|
|
||||||
|
- **Always use `logger` instead of `console` for logging** in both main and renderer processes
|
||||||
|
- In main process: `import { logger } from "@main/services";`
|
||||||
|
- In renderer process: `import { logger } from "@renderer/logger";`
|
||||||
|
- Replace all instances of:
|
||||||
|
- `console.log()` → `logger.log()`
|
||||||
|
- `console.error()` → `logger.error()`
|
||||||
|
- `console.warn()` → `logger.warn()`
|
||||||
|
- `console.info()` → `logger.info()`
|
||||||
|
- `console.debug()` → `logger.debug()`
|
||||||
|
- Do not use `console` for any logging purposes
|
||||||
|
|
||||||
|
## Internationalization (i18n)
|
||||||
|
|
||||||
|
- All user-facing strings must be translated using i18next
|
||||||
|
- Use the `useTranslation` hook in React components: `const { t } = useTranslation("namespace");`
|
||||||
|
- Add new translation keys to `src/locales/en/translation.json`
|
||||||
|
- Never hardcode English strings in the UI code
|
||||||
|
- Placeholder text in form fields must also be translated
|
||||||
|
|
||||||
|
## Code Style
|
||||||
|
|
||||||
|
- Use ESLint and Prettier for code formatting
|
||||||
|
- Follow TypeScript strict mode conventions
|
||||||
|
- Use async/await instead of promises when possible
|
||||||
|
- Prefer named exports over default exports for utilities and services
|
||||||
|
|
||||||
|
## Comments
|
||||||
|
|
||||||
|
- Keep comments concise and purposeful; avoid verbose explanations.
|
||||||
|
- Focus on the "why" or non-obvious context, not restating the code.
|
||||||
|
- Prefer self-explanatory naming and structure over excessive comments.
|
||||||
|
- Do not comment every line or obvious behavior; remove stale comments.
|
||||||
|
- Use docblocks only where they add value (public APIs, complex logic).
|
||||||
@@ -3,3 +3,4 @@ MAIN_VITE_AUTH_URL=
|
|||||||
MAIN_VITE_WS_URL=
|
MAIN_VITE_WS_URL=
|
||||||
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID=
|
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID=
|
||||||
RENDERER_VITE_TORBOX_REFERRAL_CODE=
|
RENDERER_VITE_TORBOX_REFERRAL_CODE=
|
||||||
|
MAIN_VITE_LAUNCHER_SUBDOMAIN=
|
||||||
|
|||||||
26
.github/workflows/build-renderer.yml
vendored
26
.github/workflows/build-renderer.yml
vendored
@@ -6,23 +6,37 @@ concurrency:
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: main
|
branches:
|
||||||
|
- release/**
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: --max-old-space-size=4096
|
||||||
|
BRANCH_NAME: ${{ github.ref_name }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Git repository
|
- name: Check out Git repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20.18.0
|
node-version: 22.21.0
|
||||||
|
cache: "yarn"
|
||||||
|
|
||||||
|
- name: Enable Corepack (Yarn)
|
||||||
|
run: corepack enable
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --frozen-lockfile --ignore-scripts
|
run: yarn install --frozen-lockfile --ignore-scripts
|
||||||
|
|
||||||
- name: Build Renderer
|
- name: Build Renderer
|
||||||
run: yarn build
|
run: yarn build
|
||||||
@@ -36,5 +50,5 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
npx --yes wrangler@3 pages deploy out/renderer \
|
npx --yes wrangler@3 pages deploy out/renderer \
|
||||||
--project-name="hydra" \
|
--project-name="hydra" \
|
||||||
--commit-dirty=true \
|
--branch "$BRANCH_NAME" \
|
||||||
--branch="main"
|
--commit-dirty
|
||||||
|
|||||||
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@@ -1,11 +1,12 @@
|
|||||||
name: Build
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on: pull_request
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
@@ -22,7 +23,7 @@ jobs:
|
|||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20.18.3
|
node-version: 22.21.0
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --frozen-lockfile
|
run: yarn --frozen-lockfile
|
||||||
@@ -38,6 +39,12 @@ jobs:
|
|||||||
- name: Build with cx_Freeze
|
- name: Build with cx_Freeze
|
||||||
run: python python_rpc/setup.py build
|
run: python python_rpc/setup.py build
|
||||||
|
|
||||||
|
- name: Copy OpenSSL DLLs
|
||||||
|
if: matrix.os == 'windows-2022'
|
||||||
|
run: |
|
||||||
|
cp hydra-python-rpc/lib/libcrypto-1_1.dll hydra-python-rpc/lib/libcrypto-1_1-x64.dll
|
||||||
|
cp hydra-python-rpc/lib/libssl-1_1.dll hydra-python-rpc/lib/libssl-1_1-x64.dll
|
||||||
|
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20.18.3
|
node-version: 22.21.0
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --frozen-lockfile
|
run: yarn --frozen-lockfile
|
||||||
|
|||||||
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
@@ -6,7 +6,8 @@ concurrency:
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches:
|
||||||
|
- release/**
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -23,7 +24,7 @@ jobs:
|
|||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20.18.3
|
node-version: 22.21.0
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --frozen-lockfile
|
run: yarn --frozen-lockfile
|
||||||
@@ -39,6 +40,12 @@ jobs:
|
|||||||
- name: Build with cx_Freeze
|
- name: Build with cx_Freeze
|
||||||
run: python python_rpc/setup.py build
|
run: python python_rpc/setup.py build
|
||||||
|
|
||||||
|
- name: Copy OpenSSL DLLs
|
||||||
|
if: matrix.os == 'windows-2022'
|
||||||
|
run: |
|
||||||
|
cp hydra-python-rpc/lib/libcrypto-1_1.dll hydra-python-rpc/lib/libcrypto-1_1-x64.dll
|
||||||
|
cp hydra-python-rpc/lib/libssl-1_1.dll hydra-python-rpc/lib/libssl-1_1-x64.dll
|
||||||
|
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
@@ -55,7 +62,7 @@ jobs:
|
|||||||
RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
||||||
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
|
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
|
||||||
RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
|
RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
|
||||||
MAIN_VITE_RENDERER_URL: ${{ vars.MAIN_VITE_RENDERER_URL }}
|
MAIN_VITE_LAUNCHER_SUBDOMAIN: ${{ vars.MAIN_VITE_LAUNCHER_SUBDOMAIN }}
|
||||||
|
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
if: matrix.os == 'windows-2022'
|
if: matrix.os == 'windows-2022'
|
||||||
@@ -72,7 +79,7 @@ jobs:
|
|||||||
RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
||||||
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
|
RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
|
||||||
RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
|
RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
|
||||||
MAIN_VITE_RENDERER_URL: ${{ vars.MAIN_VITE_RENDERER_URL }}
|
MAIN_VITE_LAUNCHER_SUBDOMAIN: ${{ vars.MAIN_VITE_LAUNCHER_SUBDOMAIN }}
|
||||||
|
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
6
.github/workflows/update-aur.yml
vendored
6
.github/workflows/update-aur.yml
vendored
@@ -95,9 +95,12 @@ jobs:
|
|||||||
- name: Update PKGBUILD and .SRCINFO
|
- name: Update PKGBUILD and .SRCINFO
|
||||||
if: steps.check-update.outputs.update_needed == 'true'
|
if: steps.check-update.outputs.update_needed == 'true'
|
||||||
run: |
|
run: |
|
||||||
|
# sleeps for 1 minute to be sure GH updated the release info
|
||||||
|
sleep 60
|
||||||
# Update pkgver in PKGBUILD
|
# Update pkgver in PKGBUILD
|
||||||
cd hydra-launcher-bin
|
cd hydra-launcher-bin
|
||||||
NEW_VERSION="${{ steps.get-version.outputs.version }}"
|
NEW_VERSION="${{ steps.get-version.outputs.version }}"
|
||||||
|
NEW_VERSION="${NEW_VERSION#v}"
|
||||||
|
|
||||||
echo "Updating PKGBUILD pkgver to $NEW_VERSION"
|
echo "Updating PKGBUILD pkgver to $NEW_VERSION"
|
||||||
|
|
||||||
@@ -137,6 +140,9 @@ jobs:
|
|||||||
COMMIT_MSG="v${{ steps.get-version.outputs.version }}"
|
COMMIT_MSG="v${{ steps.get-version.outputs.version }}"
|
||||||
|
|
||||||
git commit -m "$COMMIT_MSG"
|
git commit -m "$COMMIT_MSG"
|
||||||
|
|
||||||
|
export GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa -F ~/.ssh/config -o UserKnownHostsFile=$SSH_PATH/known_hosts"
|
||||||
|
|
||||||
git push origin master
|
git push origin master
|
||||||
echo "Successfully updated AUR package to version ${{ steps.get-version.outputs.version }}"
|
echo "Successfully updated AUR package to version ${{ steps.get-version.outputs.version }}"
|
||||||
fi
|
fi
|
||||||
|
|||||||
12
package.json
12
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hydralauncher",
|
"name": "hydralauncher",
|
||||||
"version": "3.7.1",
|
"version": "3.7.3",
|
||||||
"description": "Hydra",
|
"description": "Hydra",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "Los Broxas",
|
"author": "Los Broxas",
|
||||||
@@ -75,6 +75,7 @@
|
|||||||
"react-dnd-html5-backend": "^16.0.1",
|
"react-dnd-html5-backend": "^16.0.1",
|
||||||
"react-hook-form": "^7.53.0",
|
"react-hook-form": "^7.53.0",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.0",
|
||||||
|
"react-infinite-scroll-component": "^6.1.0",
|
||||||
"react-loading-skeleton": "^3.4.0",
|
"react-loading-skeleton": "^3.4.0",
|
||||||
"react-redux": "^9.1.1",
|
"react-redux": "^9.1.1",
|
||||||
"react-router-dom": "^6.22.3",
|
"react-router-dom": "^6.22.3",
|
||||||
@@ -90,8 +91,7 @@
|
|||||||
"winreg": "^1.2.5",
|
"winreg": "^1.2.5",
|
||||||
"ws": "^8.18.1",
|
"ws": "^8.18.1",
|
||||||
"yaml": "^2.6.1",
|
"yaml": "^2.6.1",
|
||||||
"yup": "^1.5.0",
|
"yup": "^1.5.0"
|
||||||
"zod": "^3.24.1"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.705.0",
|
"@aws-sdk/client-s3": "^3.705.0",
|
||||||
@@ -116,9 +116,9 @@
|
|||||||
"@types/winreg": "^1.2.36",
|
"@types/winreg": "^1.2.36",
|
||||||
"@types/ws": "^8.18.1",
|
"@types/ws": "^8.18.1",
|
||||||
"@vitejs/plugin-react": "^4.2.1",
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
"electron": "^33.4.11",
|
"electron": "^37.7.1",
|
||||||
"electron-builder": "^26.0.12",
|
"electron-builder": "^26.0.12",
|
||||||
"electron-vite": "^3.0.0",
|
"electron-vite": "^4.0.1",
|
||||||
"eslint": "^8.56.0",
|
"eslint": "^8.56.0",
|
||||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||||
"eslint-plugin-react": "^7.37.4",
|
"eslint-plugin-react": "^7.37.4",
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
"sass-embedded": "^1.80.6",
|
"sass-embedded": "^1.80.6",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.3.3",
|
||||||
"vite": "5.4.20",
|
"vite": "5.4.21",
|
||||||
"vite-plugin-svgr": "^4.5.0"
|
"vite-plugin-svgr": "^4.5.0"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
||||||
|
|||||||
@@ -223,6 +223,7 @@
|
|||||||
"show_more": "Show more",
|
"show_more": "Show more",
|
||||||
"show_less": "Show less",
|
"show_less": "Show less",
|
||||||
"reviews": "Reviews",
|
"reviews": "Reviews",
|
||||||
|
"review_played_for": "Played for",
|
||||||
"leave_a_review": "Leave a Review",
|
"leave_a_review": "Leave a Review",
|
||||||
"write_review_placeholder": "Share your thoughts about this game...",
|
"write_review_placeholder": "Share your thoughts about this game...",
|
||||||
"sort_newest": "Newest",
|
"sort_newest": "Newest",
|
||||||
@@ -361,7 +362,10 @@
|
|||||||
"show_original": "Show original",
|
"show_original": "Show original",
|
||||||
"show_translation": "Show translation",
|
"show_translation": "Show translation",
|
||||||
"show_original_translated_from": "Show original (translated from {{language}})",
|
"show_original_translated_from": "Show original (translated from {{language}})",
|
||||||
"hide_original": "Hide original"
|
"hide_original": "Hide original",
|
||||||
|
"review_from_blocked_user": "Review from blocked user",
|
||||||
|
"show": "Show",
|
||||||
|
"hide": "Hide"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Activate Hydra",
|
"title": "Activate Hydra",
|
||||||
@@ -428,6 +432,9 @@
|
|||||||
"validate_download_source": "Validate",
|
"validate_download_source": "Validate",
|
||||||
"remove_download_source": "Remove",
|
"remove_download_source": "Remove",
|
||||||
"add_download_source": "Add source",
|
"add_download_source": "Add source",
|
||||||
|
"adding": "Adding…",
|
||||||
|
"failed_add_download_source": "Failed to add download source. Please try again.",
|
||||||
|
"download_source_already_exists": "This download source URL already exists.",
|
||||||
"download_count_zero": "No download options",
|
"download_count_zero": "No download options",
|
||||||
"download_count_one": "{{countFormatted}} download option",
|
"download_count_one": "{{countFormatted}} download option",
|
||||||
"download_count_other": "{{countFormatted}} download options",
|
"download_count_other": "{{countFormatted}} download options",
|
||||||
@@ -435,9 +442,16 @@
|
|||||||
"add_download_source_description": "Insert the URL of the .json file",
|
"add_download_source_description": "Insert the URL of the .json file",
|
||||||
"download_source_up_to_date": "Up-to-date",
|
"download_source_up_to_date": "Up-to-date",
|
||||||
"download_source_errored": "Errored",
|
"download_source_errored": "Errored",
|
||||||
|
"download_source_pending_matching": "Updating soon",
|
||||||
|
"download_source_matched": "Up to date",
|
||||||
|
"download_source_matching": "Updating",
|
||||||
|
"download_source_failed": "Error",
|
||||||
|
"download_source_no_information": "No information available",
|
||||||
"sync_download_sources": "Sync sources",
|
"sync_download_sources": "Sync sources",
|
||||||
"removed_download_source": "Download source removed",
|
"removed_download_source": "Download source removed",
|
||||||
"removed_download_sources": "Download sources removed",
|
"removed_download_sources": "Download sources removed",
|
||||||
|
"removed_all_download_sources": "All download sources removed",
|
||||||
|
"download_sources_synced_successfully": "All download sources are synced",
|
||||||
"cancel_button_confirmation_delete_all_sources": "No",
|
"cancel_button_confirmation_delete_all_sources": "No",
|
||||||
"confirm_button_confirmation_delete_all_sources": "Yes, delete everything",
|
"confirm_button_confirmation_delete_all_sources": "Yes, delete everything",
|
||||||
"title_confirmation_delete_all_sources": "Delete all download sources",
|
"title_confirmation_delete_all_sources": "Delete all download sources",
|
||||||
@@ -468,6 +482,7 @@
|
|||||||
"seed_after_download_complete": "Seed after download complete",
|
"seed_after_download_complete": "Seed after download complete",
|
||||||
"show_hidden_achievement_description": "Show hidden achievements description before unlocking them",
|
"show_hidden_achievement_description": "Show hidden achievements description before unlocking them",
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
|
"hydra_cloud": "Hydra Cloud",
|
||||||
"no_users_blocked": "You have no blocked users",
|
"no_users_blocked": "You have no blocked users",
|
||||||
"subscription_active_until": "Your Hydra Cloud is active until {{date}}",
|
"subscription_active_until": "Your Hydra Cloud is active until {{date}}",
|
||||||
"manage_subscription": "Manage subscription",
|
"manage_subscription": "Manage subscription",
|
||||||
@@ -678,7 +693,10 @@
|
|||||||
"game_added_to_pinned": "Game added to pinned",
|
"game_added_to_pinned": "Game added to pinned",
|
||||||
"karma": "Karma",
|
"karma": "Karma",
|
||||||
"karma_count": "karma",
|
"karma_count": "karma",
|
||||||
"karma_description": "Earned from positive likes on reviews"
|
"karma_description": "Earned from positive likes on reviews",
|
||||||
|
"user_reviews": "Reviews",
|
||||||
|
"delete_review": "Delete Review",
|
||||||
|
"loading_reviews": "Loading reviews..."
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Achievement unlocked",
|
"achievement_unlocked": "Achievement unlocked",
|
||||||
|
|||||||
@@ -325,6 +325,7 @@
|
|||||||
"maybe_later": "Tal vez después",
|
"maybe_later": "Tal vez después",
|
||||||
"no_repacks_found": "Sin fuentes encontradas para este juego",
|
"no_repacks_found": "Sin fuentes encontradas para este juego",
|
||||||
"no_reviews_yet": "Sin reseñas aún",
|
"no_reviews_yet": "Sin reseñas aún",
|
||||||
|
"review_played_for": "Jugado por",
|
||||||
"properties": "Propiedades",
|
"properties": "Propiedades",
|
||||||
"rating": "Calificación",
|
"rating": "Calificación",
|
||||||
"rating_count": "Calificación",
|
"rating_count": "Calificación",
|
||||||
@@ -361,7 +362,10 @@
|
|||||||
"you_seemed_to_enjoy_this_game": "Parece que has disfrutado de este juego",
|
"you_seemed_to_enjoy_this_game": "Parece que has disfrutado de este juego",
|
||||||
"language": "Idioma",
|
"language": "Idioma",
|
||||||
"caption": "Subtítulo",
|
"caption": "Subtítulo",
|
||||||
"audio": "Audio"
|
"audio": "Audio",
|
||||||
|
"review_from_blocked_user": "Reseña de usuario bloqueado",
|
||||||
|
"show": "Mostrar",
|
||||||
|
"hide": "Ocultar"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Activar Hydra",
|
"title": "Activar Hydra",
|
||||||
@@ -541,7 +545,9 @@
|
|||||||
"notification_preview": "Probar notificación de logro",
|
"notification_preview": "Probar notificación de logro",
|
||||||
"debrid": "Debrid",
|
"debrid": "Debrid",
|
||||||
"debrid_description": "Los servicios Debrid son descargadores premium sin restricciones que te dejan descargar más rápido archivos alojados en servicios de alojamiento siendo que la única limitación es tu velocidad de internet.",
|
"debrid_description": "Los servicios Debrid son descargadores premium sin restricciones que te dejan descargar más rápido archivos alojados en servicios de alojamiento siendo que la única limitación es tu velocidad de internet.",
|
||||||
"enable_friend_start_game_notifications": "Cuando un amigo está jugando un juego"
|
"enable_friend_start_game_notifications": "Cuando un amigo está jugando un juego",
|
||||||
|
"autoplay_trailers_on_game_page": "Reproducir trailers automáticamente en la página del juego",
|
||||||
|
"hide_to_tray_on_game_start": "Ocultar Hydra en la bandeja al iniciar un juego"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Descarga completada",
|
"download_complete": "Descarga completada",
|
||||||
@@ -676,7 +682,11 @@
|
|||||||
"karma_count": "karma",
|
"karma_count": "karma",
|
||||||
"karma_description": "Conseguido por me gustas positivos en reseñas",
|
"karma_description": "Conseguido por me gustas positivos en reseñas",
|
||||||
"sort_by": "Filtrar por:",
|
"sort_by": "Filtrar por:",
|
||||||
"game_added_to_pinned": "Juego añadido a fijados"
|
"game_added_to_pinned": "Juego añadido a fijados",
|
||||||
|
"user_reviews": "Reseñas",
|
||||||
|
"loading_reviews": "Cargando reseñas...",
|
||||||
|
"no_reviews": "Sin reseñas aún",
|
||||||
|
"delete_review": "Eliminar reseña"
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Logro desbloqueado",
|
"achievement_unlocked": "Logro desbloqueado",
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
"no_results": "Nincs találat",
|
"no_results": "Nincs találat",
|
||||||
"start_typing": "Kereséshez gépelj...",
|
"start_typing": "Kereséshez gépelj...",
|
||||||
"hot": "Most felkapott",
|
"hot": "Most felkapott",
|
||||||
"weekly": "📅 A hét felkapott játékai",
|
"weekly": "📅 A hét felkapottjai",
|
||||||
"achievements": "🏆 Achievement támogatott"
|
"achievements": "🏆 Achievement támogatott"
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
"sign_in": "Bejelentkezés",
|
"sign_in": "Bejelentkezés",
|
||||||
"friends": "Barátok",
|
"friends": "Barátok",
|
||||||
"need_help": "Elakadtál?",
|
"need_help": "Elakadtál?",
|
||||||
"favorites": "Kedvenc játékok",
|
"favorites": "Kedvenc Játékaim",
|
||||||
"playable_button_title": "Csak az azonnal játszható játékokat mutasd",
|
"playable_button_title": "Csak az azonnal játszható játékokat mutasd",
|
||||||
"add_custom_game_tooltip": "Saját játék hozzáadása",
|
"add_custom_game_tooltip": "Saját játék hozzáadása",
|
||||||
"show_playable_only_tooltip": "Csak játszható játék mutatása",
|
"show_playable_only_tooltip": "Csak játszható játék mutatása",
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
"show_less": "Mutass kevesebbet",
|
"show_less": "Mutass kevesebbet",
|
||||||
"reviews": "Vélemények",
|
"reviews": "Vélemények",
|
||||||
"leave_a_review": "Hagyd itt a véleményed",
|
"leave_a_review": "Hagyd itt a véleményed",
|
||||||
"write_review_placeholder": "Oszd meg a gondolataid a játékról...",
|
"write_review_placeholder": "Oszd meg gondolatod a játékról...",
|
||||||
"sort_newest": "Legújabb",
|
"sort_newest": "Legújabb",
|
||||||
"no_reviews_yet": "Még nem lett vélemény megosztva",
|
"no_reviews_yet": "Még nem lett vélemény megosztva",
|
||||||
"be_first_to_review": "Légy az első, aki megossza a véleményét a játékról!",
|
"be_first_to_review": "Légy az első, aki megossza a véleményét a játékról!",
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
"you_seemed_to_enjoy_this_game": "Úgy látszik élvezted ezt a játékot",
|
"you_seemed_to_enjoy_this_game": "Úgy látszik élvezted ezt a játékot",
|
||||||
"would_you_recommend_this_game": "Szeretnél véleményt írni erről a játékról?",
|
"would_you_recommend_this_game": "Szeretnél véleményt írni erről a játékról?",
|
||||||
"yes": "Igen",
|
"yes": "Igen",
|
||||||
"maybe_later": "Talán Később",
|
"maybe_later": "Talán később",
|
||||||
"cloud_save": "Mentés felhőben",
|
"cloud_save": "Mentés felhőben",
|
||||||
"cloud_save_description": "Mentsd el az előrehaladásod a felhőben, majd folytasd egy másik eszközön",
|
"cloud_save_description": "Mentsd el az előrehaladásod a felhőben, majd folytasd egy másik eszközön",
|
||||||
"backups": "Biztonsági másolatok",
|
"backups": "Biztonsági másolatok",
|
||||||
@@ -356,13 +356,18 @@
|
|||||||
"delete_review_modal_title": "Biztos vagy abban hogy törölni szeretnéd a véleményed?",
|
"delete_review_modal_title": "Biztos vagy abban hogy törölni szeretnéd a véleményed?",
|
||||||
"delete_review_modal_description": "Ez a lépés nem vonható vissza.",
|
"delete_review_modal_description": "Ez a lépés nem vonható vissza.",
|
||||||
"delete_review_modal_delete_button": "Törlés",
|
"delete_review_modal_delete_button": "Törlés",
|
||||||
"delete_review_modal_cancel_button": "Mégse"
|
"delete_review_modal_cancel_button": "Mégse",
|
||||||
|
"vote_failed": "A szavazatod nem regisztrálódott. Kérlek próbáld újra.",
|
||||||
|
"show_original": "Eredeti megjelenítése",
|
||||||
|
"show_translation": "Fordítás megjelenítése",
|
||||||
|
"show_original_translated_from": "Eredeti megjelenítése (fordítva: {{language}})",
|
||||||
|
"hide_original": "Eredeti elrejtése"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Hydra Aktiválása",
|
"title": "Hydra Aktiválása",
|
||||||
"installation_id": "Telepítési Azonosító:",
|
"installation_id": "Telepítési Azonosító:",
|
||||||
"enter_activation_code": "Írd be az aktiválási kódod",
|
"enter_activation_code": "Írd be az aktiválási kódod",
|
||||||
"message": "Ha nem tudod hol kérdezz efelől, akkor nem kéne ilyened legyen.",
|
"message": "Ha nem tudod merre kérdezz efelől, akkor nem kéne ilyened legyen.",
|
||||||
"activate": "Aktiválás",
|
"activate": "Aktiválás",
|
||||||
"loading": "Töltés…"
|
"loading": "Töltés…"
|
||||||
},
|
},
|
||||||
@@ -386,7 +391,7 @@
|
|||||||
"download_in_progress": "Folyamatban lévő",
|
"download_in_progress": "Folyamatban lévő",
|
||||||
"queued_downloads": "Várakozósoron lévő letöltések",
|
"queued_downloads": "Várakozósoron lévő letöltések",
|
||||||
"downloads_completed": "Befejezett",
|
"downloads_completed": "Befejezett",
|
||||||
"queued": "Várakozási sorban",
|
"queued": "Várakozásban",
|
||||||
"no_downloads_title": "Oly üres..",
|
"no_downloads_title": "Oly üres..",
|
||||||
"no_downloads_description": "Még nem töltöttél le semmit a Hydra segítségével, de soha nem késő elkezdeni.",
|
"no_downloads_description": "Még nem töltöttél le semmit a Hydra segítségével, de soha nem késő elkezdeni.",
|
||||||
"checking_files": "Fájlok ellenőrzése…",
|
"checking_files": "Fájlok ellenőrzése…",
|
||||||
@@ -419,20 +424,30 @@
|
|||||||
"debrid_linked_message": "Fiók összekapcsolva: \"{{username}}\" ",
|
"debrid_linked_message": "Fiók összekapcsolva: \"{{username}}\" ",
|
||||||
"save_changes": "Változtatások mentése",
|
"save_changes": "Változtatások mentése",
|
||||||
"changes_saved": "Változtatások sikeresen mentve",
|
"changes_saved": "Változtatások sikeresen mentve",
|
||||||
"download_sources_description": "A Hydra lefogja tölteni a letöltési linkeket a forrásokból. Az URL forrásnak közvetlen linknek kell lennie egy .json fájlhoz, ami tartalmazza a linkeket.",
|
"download_sources_description": "A Hydra lefogja tölteni a letöltési linkeket a forrásokból. Az URL Forrásnak közvetlen linknek kell lennie egy .json fájlhoz, ami tartalmazza a linkeket.",
|
||||||
"validate_download_source": "Érvényesítés",
|
"validate_download_source": "Érvényesítés",
|
||||||
"remove_download_source": "Eltávolítás",
|
"remove_download_source": "Eltávolítás",
|
||||||
"add_download_source": "Forrás hozáadása",
|
"add_download_source": "Forrás hozáadása",
|
||||||
|
"adding": "Hozzáadás…",
|
||||||
|
"failed_add_download_source": "Letöltési forrás hozzáadása sikertelen. Kérlek próbáld újra.",
|
||||||
|
"download_source_already_exists": "Ez a letöltési forrás URL már létezik.",
|
||||||
"download_count_zero": "Nincs letöltési opció",
|
"download_count_zero": "Nincs letöltési opció",
|
||||||
"download_count_one": "{{countFormatted}} letöltési opció",
|
"download_count_one": "{{countFormatted}} letöltési opció",
|
||||||
"download_count_other": "{{countFormatted}} letöltési opció",
|
"download_count_other": "{{countFormatted}} letöltési opció",
|
||||||
"download_source_url": "URL forrás:",
|
"download_source_url": "URL Forrás:",
|
||||||
"add_download_source_description": "Helyezd be a .json fájl URL-jét",
|
"add_download_source_description": "Helyezd be a .json fájl URL-jét",
|
||||||
"download_source_up_to_date": "Naprakész",
|
"download_source_up_to_date": "Naprakész",
|
||||||
"download_source_errored": "Hiba történt",
|
"download_source_errored": "Hiba történt",
|
||||||
|
"download_source_pending_matching": "Frissítés hamarosan",
|
||||||
|
"download_source_matched": "Naprakész",
|
||||||
|
"download_source_matching": "Frissítés..",
|
||||||
|
"download_source_failed": "Hiba",
|
||||||
|
"download_source_no_information": "Nincs elérhető információ",
|
||||||
"sync_download_sources": "Források szinkronizálása",
|
"sync_download_sources": "Források szinkronizálása",
|
||||||
"removed_download_source": "Letöltési forrás eltávolítva",
|
"removed_download_source": "Letöltési forrás eltávolítva",
|
||||||
"removed_download_sources": "Letöltési források eltávolítva",
|
"removed_download_sources": "Letöltési források eltávolítva",
|
||||||
|
"removed_all_download_sources": "Összes letöltési forrás eltávolítva",
|
||||||
|
"download_sources_synced_successfully": "Az összes letöltési forrás szinkronizálva",
|
||||||
"cancel_button_confirmation_delete_all_sources": "Nem",
|
"cancel_button_confirmation_delete_all_sources": "Nem",
|
||||||
"confirm_button_confirmation_delete_all_sources": "Igen, törölj mindent",
|
"confirm_button_confirmation_delete_all_sources": "Igen, törölj mindent",
|
||||||
"title_confirmation_delete_all_sources": "Az összes letöltési forrás törlése",
|
"title_confirmation_delete_all_sources": "Az összes letöltési forrás törlése",
|
||||||
@@ -445,6 +460,7 @@
|
|||||||
"found_download_option_one": "{{countFormatted}} Letöltési opció találva",
|
"found_download_option_one": "{{countFormatted}} Letöltési opció találva",
|
||||||
"found_download_option_other": "{{countFormatted}} Letöltési opciók találva",
|
"found_download_option_other": "{{countFormatted}} Letöltési opciók találva",
|
||||||
"import": "Importálás",
|
"import": "Importálás",
|
||||||
|
"importing": "Importálás...",
|
||||||
"public": "Publikus",
|
"public": "Publikus",
|
||||||
"private": "Privát",
|
"private": "Privát",
|
||||||
"friends_only": "Csak barátok",
|
"friends_only": "Csak barátok",
|
||||||
@@ -462,6 +478,7 @@
|
|||||||
"seed_after_download_complete": "Letöltés utáni seedelés",
|
"seed_after_download_complete": "Letöltés utáni seedelés",
|
||||||
"show_hidden_achievement_description": "Rejtett achievementek leírásának megjelenítése feloldás előtt",
|
"show_hidden_achievement_description": "Rejtett achievementek leírásának megjelenítése feloldás előtt",
|
||||||
"account": "Fiók",
|
"account": "Fiók",
|
||||||
|
"hydra_cloud": "Hydra Cloud",
|
||||||
"no_users_blocked": "Nincsenek letiltott felhasználóid",
|
"no_users_blocked": "Nincsenek letiltott felhasználóid",
|
||||||
"subscription_active_until": "Hydra Cloud előfizetésed aktív, eddig: {{date}}",
|
"subscription_active_until": "Hydra Cloud előfizetésed aktív, eddig: {{date}}",
|
||||||
"manage_subscription": "Előfizetés kezelése",
|
"manage_subscription": "Előfizetés kezelése",
|
||||||
@@ -498,14 +515,14 @@
|
|||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"appearance": "Megjelenés",
|
"appearance": "Megjelenés",
|
||||||
"debrid": "Debrid",
|
"debrid": "Debrid",
|
||||||
"debrid_description": "A Debrid szolgáltatások prémium szolgáltatások amelyek lehetővé teszik, hogy gyorsan letölts különböző fájltároló szolgáltatásokon tárolt fájlokat, csak az internet sebességed szab határt.",
|
"debrid_description": "A Debrid szolgáltatások prémium szolgáltatások amelyek lehetővé teszik, hogy gyorsan letölts különböző fájltároló szolgáltatásokon tárolt fájlokat, és csak az internet sebességed szab határt.",
|
||||||
"enable_torbox": "TorBox bekapcsolása",
|
"enable_torbox": "TorBox bekapcsolása",
|
||||||
"torbox_description": "A TorBox egy olyan premium seedbox szolgáltatás, amely még a piacon elérhető legjobb szerverekkel is felveszi a versenyt.",
|
"torbox_description": "A TorBox egy olyan premium seedbox szolgáltatás, amely még a piacon elérhető legjobb szerverekkel is felveszi a versenyt.",
|
||||||
"torbox_account_linked": "TorBox fiók összekapcsolva",
|
"torbox_account_linked": "TorBox fiók összekapcsolva",
|
||||||
"create_real_debrid_account": "Kattints ide ha még nincs Real-Debrid fiókod",
|
"create_real_debrid_account": "Kattints ide ha még nincs Real-Debrid fiókod",
|
||||||
"create_torbox_account": "Kattints ide ha még nincs TorBox fiókod",
|
"create_torbox_account": "Kattints ide ha még nincs TorBox fiókod",
|
||||||
"real_debrid_account_linked": "Real-Debrid fiók összekapcsolva",
|
"real_debrid_account_linked": "Real-Debrid fiók összekapcsolva",
|
||||||
"name_min_length": "A téma neve legalább 3 karakter hosszú legyen",
|
"name_min_length": "A téma neve legalább 3 karakter hosszú kell legyen",
|
||||||
"import_theme": "Téma importálása",
|
"import_theme": "Téma importálása",
|
||||||
"import_theme_description": "Ezt a témát fogod importálni a Témaáruház-ból: {{theme}}",
|
"import_theme_description": "Ezt a témát fogod importálni a Témaáruház-ból: {{theme}}",
|
||||||
"error_importing_theme": "Hiba lépett fel a téma importálása közben",
|
"error_importing_theme": "Hiba lépett fel a téma importálása közben",
|
||||||
@@ -535,7 +552,9 @@
|
|||||||
"hidden": "Rejtett",
|
"hidden": "Rejtett",
|
||||||
"test_notification": "Értesítés tesztelése",
|
"test_notification": "Értesítés tesztelése",
|
||||||
"notification_preview": "Achievement Értesítés Előnézete",
|
"notification_preview": "Achievement Értesítés Előnézete",
|
||||||
"enable_friend_start_game_notifications": "Amikor egy barátod elkezd játszani egy játékot"
|
"enable_friend_start_game_notifications": "Amikor egy barátod elkezd játszani egy játékot",
|
||||||
|
"autoplay_trailers_on_game_page": "Játékelőzetes automatikus lejátszása a játék oldalán",
|
||||||
|
"hide_to_tray_on_game_start": "Hydra elrejtése játék elindításakor a tálcára"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Letöltés befejezve",
|
"download_complete": "Letöltés befejezve",
|
||||||
@@ -563,10 +582,10 @@
|
|||||||
"available_one": "Elérhető",
|
"available_one": "Elérhető",
|
||||||
"available_other": "Elérhető",
|
"available_other": "Elérhető",
|
||||||
"no_downloads": "Nincs elérhető letöltés",
|
"no_downloads": "Nincs elérhető letöltés",
|
||||||
"calculating": "Feldolgozás"
|
"calculating": "Számítás alatt.."
|
||||||
},
|
},
|
||||||
"binary_not_found_modal": {
|
"binary_not_found_modal": {
|
||||||
"title": "A programok nincsenek telepítve",
|
"title": "Hiányzó programok",
|
||||||
"description": "Wine vagy Lutris futtatható fájlok nem találhatók a rendszereden",
|
"description": "Wine vagy Lutris futtatható fájlok nem találhatók a rendszereden",
|
||||||
"instructions": "Ellenőrízd hogy melyiket kell helyesen telepíteni a Linux disztribúciódra, hogy a játék megfelelően fusson"
|
"instructions": "Ellenőrízd hogy melyiket kell helyesen telepíteni a Linux disztribúciódra, hogy a játék megfelelően fusson"
|
||||||
},
|
},
|
||||||
@@ -585,6 +604,7 @@
|
|||||||
"activity": "Legutóbbi tevékenység",
|
"activity": "Legutóbbi tevékenység",
|
||||||
"library": "Könyvtár",
|
"library": "Könyvtár",
|
||||||
"pinned": "Kitűzve",
|
"pinned": "Kitűzve",
|
||||||
|
"sort_by": "Rendezés:",
|
||||||
"achievements_earned": "Elért achievementek",
|
"achievements_earned": "Elért achievementek",
|
||||||
"played_recently": "Nemrég játszva",
|
"played_recently": "Nemrég játszva",
|
||||||
"playtime": "Játszottidő",
|
"playtime": "Játszottidő",
|
||||||
@@ -654,7 +674,7 @@
|
|||||||
"uploading_banner": "Borítókép feltöltése…",
|
"uploading_banner": "Borítókép feltöltése…",
|
||||||
"background_image_updated": "Borítókép frissítve",
|
"background_image_updated": "Borítókép frissítve",
|
||||||
"stats": "Statisztikák",
|
"stats": "Statisztikák",
|
||||||
"achievements": "achievementek",
|
"achievements": "achievement",
|
||||||
"games": "Játékok",
|
"games": "Játékok",
|
||||||
"top_percentile": "Top {{percentile}}%",
|
"top_percentile": "Top {{percentile}}%",
|
||||||
"ranking_updated_weekly": "A rangsor hetente frissül.",
|
"ranking_updated_weekly": "A rangsor hetente frissül.",
|
||||||
@@ -669,7 +689,7 @@
|
|||||||
"game_added_to_pinned": "Játék hozzáadva a kitűzöttekhez",
|
"game_added_to_pinned": "Játék hozzáadva a kitűzöttekhez",
|
||||||
"karma": "Karma",
|
"karma": "Karma",
|
||||||
"karma_count": "karma",
|
"karma_count": "karma",
|
||||||
"karma_description": "Pozitív értékelésekre kapott pontok alapján"
|
"karma_description": "Pozitív értékelésekkel szerzett pontok"
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Achievement feloldva",
|
"achievement_unlocked": "Achievement feloldva",
|
||||||
@@ -678,7 +698,7 @@
|
|||||||
"unlocked_at": "Feloldva: {{date}}",
|
"unlocked_at": "Feloldva: {{date}}",
|
||||||
"subscription_needed": "A tartalom megtekintéséhez Hydra Cloud előfizetés szükséges",
|
"subscription_needed": "A tartalom megtekintéséhez Hydra Cloud előfizetés szükséges",
|
||||||
"new_achievements_unlocked": "{{achievementCount}} új achievement feloldva {{gameCount}} játékban",
|
"new_achievements_unlocked": "{{achievementCount}} új achievement feloldva {{gameCount}} játékban",
|
||||||
"achievement_progress": "{{unlockedCount}}/{{totalCount}} achievementek",
|
"achievement_progress": "{{unlockedCount}}/{{totalCount}} achievement",
|
||||||
"achievements_unlocked_for_game": "{{achievementCount}} új achievement feloldva itt: {{gameTitle}}",
|
"achievements_unlocked_for_game": "{{achievementCount}} új achievement feloldva itt: {{gameTitle}}",
|
||||||
"hidden_achievement_tooltip": "Ez egy rejtett achievement",
|
"hidden_achievement_tooltip": "Ez egy rejtett achievement",
|
||||||
"achievement_earn_points": "Szerezz be {{points}} pontot ezzel az achievement-el",
|
"achievement_earn_points": "Szerezz be {{points}} pontot ezzel az achievement-el",
|
||||||
|
|||||||
@@ -317,6 +317,7 @@
|
|||||||
"sort_lowest_score": "Menor Nota",
|
"sort_lowest_score": "Menor Nota",
|
||||||
"sort_most_voted": "Mais Votadas",
|
"sort_most_voted": "Mais Votadas",
|
||||||
"no_reviews_yet": "Ainda não há avaliações",
|
"no_reviews_yet": "Ainda não há avaliações",
|
||||||
|
"review_played_for": "Jogado por",
|
||||||
"be_first_to_review": "Seja o primeiro a compartilhar seus pensamentos sobre este jogo!",
|
"be_first_to_review": "Seja o primeiro a compartilhar seus pensamentos sobre este jogo!",
|
||||||
"rating": "Avaliação",
|
"rating": "Avaliação",
|
||||||
"rating_stats": "Avaliação",
|
"rating_stats": "Avaliação",
|
||||||
@@ -349,7 +350,10 @@
|
|||||||
"show_translation": "Mostrar tradução",
|
"show_translation": "Mostrar tradução",
|
||||||
"show_original_translated_from": "Mostrar original (traduzido do {{language}})",
|
"show_original_translated_from": "Mostrar original (traduzido do {{language}})",
|
||||||
"hide_original": "Ocultar original",
|
"hide_original": "Ocultar original",
|
||||||
"rating_count": "Avaliação"
|
"rating_count": "Avaliação",
|
||||||
|
"review_from_blocked_user": "Avaliação de usuário bloqueado",
|
||||||
|
"show": "Mostrar",
|
||||||
|
"hide": "Ocultar"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Ativação",
|
"title": "Ativação",
|
||||||
@@ -416,6 +420,9 @@
|
|||||||
"validate_download_source": "Validar",
|
"validate_download_source": "Validar",
|
||||||
"remove_download_source": "Remover",
|
"remove_download_source": "Remover",
|
||||||
"add_download_source": "Adicionar fonte",
|
"add_download_source": "Adicionar fonte",
|
||||||
|
"adding": "Adicionando…",
|
||||||
|
"failed_add_download_source": "Falha ao adicionar fonte de download. Tente novamente.",
|
||||||
|
"download_source_already_exists": "Esta URL de fonte de download já existe.",
|
||||||
"download_count_zero": "Sem downloads na lista",
|
"download_count_zero": "Sem downloads na lista",
|
||||||
"download_count_one": "{{countFormatted}} download na lista",
|
"download_count_one": "{{countFormatted}} download na lista",
|
||||||
"download_count_other": "{{countFormatted}} downloads na lista",
|
"download_count_other": "{{countFormatted}} downloads na lista",
|
||||||
@@ -423,7 +430,13 @@
|
|||||||
"add_download_source_description": "Insira a URL contendo o arquivo .json",
|
"add_download_source_description": "Insira a URL contendo o arquivo .json",
|
||||||
"download_source_up_to_date": "Sincronizada",
|
"download_source_up_to_date": "Sincronizada",
|
||||||
"download_source_errored": "Falhou",
|
"download_source_errored": "Falhou",
|
||||||
|
"download_source_pending_matching": "Importando em breve",
|
||||||
|
"download_source_matched": "Sincronizada",
|
||||||
|
"download_source_matching": "Sincronizando",
|
||||||
|
"download_source_failed": "Erro",
|
||||||
|
"download_source_no_information": "Sem informações",
|
||||||
"sync_download_sources": "Sincronizar",
|
"sync_download_sources": "Sincronizar",
|
||||||
|
"download_sources_synced_successfully": "Fontes de download sincronizadas",
|
||||||
"removed_download_source": "Fonte removida",
|
"removed_download_source": "Fonte removida",
|
||||||
"removed_download_sources": "Fontes removidas",
|
"removed_download_sources": "Fontes removidas",
|
||||||
"cancel_button_confirmation_delete_all_sources": "Não",
|
"cancel_button_confirmation_delete_all_sources": "Não",
|
||||||
@@ -529,7 +542,9 @@
|
|||||||
"hidden": "Oculta",
|
"hidden": "Oculta",
|
||||||
"test_notification": "Testar notificação",
|
"test_notification": "Testar notificação",
|
||||||
"notification_preview": "Prévia da Notificação de Conquistas",
|
"notification_preview": "Prévia da Notificação de Conquistas",
|
||||||
"enable_friend_start_game_notifications": "Quando um amigo iniciar um jogo"
|
"enable_friend_start_game_notifications": "Quando um amigo iniciar um jogo",
|
||||||
|
"autoplay_trailers_on_game_page": "Reproduzir trailers automaticamente na página do jogo",
|
||||||
|
"hide_to_tray_on_game_start": "Ocultar o Hydra na bandeja ao iniciar um jogo"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Download concluído",
|
"download_complete": "Download concluído",
|
||||||
@@ -682,7 +697,11 @@
|
|||||||
"karma": "Karma",
|
"karma": "Karma",
|
||||||
"karma_count": "karma",
|
"karma_count": "karma",
|
||||||
"karma_description": "Ganho a partir de curtidas positivas em avaliações",
|
"karma_description": "Ganho a partir de curtidas positivas em avaliações",
|
||||||
"manual_playtime_tooltip": "Este tempo de jogo foi atualizado manualmente"
|
"manual_playtime_tooltip": "Este tempo de jogo foi atualizado manualmente",
|
||||||
|
"user_reviews": "Avaliações",
|
||||||
|
"loading_reviews": "Carregando avaliações...",
|
||||||
|
"no_reviews": "Ainda não há avaliações",
|
||||||
|
"delete_review": "Excluir avaliação"
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Conquista desbloqueada",
|
"achievement_unlocked": "Conquista desbloqueada",
|
||||||
|
|||||||
@@ -180,7 +180,11 @@
|
|||||||
"download_error_not_cached_on_torbox": "Este download não está disponível no TorBox e a verificação do status do download não está disponível.",
|
"download_error_not_cached_on_torbox": "Este download não está disponível no TorBox e a verificação do status do download não está disponível.",
|
||||||
"game_removed_from_favorites": "Jogo removido dos favoritos",
|
"game_removed_from_favorites": "Jogo removido dos favoritos",
|
||||||
"game_added_to_favorites": "Jogo adicionado aos favoritos",
|
"game_added_to_favorites": "Jogo adicionado aos favoritos",
|
||||||
"create_start_menu_shortcut": "Criar atalho no Menu Iniciar"
|
"create_start_menu_shortcut": "Criar atalho no Menu Iniciar",
|
||||||
|
"review_from_blocked_user": "Avaliação de utilizador bloqueado",
|
||||||
|
"show": "Mostrar",
|
||||||
|
"hide": "Ocultar",
|
||||||
|
"review_played_for": "Jogado por"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Ativação",
|
"title": "Ativação",
|
||||||
@@ -252,7 +256,13 @@
|
|||||||
"add_download_source_description": "Insere o URL que contém o ficheiro .json",
|
"add_download_source_description": "Insere o URL que contém o ficheiro .json",
|
||||||
"download_source_up_to_date": "Sincronizada",
|
"download_source_up_to_date": "Sincronizada",
|
||||||
"download_source_errored": "Falhou",
|
"download_source_errored": "Falhou",
|
||||||
|
"download_source_pending_matching": "A atualizar em breve",
|
||||||
|
"download_source_matched": "Atualizado",
|
||||||
|
"download_source_matching": "A atualizar",
|
||||||
|
"download_source_failed": "Erro",
|
||||||
|
"download_source_no_information": "Sem informações",
|
||||||
"sync_download_sources": "Sincronizar",
|
"sync_download_sources": "Sincronizar",
|
||||||
|
"download_sources_synced_successfully": "Fontes de download sincronizadas",
|
||||||
"removed_download_source": "Fonte removida",
|
"removed_download_source": "Fonte removida",
|
||||||
"cancel_button_confirmation_delete_all_sources": "Não",
|
"cancel_button_confirmation_delete_all_sources": "Não",
|
||||||
"confirm_button_confirmation_delete_all_sources": "Sim, apague tudo",
|
"confirm_button_confirmation_delete_all_sources": "Sim, apague tudo",
|
||||||
@@ -460,7 +470,11 @@
|
|||||||
"achievements_unlocked": "Conquistas desbloqueadas",
|
"achievements_unlocked": "Conquistas desbloqueadas",
|
||||||
"earned_points": "Pontos ganhos",
|
"earned_points": "Pontos ganhos",
|
||||||
"show_achievements_on_profile": "Mostre as suas conquistas no perfil",
|
"show_achievements_on_profile": "Mostre as suas conquistas no perfil",
|
||||||
"show_points_on_profile": "Mostre os seus pontos ganhos no perfil"
|
"show_points_on_profile": "Mostre os seus pontos ganhos no perfil",
|
||||||
|
"user_reviews": "Avaliações",
|
||||||
|
"loading_reviews": "A carregar avaliações...",
|
||||||
|
"no_reviews": "Ainda não há avaliações",
|
||||||
|
"delete_review": "Eliminar avaliação"
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Conquista desbloqueada",
|
"achievement_unlocked": "Conquista desbloqueada",
|
||||||
|
|||||||
@@ -212,6 +212,7 @@
|
|||||||
"stats": "Статистика",
|
"stats": "Статистика",
|
||||||
"download_count": "Загрузки",
|
"download_count": "Загрузки",
|
||||||
"player_count": "Активные игроки",
|
"player_count": "Активные игроки",
|
||||||
|
"rating_count": "Оценка",
|
||||||
"download_error": "Этот вариант загрузки недоступен",
|
"download_error": "Этот вариант загрузки недоступен",
|
||||||
"download": "Скачать",
|
"download": "Скачать",
|
||||||
"executable_path_in_use": "Исполняемый файл уже используется \"{{game}}\"",
|
"executable_path_in_use": "Исполняемый файл уже используется \"{{game}}\"",
|
||||||
@@ -226,6 +227,7 @@
|
|||||||
"write_review_placeholder": "Поделитесь своими мыслями об этой игре...",
|
"write_review_placeholder": "Поделитесь своими мыслями об этой игре...",
|
||||||
"sort_newest": "Сначала новые",
|
"sort_newest": "Сначала новые",
|
||||||
"no_reviews_yet": "Пока нет отзывов",
|
"no_reviews_yet": "Пока нет отзывов",
|
||||||
|
"review_played_for": "Играли",
|
||||||
"be_first_to_review": "Станьте первым, кто поделится своими мыслями об этой игре!",
|
"be_first_to_review": "Станьте первым, кто поделится своими мыслями об этой игре!",
|
||||||
"sort_oldest": "Сначала старые",
|
"sort_oldest": "Сначала старые",
|
||||||
"sort_highest_score": "Высший балл",
|
"sort_highest_score": "Высший балл",
|
||||||
@@ -252,17 +254,6 @@
|
|||||||
"would_you_recommend_this_game": "Хотите оставить отзыв об этой игре?",
|
"would_you_recommend_this_game": "Хотите оставить отзыв об этой игре?",
|
||||||
"yes": "Да",
|
"yes": "Да",
|
||||||
"maybe_later": "Возможно позже",
|
"maybe_later": "Возможно позже",
|
||||||
"rating_count": "Оценка",
|
|
||||||
"delete_review": "Удалить отзыв",
|
|
||||||
"remove_review": "Удалить отзыв",
|
|
||||||
"delete_review_modal_title": "Вы уверены, что хотите удалить свой отзыв?",
|
|
||||||
"delete_review_modal_description": "Это действие нельзя отменить.",
|
|
||||||
"delete_review_modal_delete_button": "Удалить",
|
|
||||||
"delete_review_modal_cancel_button": "Отмена",
|
|
||||||
"show_original": "Показать оригинал",
|
|
||||||
"show_translation": "Показать перевод",
|
|
||||||
"show_original_translated_from": "Показать оригинал (переведено с {{language}})",
|
|
||||||
"hide_original": "Скрыть оригинал",
|
|
||||||
"cloud_save": "Облачное сохранение",
|
"cloud_save": "Облачное сохранение",
|
||||||
"cloud_save_description": "Сохраняйте ваш прогресс в облаке и продолжайте играть на любом устройстве",
|
"cloud_save_description": "Сохраняйте ваш прогресс в облаке и продолжайте играть на любом устройстве",
|
||||||
"backups": "Резервные копии",
|
"backups": "Резервные копии",
|
||||||
@@ -360,7 +351,21 @@
|
|||||||
"caption": "Субтитры",
|
"caption": "Субтитры",
|
||||||
"audio": "Аудио",
|
"audio": "Аудио",
|
||||||
"filter_by_source": "Фильтр по источнику",
|
"filter_by_source": "Фильтр по источнику",
|
||||||
"no_repacks_found": "Источники для этой игры не найдены"
|
"no_repacks_found": "Источники для этой игры не найдены",
|
||||||
|
"show": "Показать",
|
||||||
|
"hide": "Скрыть",
|
||||||
|
"delete_review": "Удалить отзыв",
|
||||||
|
"remove_review": "Удалить отзыв",
|
||||||
|
"delete_review_modal_title": "Вы уверены, что хотите удалить свой отзыв?",
|
||||||
|
"delete_review_modal_description": "Это действие нельзя отменить.",
|
||||||
|
"delete_review_modal_delete_button": "Удалить",
|
||||||
|
"delete_review_modal_cancel_button": "Отмена",
|
||||||
|
"vote_failed": "Не удалось зарегистрировать ваш голос. Пожалуйста, попробуйте снова.",
|
||||||
|
"show_original": "Показать оригинал",
|
||||||
|
"show_translation": "Показать перевод",
|
||||||
|
"show_original_translated_from": "Показать оригинал (переведено с {{language}})",
|
||||||
|
"hide_original": "Скрыть оригинал",
|
||||||
|
"review_from_blocked_user": "Отзыв от заблокированного пользователя"
|
||||||
},
|
},
|
||||||
"activation": {
|
"activation": {
|
||||||
"title": "Активировать Hydra",
|
"title": "Активировать Hydra",
|
||||||
@@ -427,6 +432,9 @@
|
|||||||
"validate_download_source": "Проверить",
|
"validate_download_source": "Проверить",
|
||||||
"remove_download_source": "Удалить",
|
"remove_download_source": "Удалить",
|
||||||
"add_download_source": "Добавить источник",
|
"add_download_source": "Добавить источник",
|
||||||
|
"adding": "Добавление…",
|
||||||
|
"failed_add_download_source": "Не удалось добавить источник. Пожалуйста, попробуйте снова.",
|
||||||
|
"download_source_already_exists": "Этот URL источника уже существует.",
|
||||||
"download_count_zero": "В списке нет загрузок",
|
"download_count_zero": "В списке нет загрузок",
|
||||||
"download_count_one": "{{countFormatted}} загрузка в списке",
|
"download_count_one": "{{countFormatted}} загрузка в списке",
|
||||||
"download_count_other": "{{countFormatted}} загрузок в списке",
|
"download_count_other": "{{countFormatted}} загрузок в списке",
|
||||||
@@ -434,9 +442,16 @@
|
|||||||
"add_download_source_description": "Вставьте ссылку на .json-файл",
|
"add_download_source_description": "Вставьте ссылку на .json-файл",
|
||||||
"download_source_up_to_date": "Обновлён",
|
"download_source_up_to_date": "Обновлён",
|
||||||
"download_source_errored": "Ошибка",
|
"download_source_errored": "Ошибка",
|
||||||
|
"download_source_pending_matching": "Скоро обновится",
|
||||||
|
"download_source_matched": "Обновлен",
|
||||||
|
"download_source_matching": "Обновление",
|
||||||
|
"download_source_failed": "Ошибка",
|
||||||
|
"download_source_no_information": "Информация отсутствует",
|
||||||
"sync_download_sources": "Обновить источники",
|
"sync_download_sources": "Обновить источники",
|
||||||
"removed_download_source": "Источник удален",
|
"removed_download_source": "Источник удален",
|
||||||
"removed_download_sources": "Источники удалены",
|
"removed_download_sources": "Источники удалены",
|
||||||
|
"removed_all_download_sources": "Все источники удалены",
|
||||||
|
"download_sources_synced_successfully": "Все источники синхронизированы",
|
||||||
"cancel_button_confirmation_delete_all_sources": "Нет",
|
"cancel_button_confirmation_delete_all_sources": "Нет",
|
||||||
"confirm_button_confirmation_delete_all_sources": "Да, удалить все",
|
"confirm_button_confirmation_delete_all_sources": "Да, удалить все",
|
||||||
"title_confirmation_delete_all_sources": "Удалить все источники",
|
"title_confirmation_delete_all_sources": "Удалить все источники",
|
||||||
@@ -467,6 +482,7 @@
|
|||||||
"seed_after_download_complete": "Раздавать после завершения загрузки",
|
"seed_after_download_complete": "Раздавать после завершения загрузки",
|
||||||
"show_hidden_achievement_description": "Показывать описание скрытых достижений перед их получением",
|
"show_hidden_achievement_description": "Показывать описание скрытых достижений перед их получением",
|
||||||
"account": "Аккаунт",
|
"account": "Аккаунт",
|
||||||
|
"hydra_cloud": "Hydra Cloud",
|
||||||
"no_users_blocked": "У вас нет заблокированных пользователей",
|
"no_users_blocked": "У вас нет заблокированных пользователей",
|
||||||
"subscription_active_until": "Ваша подписка на Hydra Cloud активна до {{date}}",
|
"subscription_active_until": "Ваша подписка на Hydra Cloud активна до {{date}}",
|
||||||
"manage_subscription": "Управлять подпиской",
|
"manage_subscription": "Управлять подпиской",
|
||||||
@@ -540,7 +556,9 @@
|
|||||||
"hidden": "Скрытый",
|
"hidden": "Скрытый",
|
||||||
"test_notification": "Тестовое уведомление",
|
"test_notification": "Тестовое уведомление",
|
||||||
"notification_preview": "Предварительный просмотр уведомления о достижении",
|
"notification_preview": "Предварительный просмотр уведомления о достижении",
|
||||||
"enable_friend_start_game_notifications": "Когда друг начинает играть в игру"
|
"enable_friend_start_game_notifications": "Когда друг начинает играть в игру",
|
||||||
|
"autoplay_trailers_on_game_page": "Автоматически начинать воспроизведение трейлеров на странице игры",
|
||||||
|
"hide_to_tray_on_game_start": "Скрывать Hydra в трей при запуске игры"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Загрузка завершена",
|
"download_complete": "Загрузка завершена",
|
||||||
@@ -590,6 +608,7 @@
|
|||||||
"activity": "Недавняя активность",
|
"activity": "Недавняя активность",
|
||||||
"library": "Библиотека",
|
"library": "Библиотека",
|
||||||
"pinned": "Закрепленные",
|
"pinned": "Закрепленные",
|
||||||
|
"sort_by": "Сортировать по:",
|
||||||
"achievements_earned": "Заработанные достижения",
|
"achievements_earned": "Заработанные достижения",
|
||||||
"played_recently": "Недавно сыгранные",
|
"played_recently": "Недавно сыгранные",
|
||||||
"playtime": "Время игры",
|
"playtime": "Время игры",
|
||||||
@@ -674,7 +693,11 @@
|
|||||||
"game_added_to_pinned": "Игра добавлена в закрепленные",
|
"game_added_to_pinned": "Игра добавлена в закрепленные",
|
||||||
"karma": "Карма",
|
"karma": "Карма",
|
||||||
"karma_count": "карма",
|
"karma_count": "карма",
|
||||||
"karma_description": "Заработана положительными оценками отзывов"
|
"karma_description": "Заработана положительными оценками отзывов",
|
||||||
|
"user_reviews": "Отзывы",
|
||||||
|
"loading_reviews": "Загрузка отзывов...",
|
||||||
|
"no_reviews": "Пока нет отзывов",
|
||||||
|
"delete_review": "Удалить отзыв"
|
||||||
},
|
},
|
||||||
"achievement": {
|
"achievement": {
|
||||||
"achievement_unlocked": "Достижение разблокировано",
|
"achievement_unlocked": "Достижение разблокировано",
|
||||||
|
|||||||
@@ -1,76 +1,50 @@
|
|||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
|
import { HydraApi } from "@main/services/hydra-api";
|
||||||
import { HydraApi, logger } from "@main/services";
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
import { importDownloadSourceToLocal } from "./helpers";
|
import type { DownloadSource } from "@types";
|
||||||
|
import { logger } from "@main/services";
|
||||||
|
|
||||||
const addDownloadSource = async (
|
const addDownloadSource = async (
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
_event: Electron.IpcMainInvokeEvent,
|
||||||
url: string
|
url: string
|
||||||
) => {
|
) => {
|
||||||
const result = await importDownloadSourceToLocal(url, true);
|
try {
|
||||||
if (!result) {
|
const existingSources = await downloadSourcesSublevel.values().all();
|
||||||
throw new Error("Failed to import download source");
|
const urlExists = existingSources.some((source) => source.url === url);
|
||||||
}
|
|
||||||
|
|
||||||
// Verify that repacks were actually written to the database (read-after-write)
|
if (urlExists) {
|
||||||
// This ensures all async operations are complete before proceeding
|
throw new Error("Download source with this URL already exists");
|
||||||
let repackCount = 0;
|
|
||||||
for await (const [, repack] of repacksSublevel.iterator()) {
|
|
||||||
if (repack.downloadSourceId === result.id) {
|
|
||||||
repackCount++;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
await HydraApi.post("/profile/download-sources", {
|
const downloadSource = await HydraApi.post<DownloadSource>(
|
||||||
urls: [url],
|
"/download-sources",
|
||||||
});
|
{
|
||||||
|
url,
|
||||||
|
},
|
||||||
|
{ needsAuth: false }
|
||||||
|
);
|
||||||
|
|
||||||
const { fingerprint } = await HydraApi.put<{ fingerprint: string }>(
|
if (HydraApi.isLoggedIn() && HydraApi.hasActiveSubscription()) {
|
||||||
"/download-sources",
|
try {
|
||||||
{
|
await HydraApi.post("/profile/download-sources", {
|
||||||
objectIds: result.objectIds,
|
urls: [url],
|
||||||
},
|
});
|
||||||
{ needsAuth: false }
|
} catch (error) {
|
||||||
);
|
logger.error("Failed to add download source to profile:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Update the source with fingerprint
|
await downloadSourcesSublevel.put(downloadSource.id, {
|
||||||
const updatedSource = await downloadSourcesSublevel.get(`${result.id}`);
|
...downloadSource,
|
||||||
if (updatedSource) {
|
isRemote: true,
|
||||||
await downloadSourcesSublevel.put(`${result.id}`, {
|
createdAt: new Date().toISOString(),
|
||||||
...updatedSource,
|
|
||||||
fingerprint,
|
|
||||||
updatedAt: new Date(),
|
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
// Final verification: ensure the source with fingerprint is persisted
|
return downloadSource;
|
||||||
const finalSource = await downloadSourcesSublevel.get(`${result.id}`);
|
} catch (error) {
|
||||||
if (!finalSource || !finalSource.fingerprint) {
|
logger.error("Failed to add download source:", error);
|
||||||
throw new Error("Failed to persist download source with fingerprint");
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify repacks still exist after fingerprint update
|
|
||||||
let finalRepackCount = 0;
|
|
||||||
for await (const [, repack] of repacksSublevel.iterator()) {
|
|
||||||
if (repack.downloadSourceId === result.id) {
|
|
||||||
finalRepackCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finalRepackCount !== repackCount) {
|
|
||||||
logger.warn(
|
|
||||||
`Repack count mismatch! Before: ${repackCount}, After: ${finalRepackCount}`
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
logger.info(
|
|
||||||
`Final verification passed: ${finalRepackCount} repacks confirmed`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
...result,
|
|
||||||
fingerprint,
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
registerEvent("addDownloadSource", addDownloadSource);
|
registerEvent("addDownloadSource", addDownloadSource);
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesSublevel } from "@main/level";
|
|
||||||
|
|
||||||
const checkDownloadSourceExists = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
|
||||||
url: string
|
|
||||||
): Promise<boolean> => {
|
|
||||||
for await (const [, source] of downloadSourcesSublevel.iterator()) {
|
|
||||||
if (source.url === url) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("checkDownloadSourceExists", checkDownloadSourceExists);
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
|
|
||||||
import { invalidateIdCaches } from "./helpers";
|
|
||||||
|
|
||||||
const deleteAllDownloadSources = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent
|
|
||||||
) => {
|
|
||||||
await Promise.all([repacksSublevel.clear(), downloadSourcesSublevel.clear()]);
|
|
||||||
|
|
||||||
invalidateIdCaches();
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("deleteAllDownloadSources", deleteAllDownloadSources);
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
|
|
||||||
import { invalidateIdCaches } from "./helpers";
|
|
||||||
|
|
||||||
const deleteDownloadSource = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
|
||||||
id: number
|
|
||||||
) => {
|
|
||||||
const repacksToDelete: string[] = [];
|
|
||||||
|
|
||||||
for await (const [key, repack] of repacksSublevel.iterator()) {
|
|
||||||
if (repack.downloadSourceId === id) {
|
|
||||||
repacksToDelete.push(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const batch = repacksSublevel.batch();
|
|
||||||
for (const key of repacksToDelete) {
|
|
||||||
batch.del(key);
|
|
||||||
}
|
|
||||||
await batch.write();
|
|
||||||
|
|
||||||
await downloadSourcesSublevel.del(`${id}`);
|
|
||||||
|
|
||||||
invalidateIdCaches();
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("deleteDownloadSource", deleteDownloadSource);
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesSublevel, DownloadSource } from "@main/level";
|
|
||||||
|
|
||||||
const getDownloadSourcesList = async (_event: Electron.IpcMainInvokeEvent) => {
|
|
||||||
const sources: DownloadSource[] = [];
|
|
||||||
|
|
||||||
for await (const [, source] of downloadSourcesSublevel.iterator()) {
|
|
||||||
sources.push(source);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Sort by createdAt descending
|
|
||||||
sources.sort(
|
|
||||||
(a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()
|
|
||||||
);
|
|
||||||
|
|
||||||
return sources;
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("getDownloadSourcesList", getDownloadSourcesList);
|
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
import { HydraApi } from "@main/services";
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
|
import { orderBy } from "lodash-es";
|
||||||
|
|
||||||
const getDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
|
const getDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
|
||||||
return HydraApi.get("/profile/download-sources");
|
const allSources = await downloadSourcesSublevel.values().all();
|
||||||
|
return orderBy(allSources, "createdAt", "desc");
|
||||||
};
|
};
|
||||||
|
|
||||||
registerEvent("getDownloadSources", getDownloadSources);
|
registerEvent("getDownloadSources", getDownloadSources);
|
||||||
|
|||||||
@@ -1,367 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
import { z } from "zod";
|
|
||||||
import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
|
|
||||||
import { DownloadSourceStatus } from "@shared";
|
|
||||||
import crypto from "node:crypto";
|
|
||||||
import { logger, ResourceCache } from "@main/services";
|
|
||||||
|
|
||||||
export const downloadSourceSchema = z.object({
|
|
||||||
name: z.string().max(255),
|
|
||||||
downloads: z.array(
|
|
||||||
z.object({
|
|
||||||
title: z.string().max(255),
|
|
||||||
uris: z.array(z.string()),
|
|
||||||
uploadDate: z.string().max(255),
|
|
||||||
fileSize: z.string().max(255),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type TitleHashMapping = Record<string, number[]>;
|
|
||||||
|
|
||||||
let titleHashMappingCache: TitleHashMapping | null = null;
|
|
||||||
|
|
||||||
export const getTitleHashMapping = async (): Promise<TitleHashMapping> => {
|
|
||||||
if (titleHashMappingCache) {
|
|
||||||
return titleHashMappingCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const cached =
|
|
||||||
ResourceCache.getCachedData<TitleHashMapping>("sources-manifest");
|
|
||||||
if (cached) {
|
|
||||||
titleHashMappingCache = cached;
|
|
||||||
return cached;
|
|
||||||
}
|
|
||||||
|
|
||||||
const fetched = await ResourceCache.fetchAndCache<TitleHashMapping>(
|
|
||||||
"sources-manifest",
|
|
||||||
"https://cdn.losbroxas.org/sources-manifest.json",
|
|
||||||
10000
|
|
||||||
);
|
|
||||||
titleHashMappingCache = fetched;
|
|
||||||
return fetched;
|
|
||||||
} catch (error) {
|
|
||||||
logger.error("Failed to fetch title hash mapping:", error);
|
|
||||||
return {} as TitleHashMapping;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export const hashTitle = (title: string): string => {
|
|
||||||
return crypto.createHash("sha256").update(title).digest("hex");
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SteamGamesByLetter = Record<string, { id: string; name: string }[]>;
|
|
||||||
export type FormattedSteamGame = {
|
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
formattedName: string;
|
|
||||||
};
|
|
||||||
export type FormattedSteamGamesByLetter = Record<string, FormattedSteamGame[]>;
|
|
||||||
|
|
||||||
export const formatName = (name: string) => {
|
|
||||||
return name
|
|
||||||
.normalize("NFD")
|
|
||||||
.replaceAll(/[\u0300-\u036f]/g, "")
|
|
||||||
.toLowerCase()
|
|
||||||
.replaceAll(/[^a-z0-9]/g, "");
|
|
||||||
};
|
|
||||||
|
|
||||||
export const formatRepackName = (name: string) => {
|
|
||||||
return formatName(name.replace("[DL]", ""));
|
|
||||||
};
|
|
||||||
|
|
||||||
interface DownloadSource {
|
|
||||||
id: number;
|
|
||||||
url: string;
|
|
||||||
name: string;
|
|
||||||
etag: string | null;
|
|
||||||
status: number;
|
|
||||||
downloadCount: number;
|
|
||||||
objectIds: string[];
|
|
||||||
fingerprint?: string;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
}
|
|
||||||
|
|
||||||
const getDownloadSourcesMap = async (): Promise<
|
|
||||||
Map<string, DownloadSource>
|
|
||||||
> => {
|
|
||||||
const map = new Map();
|
|
||||||
for await (const [key, source] of downloadSourcesSublevel.iterator()) {
|
|
||||||
map.set(key, source);
|
|
||||||
}
|
|
||||||
|
|
||||||
return map;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const checkUrlExists = async (url: string): Promise<boolean> => {
|
|
||||||
const sources = await getDownloadSourcesMap();
|
|
||||||
for (const source of sources.values()) {
|
|
||||||
if (source.url === url) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
let steamGamesFormattedCache: FormattedSteamGamesByLetter | null = null;
|
|
||||||
|
|
||||||
export const getSteamGames = async (): Promise<FormattedSteamGamesByLetter> => {
|
|
||||||
if (steamGamesFormattedCache) {
|
|
||||||
return steamGamesFormattedCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
let steamGames: SteamGamesByLetter;
|
|
||||||
|
|
||||||
const cached = ResourceCache.getCachedData<SteamGamesByLetter>(
|
|
||||||
"steam-games-by-letter"
|
|
||||||
);
|
|
||||||
if (cached) {
|
|
||||||
steamGames = cached;
|
|
||||||
} else {
|
|
||||||
steamGames = await ResourceCache.fetchAndCache<SteamGamesByLetter>(
|
|
||||||
"steam-games-by-letter",
|
|
||||||
`${import.meta.env.MAIN_VITE_EXTERNAL_RESOURCES_URL}/steam-games-by-letter.json`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const formattedData: FormattedSteamGamesByLetter = {};
|
|
||||||
for (const [letter, games] of Object.entries(steamGames)) {
|
|
||||||
formattedData[letter] = games.map((game) => ({
|
|
||||||
...game,
|
|
||||||
formattedName: formatName(game.name),
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
steamGamesFormattedCache = formattedData;
|
|
||||||
return formattedData;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SublevelIterator = AsyncIterable<[string, { id: number }]>;
|
|
||||||
|
|
||||||
export interface SublevelWithId {
|
|
||||||
iterator: () => SublevelIterator;
|
|
||||||
}
|
|
||||||
|
|
||||||
let maxRepackId: number | null = null;
|
|
||||||
let maxDownloadSourceId: number | null = null;
|
|
||||||
|
|
||||||
export const getNextId = async (sublevel: SublevelWithId): Promise<number> => {
|
|
||||||
const isRepackSublevel = sublevel === repacksSublevel;
|
|
||||||
const isDownloadSourceSublevel = sublevel === downloadSourcesSublevel;
|
|
||||||
|
|
||||||
if (isRepackSublevel && maxRepackId !== null) {
|
|
||||||
return ++maxRepackId;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isDownloadSourceSublevel && maxDownloadSourceId !== null) {
|
|
||||||
return ++maxDownloadSourceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
let maxId = 0;
|
|
||||||
for await (const [, value] of sublevel.iterator()) {
|
|
||||||
if (value.id > maxId) {
|
|
||||||
maxId = value.id;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isRepackSublevel) {
|
|
||||||
maxRepackId = maxId;
|
|
||||||
} else if (isDownloadSourceSublevel) {
|
|
||||||
maxDownloadSourceId = maxId;
|
|
||||||
}
|
|
||||||
|
|
||||||
return maxId + 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const invalidateIdCaches = () => {
|
|
||||||
maxRepackId = null;
|
|
||||||
maxDownloadSourceId = null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const addNewDownloads = async (
|
|
||||||
downloadSource: { id: number; name: string },
|
|
||||||
downloads: z.infer<typeof downloadSourceSchema>["downloads"],
|
|
||||||
steamGames: FormattedSteamGamesByLetter
|
|
||||||
) => {
|
|
||||||
const now = new Date();
|
|
||||||
const objectIdsOnSource = new Set<string>();
|
|
||||||
|
|
||||||
let nextRepackId = await getNextId(repacksSublevel);
|
|
||||||
|
|
||||||
const batch = repacksSublevel.batch();
|
|
||||||
|
|
||||||
const titleHashMapping = await getTitleHashMapping();
|
|
||||||
let hashMatchCount = 0;
|
|
||||||
let fuzzyMatchCount = 0;
|
|
||||||
let noMatchCount = 0;
|
|
||||||
|
|
||||||
for (const download of downloads) {
|
|
||||||
let objectIds: string[] = [];
|
|
||||||
let usedHashMatch = false;
|
|
||||||
|
|
||||||
const titleHash = hashTitle(download.title);
|
|
||||||
const steamIdsFromHash = titleHashMapping[titleHash];
|
|
||||||
|
|
||||||
if (steamIdsFromHash && steamIdsFromHash.length > 0) {
|
|
||||||
hashMatchCount++;
|
|
||||||
usedHashMatch = true;
|
|
||||||
|
|
||||||
objectIds = steamIdsFromHash.map(String);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!usedHashMatch) {
|
|
||||||
let gamesInSteam: FormattedSteamGame[] = [];
|
|
||||||
const formattedTitle = formatRepackName(download.title);
|
|
||||||
|
|
||||||
if (formattedTitle && formattedTitle.length > 0) {
|
|
||||||
const [firstLetter] = formattedTitle;
|
|
||||||
const games = steamGames[firstLetter] || [];
|
|
||||||
|
|
||||||
gamesInSteam = games.filter((game) =>
|
|
||||||
formattedTitle.startsWith(game.formattedName)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (gamesInSteam.length === 0) {
|
|
||||||
gamesInSteam = games.filter(
|
|
||||||
(game) =>
|
|
||||||
formattedTitle.includes(game.formattedName) ||
|
|
||||||
game.formattedName.includes(formattedTitle)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gamesInSteam.length === 0) {
|
|
||||||
for (const letter of Object.keys(steamGames)) {
|
|
||||||
const letterGames = steamGames[letter] || [];
|
|
||||||
const matches = letterGames.filter(
|
|
||||||
(game) =>
|
|
||||||
formattedTitle.includes(game.formattedName) ||
|
|
||||||
game.formattedName.includes(formattedTitle)
|
|
||||||
);
|
|
||||||
if (matches.length > 0) {
|
|
||||||
gamesInSteam = matches;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gamesInSteam.length > 0) {
|
|
||||||
fuzzyMatchCount++;
|
|
||||||
objectIds = gamesInSteam.map((game) => String(game.id));
|
|
||||||
} else {
|
|
||||||
noMatchCount++;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
noMatchCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const id of objectIds) {
|
|
||||||
objectIdsOnSource.add(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
const repack = {
|
|
||||||
id: nextRepackId++,
|
|
||||||
objectIds: objectIds,
|
|
||||||
title: download.title,
|
|
||||||
uris: download.uris,
|
|
||||||
fileSize: download.fileSize,
|
|
||||||
repacker: downloadSource.name,
|
|
||||||
uploadDate: download.uploadDate,
|
|
||||||
downloadSourceId: downloadSource.id,
|
|
||||||
createdAt: now,
|
|
||||||
updatedAt: now,
|
|
||||||
};
|
|
||||||
|
|
||||||
batch.put(`${repack.id}`, repack);
|
|
||||||
}
|
|
||||||
|
|
||||||
await batch.write();
|
|
||||||
|
|
||||||
logger.info(
|
|
||||||
`Matching stats for ${downloadSource.name}: Hash=${hashMatchCount}, Fuzzy=${fuzzyMatchCount}, None=${noMatchCount}`
|
|
||||||
);
|
|
||||||
|
|
||||||
const existingSource = await downloadSourcesSublevel.get(
|
|
||||||
`${downloadSource.id}`
|
|
||||||
);
|
|
||||||
if (existingSource) {
|
|
||||||
await downloadSourcesSublevel.put(`${downloadSource.id}`, {
|
|
||||||
...existingSource,
|
|
||||||
objectIds: Array.from(objectIdsOnSource),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array.from(objectIdsOnSource);
|
|
||||||
};
|
|
||||||
|
|
||||||
export const importDownloadSourceToLocal = async (
|
|
||||||
url: string,
|
|
||||||
throwOnDuplicate = false
|
|
||||||
) => {
|
|
||||||
const urlExists = await checkUrlExists(url);
|
|
||||||
if (urlExists) {
|
|
||||||
if (throwOnDuplicate) {
|
|
||||||
throw new Error("Download source with this URL already exists");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await axios.get<z.infer<typeof downloadSourceSchema>>(url);
|
|
||||||
|
|
||||||
const steamGames = await getSteamGames();
|
|
||||||
|
|
||||||
const now = new Date();
|
|
||||||
|
|
||||||
const nextId = await getNextId(downloadSourcesSublevel);
|
|
||||||
|
|
||||||
const downloadSource = {
|
|
||||||
id: nextId,
|
|
||||||
url,
|
|
||||||
name: response.data.name,
|
|
||||||
etag: response.headers["etag"] || null,
|
|
||||||
status: DownloadSourceStatus.UpToDate,
|
|
||||||
downloadCount: response.data.downloads.length,
|
|
||||||
objectIds: [],
|
|
||||||
createdAt: now,
|
|
||||||
updatedAt: now,
|
|
||||||
};
|
|
||||||
|
|
||||||
await downloadSourcesSublevel.put(`${downloadSource.id}`, downloadSource);
|
|
||||||
|
|
||||||
const objectIds = await addNewDownloads(
|
|
||||||
downloadSource,
|
|
||||||
response.data.downloads,
|
|
||||||
steamGames
|
|
||||||
);
|
|
||||||
|
|
||||||
// Invalidate ID caches after creating new repacks to prevent ID collisions
|
|
||||||
invalidateIdCaches();
|
|
||||||
|
|
||||||
return {
|
|
||||||
...downloadSource,
|
|
||||||
objectIds,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export const updateDownloadSourcePreservingTimestamp = async (
|
|
||||||
existingSource: DownloadSource,
|
|
||||||
url: string
|
|
||||||
) => {
|
|
||||||
const response = await axios.get<z.infer<typeof downloadSourceSchema>>(url);
|
|
||||||
|
|
||||||
const updatedSource = {
|
|
||||||
...existingSource,
|
|
||||||
name: response.data.name,
|
|
||||||
etag: response.headers["etag"] || null,
|
|
||||||
status: DownloadSourceStatus.UpToDate,
|
|
||||||
downloadCount: response.data.downloads.length,
|
|
||||||
updatedAt: new Date(),
|
|
||||||
// Preserve the original createdAt timestamp
|
|
||||||
};
|
|
||||||
|
|
||||||
await downloadSourcesSublevel.put(`${existingSource.id}`, updatedSource);
|
|
||||||
|
|
||||||
return updatedSource;
|
|
||||||
};
|
|
||||||
@@ -1,18 +1,27 @@
|
|||||||
import { HydraApi } from "@main/services";
|
import { HydraApi } from "@main/services";
|
||||||
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
|
|
||||||
const removeDownloadSource = async (
|
const removeDownloadSource = async (
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
_event: Electron.IpcMainInvokeEvent,
|
||||||
url?: string,
|
removeAll = false,
|
||||||
removeAll = false
|
downloadSourceId?: string
|
||||||
) => {
|
) => {
|
||||||
const params = new URLSearchParams({
|
const params = new URLSearchParams({
|
||||||
all: removeAll.toString(),
|
all: removeAll.toString(),
|
||||||
});
|
});
|
||||||
|
|
||||||
if (url) params.set("url", url);
|
if (downloadSourceId) params.set("downloadSourceId", downloadSourceId);
|
||||||
|
|
||||||
return HydraApi.delete(`/profile/download-sources?${params.toString()}`);
|
if (HydraApi.isLoggedIn() && HydraApi.hasActiveSubscription()) {
|
||||||
|
void HydraApi.delete(`/profile/download-sources?${params.toString()}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (removeAll) {
|
||||||
|
await downloadSourcesSublevel.clear();
|
||||||
|
} else if (downloadSourceId) {
|
||||||
|
await downloadSourcesSublevel.del(downloadSourceId);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
registerEvent("removeDownloadSource", removeDownloadSource);
|
registerEvent("removeDownloadSource", removeDownloadSource);
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
import { HydraApi, logger } from "@main/services";
|
|
||||||
import { importDownloadSourceToLocal, checkUrlExists } from "./helpers";
|
|
||||||
|
|
||||||
export const syncDownloadSourcesFromApi = async () => {
|
|
||||||
try {
|
|
||||||
const apiSources = await HydraApi.get<
|
|
||||||
{ url: string; createdAt: string; updatedAt: string }[]
|
|
||||||
>("/profile/download-sources");
|
|
||||||
|
|
||||||
for (const apiSource of apiSources) {
|
|
||||||
const exists = await checkUrlExists(apiSource.url);
|
|
||||||
if (!exists) {
|
|
||||||
await importDownloadSourceToLocal(apiSource.url, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
logger.error("Failed to sync download sources from API:", error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,114 +1,28 @@
|
|||||||
|
import { HydraApi } from "@main/services";
|
||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
import axios, { AxiosError } from "axios";
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
|
import type { DownloadSource } from "@types";
|
||||||
import { DownloadSourceStatus } from "@shared";
|
|
||||||
import {
|
|
||||||
invalidateIdCaches,
|
|
||||||
downloadSourceSchema,
|
|
||||||
getSteamGames,
|
|
||||||
addNewDownloads,
|
|
||||||
} from "./helpers";
|
|
||||||
|
|
||||||
const syncDownloadSources = async (
|
const syncDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
|
||||||
_event: Electron.IpcMainInvokeEvent
|
const downloadSources = await downloadSourcesSublevel.values().all();
|
||||||
): Promise<number> => {
|
|
||||||
let newRepacksCount = 0;
|
|
||||||
|
|
||||||
try {
|
const response = await HydraApi.post<DownloadSource[]>(
|
||||||
const downloadSources: Array<{
|
"/download-sources/sync",
|
||||||
id: number;
|
{
|
||||||
url: string;
|
ids: downloadSources.map((downloadSource) => downloadSource.id),
|
||||||
name: string;
|
},
|
||||||
etag: string | null;
|
{ needsAuth: false }
|
||||||
status: number;
|
);
|
||||||
downloadCount: number;
|
|
||||||
objectIds: string[];
|
|
||||||
fingerprint?: string;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
}> = [];
|
|
||||||
for await (const [, source] of downloadSourcesSublevel.iterator()) {
|
|
||||||
downloadSources.push(source);
|
|
||||||
}
|
|
||||||
|
|
||||||
const existingRepacks: Array<{
|
for (const downloadSource of response) {
|
||||||
id: number;
|
const existingDownloadSource = downloadSources.find(
|
||||||
title: string;
|
(source) => source.id === downloadSource.id
|
||||||
uris: string[];
|
|
||||||
repacker: string;
|
|
||||||
fileSize: string | null;
|
|
||||||
objectIds: string[];
|
|
||||||
uploadDate: Date | string | null;
|
|
||||||
downloadSourceId: number;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
}> = [];
|
|
||||||
for await (const [, repack] of repacksSublevel.iterator()) {
|
|
||||||
existingRepacks.push(repack);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle sources with missing fingerprints individually, don't delete all sources
|
|
||||||
const sourcesWithFingerprints = downloadSources.filter(
|
|
||||||
(source) => source.fingerprint
|
|
||||||
);
|
|
||||||
const sourcesWithoutFingerprints = downloadSources.filter(
|
|
||||||
(source) => !source.fingerprint
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// For sources without fingerprints, just continue with normal sync
|
await downloadSourcesSublevel.put(downloadSource.id, {
|
||||||
// They will get fingerprints updated later by updateMissingFingerprints
|
...existingDownloadSource,
|
||||||
const allSourcesToSync = [
|
...downloadSource,
|
||||||
...sourcesWithFingerprints,
|
});
|
||||||
...sourcesWithoutFingerprints,
|
|
||||||
];
|
|
||||||
|
|
||||||
for (const downloadSource of allSourcesToSync) {
|
|
||||||
const headers: Record<string, string> = {};
|
|
||||||
|
|
||||||
if (downloadSource.etag) {
|
|
||||||
headers["If-None-Match"] = downloadSource.etag;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await axios.get(downloadSource.url, {
|
|
||||||
headers,
|
|
||||||
});
|
|
||||||
|
|
||||||
const source = downloadSourceSchema.parse(response.data);
|
|
||||||
const steamGames = await getSteamGames();
|
|
||||||
|
|
||||||
const repacks = source.downloads.filter(
|
|
||||||
(download) =>
|
|
||||||
!existingRepacks.some((repack) => repack.title === download.title)
|
|
||||||
);
|
|
||||||
|
|
||||||
await downloadSourcesSublevel.put(`${downloadSource.id}`, {
|
|
||||||
...downloadSource,
|
|
||||||
etag: response.headers["etag"] || null,
|
|
||||||
downloadCount: source.downloads.length,
|
|
||||||
status: DownloadSourceStatus.UpToDate,
|
|
||||||
});
|
|
||||||
|
|
||||||
await addNewDownloads(downloadSource, repacks, steamGames);
|
|
||||||
|
|
||||||
newRepacksCount += repacks.length;
|
|
||||||
} catch (err: unknown) {
|
|
||||||
const isNotModified = (err as AxiosError).response?.status === 304;
|
|
||||||
|
|
||||||
await downloadSourcesSublevel.put(`${downloadSource.id}`, {
|
|
||||||
...downloadSource,
|
|
||||||
status: isNotModified
|
|
||||||
? DownloadSourceStatus.UpToDate
|
|
||||||
: DownloadSourceStatus.Errored,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
invalidateIdCaches();
|
|
||||||
|
|
||||||
return newRepacksCount;
|
|
||||||
} catch (err) {
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,67 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesSublevel } from "@main/level";
|
|
||||||
import { HydraApi, logger } from "@main/services";
|
|
||||||
|
|
||||||
const updateMissingFingerprints = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent
|
|
||||||
): Promise<number> => {
|
|
||||||
const sourcesNeedingFingerprints: Array<{
|
|
||||||
id: number;
|
|
||||||
objectIds: string[];
|
|
||||||
}> = [];
|
|
||||||
|
|
||||||
for await (const [, source] of downloadSourcesSublevel.iterator()) {
|
|
||||||
if (
|
|
||||||
!source.fingerprint &&
|
|
||||||
source.objectIds &&
|
|
||||||
source.objectIds.length > 0
|
|
||||||
) {
|
|
||||||
sourcesNeedingFingerprints.push({
|
|
||||||
id: source.id,
|
|
||||||
objectIds: source.objectIds,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sourcesNeedingFingerprints.length === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.info(
|
|
||||||
`Updating fingerprints for ${sourcesNeedingFingerprints.length} sources`
|
|
||||||
);
|
|
||||||
|
|
||||||
await Promise.all(
|
|
||||||
sourcesNeedingFingerprints.map(async (source) => {
|
|
||||||
try {
|
|
||||||
const { fingerprint } = await HydraApi.put<{ fingerprint: string }>(
|
|
||||||
"/download-sources",
|
|
||||||
{
|
|
||||||
objectIds: source.objectIds,
|
|
||||||
},
|
|
||||||
{ needsAuth: false }
|
|
||||||
);
|
|
||||||
|
|
||||||
const existingSource = await downloadSourcesSublevel.get(
|
|
||||||
`${source.id}`
|
|
||||||
);
|
|
||||||
if (existingSource) {
|
|
||||||
await downloadSourcesSublevel.put(`${source.id}`, {
|
|
||||||
...existingSource,
|
|
||||||
fingerprint,
|
|
||||||
updatedAt: new Date(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
logger.error(
|
|
||||||
`Failed to update fingerprint for source ${source.id}:`,
|
|
||||||
error
|
|
||||||
);
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
return sourcesNeedingFingerprints.length;
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("updateMissingFingerprints", updateMissingFingerprints);
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import axios from "axios";
|
|
||||||
import { z } from "zod";
|
|
||||||
|
|
||||||
const downloadSourceSchema = z.object({
|
|
||||||
name: z.string().max(255),
|
|
||||||
downloads: z.array(
|
|
||||||
z.object({
|
|
||||||
title: z.string().max(255),
|
|
||||||
uris: z.array(z.string()),
|
|
||||||
uploadDate: z.string().max(255),
|
|
||||||
fileSize: z.string().max(255),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
});
|
|
||||||
|
|
||||||
const validateDownloadSource = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
|
||||||
url: string
|
|
||||||
) => {
|
|
||||||
const response = await axios.get<z.infer<typeof downloadSourceSchema>>(url);
|
|
||||||
|
|
||||||
const { name } = downloadSourceSchema.parse(response.data);
|
|
||||||
|
|
||||||
return {
|
|
||||||
name,
|
|
||||||
etag: response.headers["etag"] || null,
|
|
||||||
downloadCount: response.data.downloads.length,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("validateDownloadSource", validateDownloadSource);
|
|
||||||
@@ -63,14 +63,7 @@ import "./autoupdater/restart-and-install-update";
|
|||||||
import "./user-preferences/authenticate-real-debrid";
|
import "./user-preferences/authenticate-real-debrid";
|
||||||
import "./user-preferences/authenticate-torbox";
|
import "./user-preferences/authenticate-torbox";
|
||||||
import "./download-sources/add-download-source";
|
import "./download-sources/add-download-source";
|
||||||
import "./download-sources/update-missing-fingerprints";
|
|
||||||
import "./download-sources/delete-download-source";
|
|
||||||
import "./download-sources/delete-all-download-sources";
|
|
||||||
import "./download-sources/validate-download-source";
|
|
||||||
import "./download-sources/sync-download-sources";
|
import "./download-sources/sync-download-sources";
|
||||||
import "./download-sources/get-download-sources-list";
|
|
||||||
import "./download-sources/check-download-source-exists";
|
|
||||||
import "./repacks/get-all-repacks";
|
|
||||||
import "./auth/sign-out";
|
import "./auth/sign-out";
|
||||||
import "./auth/open-auth-window";
|
import "./auth/open-auth-window";
|
||||||
import "./auth/get-session-hash";
|
import "./auth/get-session-hash";
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ const addCustomGameToLibrary = async (
|
|||||||
logoImageUrl: logoImageUrl || "",
|
logoImageUrl: logoImageUrl || "",
|
||||||
logoPosition: null,
|
logoPosition: null,
|
||||||
coverImageUrl: iconUrl || "",
|
coverImageUrl: iconUrl || "",
|
||||||
|
downloadSources: [],
|
||||||
};
|
};
|
||||||
await gamesShopAssetsSublevel.put(gameKey, assets);
|
await gamesShopAssetsSublevel.put(gameKey, assets);
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { repacksSublevel, GameRepack } from "@main/level";
|
|
||||||
|
|
||||||
const getAllRepacks = async (_event: Electron.IpcMainInvokeEvent) => {
|
|
||||||
const repacks: GameRepack[] = [];
|
|
||||||
|
|
||||||
for await (const [, repack] of repacksSublevel.iterator()) {
|
|
||||||
if (Array.isArray(repack.objectIds)) {
|
|
||||||
repacks.push(repack);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return repacks;
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEvent("getAllRepacks", getAllRepacks);
|
|
||||||
27
src/main/helpers/migrate-download-sources.ts
Normal file
27
src/main/helpers/migrate-download-sources.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
|
import { HydraApi } from "@main/services/hydra-api";
|
||||||
|
import { DownloadSource } from "@types";
|
||||||
|
|
||||||
|
export const migrateDownloadSources = async () => {
|
||||||
|
const downloadSources = downloadSourcesSublevel.iterator();
|
||||||
|
|
||||||
|
for await (const [key, value] of downloadSources) {
|
||||||
|
if (!value.isRemote) {
|
||||||
|
const downloadSource = await HydraApi.post<DownloadSource>(
|
||||||
|
"/download-sources",
|
||||||
|
{
|
||||||
|
url: value.url,
|
||||||
|
},
|
||||||
|
{ needsAuth: false }
|
||||||
|
);
|
||||||
|
|
||||||
|
await downloadSourcesSublevel.put(downloadSource.id, {
|
||||||
|
...downloadSource,
|
||||||
|
isRemote: true,
|
||||||
|
createdAt: new Date().toISOString(),
|
||||||
|
});
|
||||||
|
|
||||||
|
await downloadSourcesSublevel.del(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -1,18 +1,6 @@
|
|||||||
import { db } from "../level";
|
import { db } from "../level";
|
||||||
import { levelKeys } from "./keys";
|
import { levelKeys } from "./keys";
|
||||||
|
import type { DownloadSource } from "@types";
|
||||||
export interface DownloadSource {
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
url: string;
|
|
||||||
status: number;
|
|
||||||
objectIds: string[];
|
|
||||||
downloadCount: number;
|
|
||||||
fingerprint?: string;
|
|
||||||
etag: string | null;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const downloadSourcesSublevel = db.sublevel<string, DownloadSource>(
|
export const downloadSourcesSublevel = db.sublevel<string, DownloadSource>(
|
||||||
levelKeys.downloadSources,
|
levelKeys.downloadSources,
|
||||||
|
|||||||
@@ -7,4 +7,3 @@ export * from "./game-achievements";
|
|||||||
export * from "./keys";
|
export * from "./keys";
|
||||||
export * from "./themes";
|
export * from "./themes";
|
||||||
export * from "./download-sources";
|
export * from "./download-sources";
|
||||||
export * from "./repacks";
|
|
||||||
|
|||||||
@@ -18,5 +18,4 @@ export const levelKeys = {
|
|||||||
screenState: "screenState",
|
screenState: "screenState",
|
||||||
rpcPassword: "rpcPassword",
|
rpcPassword: "rpcPassword",
|
||||||
downloadSources: "downloadSources",
|
downloadSources: "downloadSources",
|
||||||
repacks: "repacks",
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
import { db } from "../level";
|
|
||||||
import { levelKeys } from "./keys";
|
|
||||||
|
|
||||||
export interface GameRepack {
|
|
||||||
id: number;
|
|
||||||
title: string;
|
|
||||||
uris: string[];
|
|
||||||
repacker: string;
|
|
||||||
fileSize: string | null;
|
|
||||||
objectIds: string[];
|
|
||||||
uploadDate: Date | string | null;
|
|
||||||
downloadSourceId: number;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const repacksSublevel = db.sublevel<string, GameRepack>(
|
|
||||||
levelKeys.repacks,
|
|
||||||
{
|
|
||||||
valueEncoding: "json",
|
|
||||||
}
|
|
||||||
);
|
|
||||||
@@ -16,15 +16,12 @@ import {
|
|||||||
Ludusavi,
|
Ludusavi,
|
||||||
Lock,
|
Lock,
|
||||||
DeckyPlugin,
|
DeckyPlugin,
|
||||||
ResourceCache,
|
|
||||||
} from "@main/services";
|
} from "@main/services";
|
||||||
|
import { migrateDownloadSources } from "./helpers/migrate-download-sources";
|
||||||
|
|
||||||
export const loadState = async () => {
|
export const loadState = async () => {
|
||||||
await Lock.acquireLock();
|
await Lock.acquireLock();
|
||||||
|
|
||||||
ResourceCache.initialize();
|
|
||||||
await ResourceCache.updateResourcesOnStartup();
|
|
||||||
|
|
||||||
const userPreferences = await db.get<string, UserPreferences | null>(
|
const userPreferences = await db.get<string, UserPreferences | null>(
|
||||||
levelKeys.userPreferences,
|
levelKeys.userPreferences,
|
||||||
{
|
{
|
||||||
@@ -53,8 +50,12 @@ export const loadState = async () => {
|
|||||||
DeckyPlugin.checkAndUpdateIfOutdated();
|
DeckyPlugin.checkAndUpdateIfOutdated();
|
||||||
}
|
}
|
||||||
|
|
||||||
await HydraApi.setupApi().then(() => {
|
await HydraApi.setupApi().then(async () => {
|
||||||
uploadGamesBatch();
|
uploadGamesBatch();
|
||||||
|
void migrateDownloadSources();
|
||||||
|
|
||||||
|
const { syncDownloadSourcesFromApi } = await import("./services/user");
|
||||||
|
void syncDownloadSourcesFromApi();
|
||||||
// WSClient.connect();
|
// WSClient.connect();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -167,6 +167,8 @@ export class AchievementWatcherManager {
|
|||||||
shop: GameShop,
|
shop: GameShop,
|
||||||
objectId: string
|
objectId: string
|
||||||
) {
|
) {
|
||||||
|
if (shop === "custom") return;
|
||||||
|
|
||||||
const gameKey = levelKeys.game(shop, objectId);
|
const gameKey = levelKeys.game(shop, objectId);
|
||||||
if (this.alreadySyncedGames.get(gameKey)) return;
|
if (this.alreadySyncedGames.get(gameKey)) return;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import axios, { AxiosResponse } from "axios";
|
import axios, { AxiosResponse } from "axios";
|
||||||
import { wrapper } from "axios-cookiejar-support";
|
import { wrapper } from "axios-cookiejar-support";
|
||||||
import { CookieJar } from "tough-cookie";
|
import { CookieJar } from "tough-cookie";
|
||||||
|
import { logger } from "@main/services";
|
||||||
|
|
||||||
export class DatanodesApi {
|
export class DatanodesApi {
|
||||||
private static readonly jar = new CookieJar();
|
private static readonly jar = new CookieJar();
|
||||||
@@ -20,51 +21,42 @@ export class DatanodesApi {
|
|||||||
|
|
||||||
await this.jar.setCookie("lang=english;", "https://datanodes.to");
|
await this.jar.setCookie("lang=english;", "https://datanodes.to");
|
||||||
|
|
||||||
const payload = new URLSearchParams({
|
const formData = new FormData();
|
||||||
op: "download2",
|
formData.append("op", "download2");
|
||||||
id: fileCode,
|
formData.append("id", fileCode);
|
||||||
method_free: "Free Download >>",
|
formData.append("rand", "");
|
||||||
dl: "1",
|
formData.append("referer", "https://datanodes.to/download");
|
||||||
});
|
formData.append("method_free", "Free Download >>");
|
||||||
|
formData.append("method_premium", "");
|
||||||
|
formData.append("__dl", "1");
|
||||||
|
|
||||||
const response: AxiosResponse = await this.session.post(
|
const response: AxiosResponse = await this.session.post(
|
||||||
"https://datanodes.to/download",
|
"https://datanodes.to/download",
|
||||||
payload,
|
formData,
|
||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
"User-Agent":
|
accept: "*/*",
|
||||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0",
|
"accept-language": "en-US,en;q=0.9",
|
||||||
|
priority: "u=1, i",
|
||||||
|
"sec-ch-ua":
|
||||||
|
'"Google Chrome";v="141", "Not?A_Brand";v="8", "Chromium";v="141"',
|
||||||
|
"sec-ch-ua-mobile": "?0",
|
||||||
|
"sec-ch-ua-platform": '"Windows"',
|
||||||
|
"sec-fetch-dest": "empty",
|
||||||
|
"sec-fetch-mode": "cors",
|
||||||
|
"sec-fetch-site": "same-origin",
|
||||||
Referer: "https://datanodes.to/download",
|
Referer: "https://datanodes.to/download",
|
||||||
Origin: "https://datanodes.to",
|
|
||||||
"Content-Type": "application/x-www-form-urlencoded",
|
|
||||||
},
|
},
|
||||||
maxRedirects: 0,
|
|
||||||
validateStatus: (status: number) => status === 302 || status < 400,
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
if (response.status === 302) {
|
|
||||||
return response.headers["location"];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof response.data === "object" && response.data.url) {
|
if (typeof response.data === "object" && response.data.url) {
|
||||||
return decodeURIComponent(response.data.url);
|
return decodeURIComponent(response.data.url);
|
||||||
}
|
}
|
||||||
|
|
||||||
const htmlContent = String(response.data);
|
|
||||||
if (!htmlContent) {
|
|
||||||
throw new Error("Empty response received");
|
|
||||||
}
|
|
||||||
|
|
||||||
const downloadLinkRegex = /href=["'](https:\/\/[^"']+)["']/;
|
|
||||||
const downloadLinkMatch = downloadLinkRegex.exec(htmlContent);
|
|
||||||
if (downloadLinkMatch) {
|
|
||||||
return downloadLinkMatch[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Error("Failed to get the download link");
|
throw new Error("Failed to get the download link");
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error fetching download URL:", error);
|
logger.error("Error fetching download URL:", error);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export class HydraApi {
|
|||||||
return this.userAuth.authToken !== "";
|
return this.userAuth.authToken !== "";
|
||||||
}
|
}
|
||||||
|
|
||||||
private static hasActiveSubscription() {
|
public static hasActiveSubscription() {
|
||||||
const expiresAt = new Date(this.userAuth.subscription?.expiresAt ?? 0);
|
const expiresAt = new Date(this.userAuth.subscription?.expiresAt ?? 0);
|
||||||
return expiresAt > new Date();
|
return expiresAt > new Date();
|
||||||
}
|
}
|
||||||
@@ -106,9 +106,7 @@ export class HydraApi {
|
|||||||
// WSClient.close();
|
// WSClient.close();
|
||||||
// WSClient.connect();
|
// WSClient.connect();
|
||||||
|
|
||||||
const { syncDownloadSourcesFromApi } = await import(
|
const { syncDownloadSourcesFromApi } = await import("./user");
|
||||||
"../events/download-sources/sync-download-sources-from-api"
|
|
||||||
);
|
|
||||||
syncDownloadSourcesFromApi();
|
syncDownloadSourcesFromApi();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,4 +18,4 @@ export * from "./library-sync";
|
|||||||
export * from "./wine";
|
export * from "./wine";
|
||||||
export * from "./lock";
|
export * from "./lock";
|
||||||
export * from "./decky-plugin";
|
export * from "./decky-plugin";
|
||||||
export * from "./resource-cache";
|
export * from "./user";
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ import { HydraApi } from "../hydra-api";
|
|||||||
import { gamesSublevel, levelKeys } from "@main/level";
|
import { gamesSublevel, levelKeys } from "@main/level";
|
||||||
|
|
||||||
export const createGame = async (game: Game) => {
|
export const createGame = async (game: Game) => {
|
||||||
|
if (game.shop === "custom") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
return HydraApi.post(`/profile/games`, {
|
return HydraApi.post(`/profile/games`, {
|
||||||
objectId: game.objectId,
|
objectId: game.objectId,
|
||||||
playTimeInMilliseconds: Math.trunc(game.playTimeInMilliseconds ?? 0),
|
playTimeInMilliseconds: Math.trunc(game.playTimeInMilliseconds ?? 0),
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ export const mergeWithRemoteGames = async () => {
|
|||||||
logoImageUrl: game.logoImageUrl,
|
logoImageUrl: game.logoImageUrl,
|
||||||
iconUrl: game.iconUrl,
|
iconUrl: game.iconUrl,
|
||||||
logoPosition: game.logoPosition,
|
logoPosition: game.logoPosition,
|
||||||
|
downloadSources: game.downloadSources,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
import type { Game } from "@types";
|
import type { Game } from "@types";
|
||||||
import { HydraApi } from "../hydra-api";
|
import { HydraApi } from "../hydra-api";
|
||||||
|
|
||||||
export const updateGamePlaytime = async (
|
export const trackGamePlaytime = async (
|
||||||
game: Game,
|
game: Game,
|
||||||
deltaInMillis: number,
|
deltaInMillis: number,
|
||||||
lastTimePlayed: Date
|
lastTimePlayed: Date
|
||||||
) => {
|
) => {
|
||||||
return HydraApi.put(`/profile/games/${game.remoteId}`, {
|
if (game.shop === "custom") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
return HydraApi.put(`/profile/games/${game.shop}/${game.objectId}`, {
|
||||||
playTimeDeltaInSeconds: Math.trunc(deltaInMillis / 1000),
|
playTimeDeltaInSeconds: Math.trunc(deltaInMillis / 1000),
|
||||||
lastTimePlayed,
|
lastTimePlayed,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { WindowManager } from "./window-manager";
|
import { WindowManager } from "./window-manager";
|
||||||
import { createGame, updateGamePlaytime } from "./library-sync";
|
import { createGame, trackGamePlaytime } from "./library-sync";
|
||||||
import type { Game, GameRunning, UserPreferences } from "@types";
|
import type { Game, GameRunning, UserPreferences } from "@types";
|
||||||
import { PythonRPC } from "./python-rpc";
|
import { PythonRPC } from "./python-rpc";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
@@ -198,11 +198,6 @@ export const watchProcesses = async () => {
|
|||||||
function onOpenGame(game: Game) {
|
function onOpenGame(game: Game) {
|
||||||
const now = performance.now();
|
const now = performance.now();
|
||||||
|
|
||||||
AchievementWatcherManager.firstSyncWithRemoteIfNeeded(
|
|
||||||
game.shop,
|
|
||||||
game.objectId
|
|
||||||
);
|
|
||||||
|
|
||||||
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
||||||
lastTick: now,
|
lastTick: now,
|
||||||
firstTick: now,
|
firstTick: now,
|
||||||
@@ -220,8 +215,15 @@ function onOpenGame(game: Game) {
|
|||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
|
|
||||||
|
if (game.shop === "custom") return;
|
||||||
|
|
||||||
|
AchievementWatcherManager.firstSyncWithRemoteIfNeeded(
|
||||||
|
game.shop,
|
||||||
|
game.objectId
|
||||||
|
);
|
||||||
|
|
||||||
if (game.remoteId) {
|
if (game.remoteId) {
|
||||||
updateGamePlaytime(
|
trackGamePlaytime(
|
||||||
game,
|
game,
|
||||||
game.unsyncedDeltaPlayTimeInMilliseconds ?? 0,
|
game.unsyncedDeltaPlayTimeInMilliseconds ?? 0,
|
||||||
new Date()
|
new Date()
|
||||||
@@ -255,43 +257,46 @@ function onTickGame(game: Game) {
|
|||||||
|
|
||||||
const delta = now - gamePlaytime.lastTick;
|
const delta = now - gamePlaytime.lastTick;
|
||||||
|
|
||||||
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
const updatedGame: Game = {
|
||||||
...game,
|
...game,
|
||||||
playTimeInMilliseconds: (game.playTimeInMilliseconds ?? 0) + delta,
|
playTimeInMilliseconds: (game.playTimeInMilliseconds ?? 0) + delta,
|
||||||
lastTimePlayed: new Date(),
|
lastTimePlayed: new Date(),
|
||||||
});
|
};
|
||||||
|
|
||||||
|
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), updatedGame);
|
||||||
|
|
||||||
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
||||||
...gamePlaytime,
|
...gamePlaytime,
|
||||||
lastTick: now,
|
lastTick: now,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (currentTick % TICKS_TO_UPDATE_API === 0) {
|
if (currentTick % TICKS_TO_UPDATE_API === 0 && game.shop !== "custom") {
|
||||||
const deltaToSync =
|
const deltaToSync =
|
||||||
now -
|
now -
|
||||||
gamePlaytime.lastSyncTick +
|
gamePlaytime.lastSyncTick +
|
||||||
(game.unsyncedDeltaPlayTimeInMilliseconds ?? 0);
|
(game.unsyncedDeltaPlayTimeInMilliseconds ?? 0);
|
||||||
|
|
||||||
const gamePromise = game.remoteId
|
const gamePromise = game.remoteId
|
||||||
? updateGamePlaytime(game, deltaToSync, game.lastTimePlayed!)
|
? trackGamePlaytime(game, deltaToSync, game.lastTimePlayed!)
|
||||||
: createGame(game);
|
: createGame(game);
|
||||||
|
|
||||||
gamePromise
|
gamePromise
|
||||||
.then(() => {
|
.then(() => {
|
||||||
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
||||||
...game,
|
...updatedGame,
|
||||||
unsyncedDeltaPlayTimeInMilliseconds: 0,
|
unsyncedDeltaPlayTimeInMilliseconds: 0,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
||||||
...game,
|
...updatedGame,
|
||||||
unsyncedDeltaPlayTimeInMilliseconds: deltaToSync,
|
unsyncedDeltaPlayTimeInMilliseconds: deltaToSync,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
gamesPlaytime.set(levelKeys.game(game.shop, game.objectId), {
|
||||||
...gamePlaytime,
|
...gamePlaytime,
|
||||||
|
lastTick: now,
|
||||||
lastSyncTick: now,
|
lastSyncTick: now,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -299,11 +304,24 @@ function onTickGame(game: Game) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const onCloseGame = (game: Game) => {
|
const onCloseGame = (game: Game) => {
|
||||||
|
const now = performance.now();
|
||||||
const gamePlaytime = gamesPlaytime.get(
|
const gamePlaytime = gamesPlaytime.get(
|
||||||
levelKeys.game(game.shop, game.objectId)
|
levelKeys.game(game.shop, game.objectId)
|
||||||
)!;
|
)!;
|
||||||
gamesPlaytime.delete(levelKeys.game(game.shop, game.objectId));
|
gamesPlaytime.delete(levelKeys.game(game.shop, game.objectId));
|
||||||
|
|
||||||
|
const delta = now - gamePlaytime.lastTick;
|
||||||
|
|
||||||
|
const updatedGame: Game = {
|
||||||
|
...game,
|
||||||
|
playTimeInMilliseconds: (game.playTimeInMilliseconds ?? 0) + delta,
|
||||||
|
lastTimePlayed: new Date(),
|
||||||
|
};
|
||||||
|
|
||||||
|
gamesSublevel.put(levelKeys.game(game.shop, game.objectId), updatedGame);
|
||||||
|
|
||||||
|
if (game.shop === "custom") return;
|
||||||
|
|
||||||
if (game.remoteId) {
|
if (game.remoteId) {
|
||||||
if (game.automaticCloudSync) {
|
if (game.automaticCloudSync) {
|
||||||
CloudSync.uploadSaveGame(
|
CloudSync.uploadSaveGame(
|
||||||
@@ -315,20 +333,20 @@ const onCloseGame = (game: Game) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const deltaToSync =
|
const deltaToSync =
|
||||||
performance.now() -
|
now -
|
||||||
gamePlaytime.lastSyncTick +
|
gamePlaytime.lastSyncTick +
|
||||||
(game.unsyncedDeltaPlayTimeInMilliseconds ?? 0);
|
(game.unsyncedDeltaPlayTimeInMilliseconds ?? 0);
|
||||||
|
|
||||||
return updateGamePlaytime(game, deltaToSync, game.lastTimePlayed!)
|
return trackGamePlaytime(game, deltaToSync, game.lastTimePlayed!)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
return gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
return gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
||||||
...game,
|
...updatedGame,
|
||||||
unsyncedDeltaPlayTimeInMilliseconds: 0,
|
unsyncedDeltaPlayTimeInMilliseconds: 0,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
return gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
return gamesSublevel.put(levelKeys.game(game.shop, game.objectId), {
|
||||||
...game,
|
...updatedGame,
|
||||||
unsyncedDeltaPlayTimeInMilliseconds: deltaToSync,
|
unsyncedDeltaPlayTimeInMilliseconds: deltaToSync,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,157 +0,0 @@
|
|||||||
import { app } from "electron";
|
|
||||||
import axios from "axios";
|
|
||||||
import fs from "node:fs";
|
|
||||||
import path from "node:path";
|
|
||||||
import { logger } from "./logger";
|
|
||||||
|
|
||||||
interface CachedResource<T = unknown> {
|
|
||||||
data: T;
|
|
||||||
etag: string | null;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ResourceCache {
|
|
||||||
private static cacheDir: string;
|
|
||||||
|
|
||||||
static initialize() {
|
|
||||||
this.cacheDir = path.join(app.getPath("userData"), "resource-cache");
|
|
||||||
|
|
||||||
if (!fs.existsSync(this.cacheDir)) {
|
|
||||||
fs.mkdirSync(this.cacheDir, { recursive: true });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static getCacheFilePath(resourceName: string): string {
|
|
||||||
return path.join(this.cacheDir, `${resourceName}.json`);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static getEtagFilePath(resourceName: string): string {
|
|
||||||
return path.join(this.cacheDir, `${resourceName}.etag`);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static readCachedResource<T = unknown>(
|
|
||||||
resourceName: string
|
|
||||||
): CachedResource<T> | null {
|
|
||||||
const dataPath = this.getCacheFilePath(resourceName);
|
|
||||||
const etagPath = this.getEtagFilePath(resourceName);
|
|
||||||
|
|
||||||
if (!fs.existsSync(dataPath)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const data = JSON.parse(fs.readFileSync(dataPath, "utf-8")) as T;
|
|
||||||
const etag = fs.existsSync(etagPath)
|
|
||||||
? fs.readFileSync(etagPath, "utf-8")
|
|
||||||
: null;
|
|
||||||
|
|
||||||
return { data, etag };
|
|
||||||
} catch (error) {
|
|
||||||
logger.error(`Failed to read cached resource ${resourceName}:`, error);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static writeCachedResource<T = unknown>(
|
|
||||||
resourceName: string,
|
|
||||||
data: T,
|
|
||||||
etag: string | null
|
|
||||||
): void {
|
|
||||||
const dataPath = this.getCacheFilePath(resourceName);
|
|
||||||
const etagPath = this.getEtagFilePath(resourceName);
|
|
||||||
|
|
||||||
try {
|
|
||||||
fs.writeFileSync(dataPath, JSON.stringify(data), "utf-8");
|
|
||||||
|
|
||||||
if (etag) {
|
|
||||||
fs.writeFileSync(etagPath, etag, "utf-8");
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.info(
|
|
||||||
`Cached resource ${resourceName} with etag: ${etag || "none"}`
|
|
||||||
);
|
|
||||||
} catch (error) {
|
|
||||||
logger.error(`Failed to write cached resource ${resourceName}:`, error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static async fetchAndCache<T = unknown>(
|
|
||||||
resourceName: string,
|
|
||||||
url: string,
|
|
||||||
timeout: number = 10000
|
|
||||||
): Promise<T> {
|
|
||||||
const cached = this.readCachedResource<T>(resourceName);
|
|
||||||
const headers: Record<string, string> = {};
|
|
||||||
|
|
||||||
if (cached?.etag) {
|
|
||||||
headers["If-None-Match"] = cached.etag;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await axios.get<T>(url, {
|
|
||||||
headers,
|
|
||||||
timeout,
|
|
||||||
});
|
|
||||||
|
|
||||||
const newEtag = response.headers["etag"] || null;
|
|
||||||
this.writeCachedResource(resourceName, response.data, newEtag);
|
|
||||||
|
|
||||||
return response.data;
|
|
||||||
} catch (error: unknown) {
|
|
||||||
const axiosError = error as {
|
|
||||||
response?: { status?: number };
|
|
||||||
message?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (axiosError.response?.status === 304 && cached) {
|
|
||||||
logger.info(`Resource ${resourceName} not modified, using cache`);
|
|
||||||
return cached.data;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cached) {
|
|
||||||
logger.warn(
|
|
||||||
`Failed to fetch ${resourceName}, using cached version:`,
|
|
||||||
axiosError.message || "Unknown error"
|
|
||||||
);
|
|
||||||
return cached.data;
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.error(
|
|
||||||
`Failed to fetch ${resourceName} and no cache available:`,
|
|
||||||
error
|
|
||||||
);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static getCachedData<T = unknown>(resourceName: string): T | null {
|
|
||||||
const cached = this.readCachedResource<T>(resourceName);
|
|
||||||
return cached?.data || null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static async updateResourcesOnStartup(): Promise<void> {
|
|
||||||
logger.info("Starting background resource cache update...");
|
|
||||||
|
|
||||||
const resources = [
|
|
||||||
{
|
|
||||||
name: "steam-games-by-letter",
|
|
||||||
url: `${import.meta.env.MAIN_VITE_EXTERNAL_RESOURCES_URL}/steam-games-by-letter.json`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "sources-manifest",
|
|
||||||
url: "https://cdn.losbroxas.org/sources-manifest.json",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
await Promise.allSettled(
|
|
||||||
resources.map(async (resource) => {
|
|
||||||
try {
|
|
||||||
await this.fetchAndCache(resource.name, resource.url);
|
|
||||||
} catch (error) {
|
|
||||||
logger.error(`Failed to update ${resource.name} on startup:`, error);
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
logger.info("Resource cache update complete");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
2
src/main/services/user/index.ts
Normal file
2
src/main/services/user/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export * from "./get-user-data";
|
||||||
|
export * from "./sync-download-sources";
|
||||||
41
src/main/services/user/sync-download-sources.ts
Normal file
41
src/main/services/user/sync-download-sources.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { HydraApi, logger } from "../";
|
||||||
|
import { downloadSourcesSublevel } from "@main/level";
|
||||||
|
import type { DownloadSource } from "@types";
|
||||||
|
|
||||||
|
export const syncDownloadSourcesFromApi = async () => {
|
||||||
|
if (!HydraApi.isLoggedIn() || !HydraApi.hasActiveSubscription()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const profileSources = await HydraApi.get<DownloadSource[]>(
|
||||||
|
"/profile/download-sources"
|
||||||
|
);
|
||||||
|
|
||||||
|
const existingSources = await downloadSourcesSublevel.values().all();
|
||||||
|
const existingUrls = new Set(existingSources.map((source) => source.url));
|
||||||
|
|
||||||
|
for (const downloadSource of profileSources) {
|
||||||
|
if (!existingUrls.has(downloadSource.url)) {
|
||||||
|
try {
|
||||||
|
await downloadSourcesSublevel.put(downloadSource.id, {
|
||||||
|
...downloadSource,
|
||||||
|
isRemote: true,
|
||||||
|
createdAt: new Date().toISOString(),
|
||||||
|
});
|
||||||
|
|
||||||
|
logger.log(
|
||||||
|
`Synced download source from profile: ${downloadSource.url}`
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error(
|
||||||
|
`Failed to sync download source ${downloadSource.url}:`,
|
||||||
|
error
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
logger.error("Failed to sync download sources from API:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -25,6 +25,7 @@ import type {
|
|||||||
} from "@types";
|
} from "@types";
|
||||||
import { AuthPage, generateAchievementCustomNotificationTest } from "@shared";
|
import { AuthPage, generateAchievementCustomNotificationTest } from "@shared";
|
||||||
import { isStaging } from "@main/constants";
|
import { isStaging } from "@main/constants";
|
||||||
|
import { logger } from "./logger";
|
||||||
|
|
||||||
export class WindowManager {
|
export class WindowManager {
|
||||||
public static mainWindow: Electron.BrowserWindow | null = null;
|
public static mainWindow: Electron.BrowserWindow | null = null;
|
||||||
@@ -54,21 +55,25 @@ export class WindowManager {
|
|||||||
show: false,
|
show: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private static formatVersionNumber(version: string) {
|
||||||
|
return version.replaceAll(".", "-");
|
||||||
|
}
|
||||||
|
|
||||||
private static async loadWindowURL(window: BrowserWindow, hash: string = "") {
|
private static async loadWindowURL(window: BrowserWindow, hash: string = "") {
|
||||||
// HMR for renderer base on electron-vite cli.
|
// HMR for renderer base on electron-vite cli.
|
||||||
// Load the remote URL for development or the local html file for production.
|
// Load the remote URL for development or the local html file for production.
|
||||||
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) {
|
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) {
|
||||||
window.loadURL(`${process.env["ELECTRON_RENDERER_URL"]}#/${hash}`);
|
window.loadURL(`${process.env["ELECTRON_RENDERER_URL"]}#/${hash}`);
|
||||||
} else if (import.meta.env.MAIN_VITE_RENDERER_URL) {
|
} else if (import.meta.env.MAIN_VITE_LAUNCHER_SUBDOMAIN) {
|
||||||
// Try to load from remote URL in production
|
// Try to load from remote URL in production
|
||||||
try {
|
try {
|
||||||
await window.loadURL(
|
await window.loadURL(
|
||||||
`${import.meta.env.MAIN_VITE_RENDERER_URL}#/${hash}`
|
`https://release-v${this.formatVersionNumber(app.getVersion())}.${import.meta.env.MAIN_VITE_LAUNCHER_SUBDOMAIN}#/${hash}`
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Fall back to local file if remote URL fails
|
// Fall back to local file if remote URL fails
|
||||||
console.error(
|
logger.error(
|
||||||
"Failed to load from MAIN_VITE_RENDERER_URL, falling back to local file:",
|
"Failed to load from MAIN_VITE_LAUNCHER_SUBDOMAIN, falling back to local file:",
|
||||||
error
|
error
|
||||||
);
|
);
|
||||||
window.loadFile(path.join(__dirname, "../renderer/index.html"), {
|
window.loadFile(path.join(__dirname, "../renderer/index.html"), {
|
||||||
@@ -284,12 +289,6 @@ export class WindowManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static loadNotificationWindowURL() {
|
|
||||||
if (this.notificationWindow) {
|
|
||||||
this.loadWindowURL(this.notificationWindow, "achievement-notification");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static readonly NOTIFICATION_WINDOW_WIDTH = 360;
|
private static readonly NOTIFICATION_WINDOW_WIDTH = 360;
|
||||||
private static readonly NOTIFICATION_WINDOW_HEIGHT = 140;
|
private static readonly NOTIFICATION_WINDOW_HEIGHT = 140;
|
||||||
|
|
||||||
@@ -297,46 +296,58 @@ export class WindowManager {
|
|||||||
position: AchievementCustomNotificationPosition | undefined
|
position: AchievementCustomNotificationPosition | undefined
|
||||||
) {
|
) {
|
||||||
const display = screen.getPrimaryDisplay();
|
const display = screen.getPrimaryDisplay();
|
||||||
const { width, height } = display.workAreaSize;
|
const {
|
||||||
|
x: displayX,
|
||||||
|
y: displayY,
|
||||||
|
width: displayWidth,
|
||||||
|
height: displayHeight,
|
||||||
|
} = display.bounds;
|
||||||
|
|
||||||
if (position === "bottom-left") {
|
if (position === "bottom-left") {
|
||||||
return {
|
return {
|
||||||
x: 0,
|
x: displayX,
|
||||||
y: height - this.NOTIFICATION_WINDOW_HEIGHT,
|
y: displayY + displayHeight - this.NOTIFICATION_WINDOW_HEIGHT,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (position === "bottom-center") {
|
if (position === "bottom-center") {
|
||||||
return {
|
return {
|
||||||
x: (width - this.NOTIFICATION_WINDOW_WIDTH) / 2,
|
x: displayX + (displayWidth - this.NOTIFICATION_WINDOW_WIDTH) / 2,
|
||||||
y: height - this.NOTIFICATION_WINDOW_HEIGHT,
|
y: displayY + displayHeight - this.NOTIFICATION_WINDOW_HEIGHT,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (position === "bottom-right") {
|
if (position === "bottom-right") {
|
||||||
return {
|
return {
|
||||||
x: width - this.NOTIFICATION_WINDOW_WIDTH,
|
x: displayX + displayWidth - this.NOTIFICATION_WINDOW_WIDTH,
|
||||||
y: height - this.NOTIFICATION_WINDOW_HEIGHT,
|
y: displayY + displayHeight - this.NOTIFICATION_WINDOW_HEIGHT,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (position === "top-left") {
|
||||||
|
return {
|
||||||
|
x: displayX,
|
||||||
|
y: displayY,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (position === "top-center") {
|
if (position === "top-center") {
|
||||||
return {
|
return {
|
||||||
x: (width - this.NOTIFICATION_WINDOW_WIDTH) / 2,
|
x: displayX + (displayWidth - this.NOTIFICATION_WINDOW_WIDTH) / 2,
|
||||||
y: 0,
|
y: displayY,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (position === "top-right") {
|
if (position === "top-right") {
|
||||||
return {
|
return {
|
||||||
x: width - this.NOTIFICATION_WINDOW_WIDTH,
|
x: displayX + displayWidth - this.NOTIFICATION_WINDOW_WIDTH,
|
||||||
y: 0,
|
y: displayY,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
x: 0,
|
x: displayX,
|
||||||
y: 0,
|
y: displayY,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -382,7 +393,7 @@ export class WindowManager {
|
|||||||
this.notificationWindow.setIgnoreMouseEvents(true);
|
this.notificationWindow.setIgnoreMouseEvents(true);
|
||||||
|
|
||||||
this.notificationWindow.setAlwaysOnTop(true, "screen-saver", 1);
|
this.notificationWindow.setAlwaysOnTop(true, "screen-saver", 1);
|
||||||
this.loadNotificationWindowURL();
|
this.loadWindowURL(this.notificationWindow, "achievement-notification");
|
||||||
|
|
||||||
if (!app.isPackaged || isStaging) {
|
if (!app.isPackaged || isStaging) {
|
||||||
this.notificationWindow.webContents.openDevTools();
|
this.notificationWindow.webContents.openDevTools();
|
||||||
|
|||||||
2
src/main/vite-env.d.ts
vendored
2
src/main/vite-env.d.ts
vendored
@@ -7,7 +7,7 @@ interface ImportMetaEnv {
|
|||||||
readonly MAIN_VITE_CHECKOUT_URL: string;
|
readonly MAIN_VITE_CHECKOUT_URL: string;
|
||||||
readonly MAIN_VITE_EXTERNAL_RESOURCES_URL: string;
|
readonly MAIN_VITE_EXTERNAL_RESOURCES_URL: string;
|
||||||
readonly MAIN_VITE_WS_URL: string;
|
readonly MAIN_VITE_WS_URL: string;
|
||||||
readonly MAIN_VITE_RENDERER_URL: string;
|
readonly MAIN_VITE_LAUNCHER_SUBDOMAIN: string;
|
||||||
readonly ELECTRON_RENDERER_URL: string;
|
readonly ELECTRON_RENDERER_URL: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -99,22 +99,10 @@ contextBridge.exposeInMainWorld("electron", {
|
|||||||
/* Download sources */
|
/* Download sources */
|
||||||
addDownloadSource: (url: string) =>
|
addDownloadSource: (url: string) =>
|
||||||
ipcRenderer.invoke("addDownloadSource", url),
|
ipcRenderer.invoke("addDownloadSource", url),
|
||||||
updateMissingFingerprints: () =>
|
|
||||||
ipcRenderer.invoke("updateMissingFingerprints"),
|
|
||||||
removeDownloadSource: (url: string, removeAll?: boolean) =>
|
removeDownloadSource: (url: string, removeAll?: boolean) =>
|
||||||
ipcRenderer.invoke("removeDownloadSource", url, removeAll),
|
ipcRenderer.invoke("removeDownloadSource", url, removeAll),
|
||||||
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
|
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
|
||||||
deleteDownloadSource: (id: number) =>
|
|
||||||
ipcRenderer.invoke("deleteDownloadSource", id),
|
|
||||||
deleteAllDownloadSources: () =>
|
|
||||||
ipcRenderer.invoke("deleteAllDownloadSources"),
|
|
||||||
validateDownloadSource: (url: string) =>
|
|
||||||
ipcRenderer.invoke("validateDownloadSource", url),
|
|
||||||
syncDownloadSources: () => ipcRenderer.invoke("syncDownloadSources"),
|
syncDownloadSources: () => ipcRenderer.invoke("syncDownloadSources"),
|
||||||
getDownloadSourcesList: () => ipcRenderer.invoke("getDownloadSourcesList"),
|
|
||||||
checkDownloadSourceExists: (url: string) =>
|
|
||||||
ipcRenderer.invoke("checkDownloadSourceExists", url),
|
|
||||||
getAllRepacks: () => ipcRenderer.invoke("getAllRepacks"),
|
|
||||||
|
|
||||||
/* Library */
|
/* Library */
|
||||||
toggleAutomaticCloudSync: (
|
toggleAutomaticCloudSync: (
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import {
|
|||||||
useAppSelector,
|
useAppSelector,
|
||||||
useDownload,
|
useDownload,
|
||||||
useLibrary,
|
useLibrary,
|
||||||
useRepacks,
|
|
||||||
useToast,
|
useToast,
|
||||||
useUserDetails,
|
useUserDetails,
|
||||||
} from "@renderer/hooks";
|
} from "@renderer/hooks";
|
||||||
@@ -20,7 +19,6 @@ import {
|
|||||||
setUserDetails,
|
setUserDetails,
|
||||||
setProfileBackground,
|
setProfileBackground,
|
||||||
setGameRunning,
|
setGameRunning,
|
||||||
setIsImportingSources,
|
|
||||||
} from "@renderer/features";
|
} from "@renderer/features";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { UserFriendModal } from "./pages/shared-modals/user-friend-modal";
|
import { UserFriendModal } from "./pages/shared-modals/user-friend-modal";
|
||||||
@@ -40,8 +38,6 @@ export function App() {
|
|||||||
|
|
||||||
const { t } = useTranslation("app");
|
const { t } = useTranslation("app");
|
||||||
|
|
||||||
const { updateRepacks } = useRepacks();
|
|
||||||
|
|
||||||
const { clearDownload, setLastPacket } = useDownload();
|
const { clearDownload, setLastPacket } = useDownload();
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -199,36 +195,6 @@ export function App() {
|
|||||||
});
|
});
|
||||||
}, [dispatch, draggingDisabled]);
|
}, [dispatch, draggingDisabled]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
(async () => {
|
|
||||||
dispatch(setIsImportingSources(true));
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Initial repacks load
|
|
||||||
await updateRepacks();
|
|
||||||
|
|
||||||
// Sync all local sources (check for updates)
|
|
||||||
const newRepacksCount = await window.electron.syncDownloadSources();
|
|
||||||
|
|
||||||
if (newRepacksCount > 0) {
|
|
||||||
window.electron.publishNewRepacksNotification(newRepacksCount);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update fingerprints for sources that don't have them
|
|
||||||
await window.electron.updateMissingFingerprints();
|
|
||||||
|
|
||||||
// Update repacks AFTER all syncing and fingerprint updates are complete
|
|
||||||
await updateRepacks();
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error syncing download sources:", error);
|
|
||||||
// Still update repacks even if sync fails
|
|
||||||
await updateRepacks();
|
|
||||||
} finally {
|
|
||||||
dispatch(setIsImportingSources(false));
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
}, [updateRepacks, dispatch]);
|
|
||||||
|
|
||||||
const loadAndApplyTheme = useCallback(async () => {
|
const loadAndApplyTheme = useCallback(async () => {
|
||||||
const activeTheme = await window.electron.getActiveCustomTheme();
|
const activeTheme = await window.electron.getActiveCustomTheme();
|
||||||
if (activeTheme?.code) {
|
if (activeTheme?.code) {
|
||||||
@@ -313,7 +279,11 @@ export function App() {
|
|||||||
<article className="container">
|
<article className="container">
|
||||||
<Header />
|
<Header />
|
||||||
|
|
||||||
<section ref={contentRef} className="container__content">
|
<section
|
||||||
|
ref={contentRef}
|
||||||
|
id="scrollableDiv"
|
||||||
|
className="container__content"
|
||||||
|
>
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { DownloadIcon, PeopleIcon } from "@primer/octicons-react";
|
import { DownloadIcon, PeopleIcon } from "@primer/octicons-react";
|
||||||
import type { GameStats } from "@types";
|
import type { GameStats, ShopAssets } from "@types";
|
||||||
|
|
||||||
import SteamLogo from "@renderer/assets/steam-logo.svg?react";
|
import SteamLogo from "@renderer/assets/steam-logo.svg?react";
|
||||||
|
|
||||||
@@ -8,15 +8,15 @@ import "./game-card.scss";
|
|||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { Badge } from "../badge/badge";
|
import { Badge } from "../badge/badge";
|
||||||
import { StarRating } from "../star-rating/star-rating";
|
import { StarRating } from "../star-rating/star-rating";
|
||||||
import { useCallback, useState, useMemo } from "react";
|
import { useCallback, useState } from "react";
|
||||||
import { useFormat, useRepacks } from "@renderer/hooks";
|
import { useFormat } from "@renderer/hooks";
|
||||||
|
|
||||||
export interface GameCardProps
|
export interface GameCardProps
|
||||||
extends React.DetailedHTMLProps<
|
extends React.DetailedHTMLProps<
|
||||||
React.ButtonHTMLAttributes<HTMLButtonElement>,
|
React.ButtonHTMLAttributes<HTMLButtonElement>,
|
||||||
HTMLButtonElement
|
HTMLButtonElement
|
||||||
> {
|
> {
|
||||||
game: any;
|
game: ShopAssets;
|
||||||
}
|
}
|
||||||
|
|
||||||
const shopIcon = {
|
const shopIcon = {
|
||||||
@@ -28,13 +28,6 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
|||||||
|
|
||||||
const [stats, setStats] = useState<GameStats | null>(null);
|
const [stats, setStats] = useState<GameStats | null>(null);
|
||||||
|
|
||||||
const { getRepacksForObjectId } = useRepacks();
|
|
||||||
const repacks = getRepacksForObjectId(game.objectId);
|
|
||||||
|
|
||||||
const uniqueRepackers = Array.from(
|
|
||||||
new Set(repacks.map((repack) => repack.repacker))
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleHover = useCallback(() => {
|
const handleHover = useCallback(() => {
|
||||||
if (!stats) {
|
if (!stats) {
|
||||||
window.electron.getGameStats(game.objectId, game.shop).then((stats) => {
|
window.electron.getGameStats(game.objectId, game.shop).then((stats) => {
|
||||||
@@ -45,15 +38,6 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
|||||||
|
|
||||||
const { numberFormatter } = useFormat();
|
const { numberFormatter } = useFormat();
|
||||||
|
|
||||||
const firstThreeRepackers = useMemo(
|
|
||||||
() => uniqueRepackers.slice(0, 3),
|
|
||||||
[uniqueRepackers]
|
|
||||||
);
|
|
||||||
const remainingCount = useMemo(
|
|
||||||
() => uniqueRepackers.length - 3,
|
|
||||||
[uniqueRepackers]
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
{...props}
|
{...props}
|
||||||
@@ -75,18 +59,20 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
|||||||
<p className="game-card__title">{game.title}</p>
|
<p className="game-card__title">{game.title}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{uniqueRepackers.length > 0 ? (
|
{game.downloadSources.length > 0 ? (
|
||||||
<ul className="game-card__download-options">
|
<ul className="game-card__download-options">
|
||||||
{firstThreeRepackers.map((repacker) => (
|
{game.downloadSources.slice(0, 3).map((sourceName) => (
|
||||||
<li key={repacker}>
|
<li key={sourceName}>
|
||||||
<Badge>{repacker}</Badge>
|
<Badge>{sourceName}</Badge>
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
{remainingCount > 0 && (
|
{game.downloadSources.length > 3 && (
|
||||||
<li>
|
<li>
|
||||||
<Badge>
|
<Badge>
|
||||||
+{remainingCount}{" "}
|
+{game.downloadSources.length - 3}{" "}
|
||||||
{t("game_card:available", { count: remainingCount })}
|
{t("game_card:available", {
|
||||||
|
count: game.downloadSources.length - 3,
|
||||||
|
})}
|
||||||
</Badge>
|
</Badge>
|
||||||
</li>
|
</li>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ export function Header() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const handleSearch = (value: string) => {
|
const handleSearch = (value: string) => {
|
||||||
dispatch(setFilters({ title: value }));
|
dispatch(setFilters({ title: value.slice(0, 255) }));
|
||||||
|
|
||||||
if (!location.pathname.startsWith("/catalogue")) {
|
if (!location.pathname.startsWith("/catalogue")) {
|
||||||
navigate("/catalogue");
|
navigate("/catalogue");
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import React, { useId, useMemo, useState } from "react";
|
import React, { useId, useState } from "react";
|
||||||
import { EyeClosedIcon, EyeIcon } from "@primer/octicons-react";
|
import { EyeClosedIcon, EyeIcon } from "@primer/octicons-react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import cn from "classnames";
|
import cn from "classnames";
|
||||||
|
|
||||||
import "./text-field.scss";
|
import "./text-field.scss";
|
||||||
|
|
||||||
export interface TextFieldProps
|
export interface TextFieldProps
|
||||||
@@ -42,44 +40,30 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
|
|||||||
) => {
|
) => {
|
||||||
const id = useId();
|
const id = useId();
|
||||||
const [isFocused, setIsFocused] = useState(false);
|
const [isFocused, setIsFocused] = useState(false);
|
||||||
|
|
||||||
const [isPasswordVisible, setIsPasswordVisible] = useState(false);
|
const [isPasswordVisible, setIsPasswordVisible] = useState(false);
|
||||||
|
|
||||||
const { t } = useTranslation("forms");
|
const { t } = useTranslation("forms");
|
||||||
|
|
||||||
const showPasswordToggleButton = props.type === "password";
|
const showPasswordToggleButton = props.type === "password";
|
||||||
|
const inputType =
|
||||||
const inputType = useMemo(() => {
|
props.type === "password" && isPasswordVisible
|
||||||
if (props.type === "password" && isPasswordVisible) return "text";
|
? "text"
|
||||||
return props.type ?? "text";
|
: (props.type ?? "text");
|
||||||
}, [props.type, isPasswordVisible]);
|
const hintContent = error ? (
|
||||||
|
<small className="text-field-container__error-label">{error}</small>
|
||||||
const hintContent = useMemo(() => {
|
) : hint ? (
|
||||||
if (error)
|
<small>{hint}</small>
|
||||||
return (
|
) : null;
|
||||||
<small className="text-field-container__error-label">{error}</small>
|
|
||||||
);
|
|
||||||
|
|
||||||
if (hint) return <small>{hint}</small>;
|
|
||||||
return null;
|
|
||||||
}, [hint, error]);
|
|
||||||
|
|
||||||
const handleFocus: React.FocusEventHandler<HTMLInputElement> = (event) => {
|
const handleFocus: React.FocusEventHandler<HTMLInputElement> = (event) => {
|
||||||
setIsFocused(true);
|
setIsFocused(true);
|
||||||
if (props.onFocus) props.onFocus(event);
|
props.onFocus?.(event);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBlur: React.FocusEventHandler<HTMLInputElement> = (event) => {
|
const handleBlur: React.FocusEventHandler<HTMLInputElement> = (event) => {
|
||||||
setIsFocused(false);
|
setIsFocused(false);
|
||||||
if (props.onBlur) props.onBlur(event);
|
props.onBlur?.(event);
|
||||||
};
|
};
|
||||||
|
|
||||||
const hasError = !!error;
|
const hasError = !!error;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="text-field-container" {...containerProps}>
|
<div className="text-field-container" {...containerProps}>
|
||||||
{label && <label htmlFor={id}>{label}</label>}
|
{label && <label htmlFor={id}>{label}</label>}
|
||||||
|
|
||||||
<div className="text-field-container__text-field-wrapper">
|
<div className="text-field-container__text-field-wrapper">
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
@@ -104,7 +88,6 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
|
|||||||
onBlur={handleBlur}
|
onBlur={handleBlur}
|
||||||
type={inputType}
|
type={inputType}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{showPasswordToggleButton && (
|
{showPasswordToggleButton && (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -120,14 +103,11 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
|
|||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{rightContent}
|
{rightContent}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{hintContent}
|
{hintContent}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
TextField.displayName = "TextField";
|
TextField.displayName = "TextField";
|
||||||
|
|||||||
@@ -1,11 +1,4 @@
|
|||||||
import {
|
import { createContext, useCallback, useEffect, useRef, useState } from "react";
|
||||||
createContext,
|
|
||||||
useCallback,
|
|
||||||
useEffect,
|
|
||||||
useMemo,
|
|
||||||
useRef,
|
|
||||||
useState,
|
|
||||||
} from "react";
|
|
||||||
|
|
||||||
import { setHeaderTitle } from "@renderer/features";
|
import { setHeaderTitle } from "@renderer/features";
|
||||||
import { getSteamLanguage } from "@renderer/helpers";
|
import { getSteamLanguage } from "@renderer/helpers";
|
||||||
@@ -13,11 +6,11 @@ import {
|
|||||||
useAppDispatch,
|
useAppDispatch,
|
||||||
useAppSelector,
|
useAppSelector,
|
||||||
useDownload,
|
useDownload,
|
||||||
useRepacks,
|
|
||||||
useUserDetails,
|
useUserDetails,
|
||||||
} from "@renderer/hooks";
|
} from "@renderer/hooks";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
|
GameRepack,
|
||||||
GameShop,
|
GameShop,
|
||||||
GameStats,
|
GameStats,
|
||||||
LibraryGame,
|
LibraryGame,
|
||||||
@@ -84,12 +77,7 @@ export function GameDetailsContextProvider({
|
|||||||
const [isGameRunning, setIsGameRunning] = useState(false);
|
const [isGameRunning, setIsGameRunning] = useState(false);
|
||||||
const [showRepacksModal, setShowRepacksModal] = useState(false);
|
const [showRepacksModal, setShowRepacksModal] = useState(false);
|
||||||
const [showGameOptionsModal, setShowGameOptionsModal] = useState(false);
|
const [showGameOptionsModal, setShowGameOptionsModal] = useState(false);
|
||||||
|
const [repacks, setRepacks] = useState<GameRepack[]>([]);
|
||||||
const { getRepacksForObjectId } = useRepacks();
|
|
||||||
|
|
||||||
const repacks = useMemo(() => {
|
|
||||||
return getRepacksForObjectId(objectId);
|
|
||||||
}, [getRepacksForObjectId, objectId]);
|
|
||||||
|
|
||||||
const { i18n } = useTranslation("game_details");
|
const { i18n } = useTranslation("game_details");
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
@@ -289,19 +277,6 @@ export function GameDetailsContextProvider({
|
|||||||
}
|
}
|
||||||
}, [location]);
|
}, [location]);
|
||||||
|
|
||||||
const lastDownloadedOption = useMemo(() => {
|
|
||||||
if (game?.download) {
|
|
||||||
const repack = repacks.find((repack) =>
|
|
||||||
repack.uris.some((uri) => uri.includes(game.download!.uri))
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!repack) return null;
|
|
||||||
return repack;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}, [game?.download, repacks]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const unsubscribe = window.electron.onUpdateAchievements(
|
const unsubscribe = window.electron.onUpdateAchievements(
|
||||||
objectId,
|
objectId,
|
||||||
@@ -317,6 +292,36 @@ export function GameDetailsContextProvider({
|
|||||||
};
|
};
|
||||||
}, [objectId, shop, userDetails]);
|
}, [objectId, shop, userDetails]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (shop === "custom") return;
|
||||||
|
|
||||||
|
const fetchDownloadSources = async () => {
|
||||||
|
try {
|
||||||
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
|
||||||
|
const params = {
|
||||||
|
take: 100,
|
||||||
|
skip: 0,
|
||||||
|
downloadSourceIds: sources.map((source) => source.id),
|
||||||
|
};
|
||||||
|
|
||||||
|
const downloads = await window.electron.hydraApi.get<GameRepack[]>(
|
||||||
|
`/games/${shop}/${objectId}/download-sources`,
|
||||||
|
{
|
||||||
|
params,
|
||||||
|
needsAuth: false,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
setRepacks(downloads);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to fetch download sources:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchDownloadSources();
|
||||||
|
}, [shop, objectId]);
|
||||||
|
|
||||||
const getDownloadsPath = async () => {
|
const getDownloadsPath = async () => {
|
||||||
if (userPreferences?.downloadsPath) return userPreferences.downloadsPath;
|
if (userPreferences?.downloadsPath) return userPreferences.downloadsPath;
|
||||||
return window.electron.getDefaultDownloadsPath();
|
return window.electron.getDefaultDownloadsPath();
|
||||||
@@ -361,7 +366,7 @@ export function GameDetailsContextProvider({
|
|||||||
stats,
|
stats,
|
||||||
achievements,
|
achievements,
|
||||||
hasNSFWContentBlocked,
|
hasNSFWContentBlocked,
|
||||||
lastDownloadedOption,
|
lastDownloadedOption: null,
|
||||||
setHasNSFWContentBlocked,
|
setHasNSFWContentBlocked,
|
||||||
selectGameExecutable,
|
selectGameExecutable,
|
||||||
updateGame,
|
updateGame,
|
||||||
|
|||||||
@@ -14,12 +14,15 @@ export interface UserProfileContext {
|
|||||||
isMe: boolean;
|
isMe: boolean;
|
||||||
userStats: UserStats | null;
|
userStats: UserStats | null;
|
||||||
getUserProfile: () => Promise<void>;
|
getUserProfile: () => Promise<void>;
|
||||||
getUserLibraryGames: (sortBy?: string) => Promise<void>;
|
getUserLibraryGames: (sortBy?: string, reset?: boolean) => Promise<void>;
|
||||||
|
loadMoreLibraryGames: (sortBy?: string) => Promise<boolean>;
|
||||||
setSelectedBackgroundImage: React.Dispatch<React.SetStateAction<string>>;
|
setSelectedBackgroundImage: React.Dispatch<React.SetStateAction<string>>;
|
||||||
backgroundImage: string;
|
backgroundImage: string;
|
||||||
badges: Badge[];
|
badges: Badge[];
|
||||||
libraryGames: UserGame[];
|
libraryGames: UserGame[];
|
||||||
pinnedGames: UserGame[];
|
pinnedGames: UserGame[];
|
||||||
|
hasMoreLibraryGames: boolean;
|
||||||
|
isLoadingLibraryGames: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DEFAULT_USER_PROFILE_BACKGROUND = "#151515B3";
|
export const DEFAULT_USER_PROFILE_BACKGROUND = "#151515B3";
|
||||||
@@ -30,12 +33,15 @@ export const userProfileContext = createContext<UserProfileContext>({
|
|||||||
isMe: false,
|
isMe: false,
|
||||||
userStats: null,
|
userStats: null,
|
||||||
getUserProfile: async () => {},
|
getUserProfile: async () => {},
|
||||||
getUserLibraryGames: async (_sortBy?: string) => {},
|
getUserLibraryGames: async (_sortBy?: string, _reset?: boolean) => {},
|
||||||
|
loadMoreLibraryGames: async (_sortBy?: string) => false,
|
||||||
setSelectedBackgroundImage: () => {},
|
setSelectedBackgroundImage: () => {},
|
||||||
backgroundImage: "",
|
backgroundImage: "",
|
||||||
badges: [],
|
badges: [],
|
||||||
libraryGames: [],
|
libraryGames: [],
|
||||||
pinnedGames: [],
|
pinnedGames: [],
|
||||||
|
hasMoreLibraryGames: false,
|
||||||
|
isLoadingLibraryGames: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const { Provider } = userProfileContext;
|
const { Provider } = userProfileContext;
|
||||||
@@ -62,6 +68,9 @@ export function UserProfileContextProvider({
|
|||||||
DEFAULT_USER_PROFILE_BACKGROUND
|
DEFAULT_USER_PROFILE_BACKGROUND
|
||||||
);
|
);
|
||||||
const [selectedBackgroundImage, setSelectedBackgroundImage] = useState("");
|
const [selectedBackgroundImage, setSelectedBackgroundImage] = useState("");
|
||||||
|
const [libraryPage, setLibraryPage] = useState(0);
|
||||||
|
const [hasMoreLibraryGames, setHasMoreLibraryGames] = useState(true);
|
||||||
|
const [isLoadingLibraryGames, setIsLoadingLibraryGames] = useState(false);
|
||||||
|
|
||||||
const isMe = userDetails?.id === userProfile?.id;
|
const isMe = userDetails?.id === userProfile?.id;
|
||||||
|
|
||||||
@@ -93,7 +102,13 @@ export function UserProfileContextProvider({
|
|||||||
}, [userId]);
|
}, [userId]);
|
||||||
|
|
||||||
const getUserLibraryGames = useCallback(
|
const getUserLibraryGames = useCallback(
|
||||||
async (sortBy?: string) => {
|
async (sortBy?: string, reset = true) => {
|
||||||
|
if (reset) {
|
||||||
|
setLibraryPage(0);
|
||||||
|
setHasMoreLibraryGames(true);
|
||||||
|
setIsLoadingLibraryGames(true);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const params = new URLSearchParams();
|
const params = new URLSearchParams();
|
||||||
params.append("take", "12");
|
params.append("take", "12");
|
||||||
@@ -115,18 +130,74 @@ export function UserProfileContextProvider({
|
|||||||
if (response) {
|
if (response) {
|
||||||
setLibraryGames(response.library);
|
setLibraryGames(response.library);
|
||||||
setPinnedGames(response.pinnedGames);
|
setPinnedGames(response.pinnedGames);
|
||||||
|
setHasMoreLibraryGames(response.library.length === 12);
|
||||||
} else {
|
} else {
|
||||||
setLibraryGames([]);
|
setLibraryGames([]);
|
||||||
setPinnedGames([]);
|
setPinnedGames([]);
|
||||||
|
setHasMoreLibraryGames(false);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
setLibraryGames([]);
|
setLibraryGames([]);
|
||||||
setPinnedGames([]);
|
setPinnedGames([]);
|
||||||
|
setHasMoreLibraryGames(false);
|
||||||
|
} finally {
|
||||||
|
setIsLoadingLibraryGames(false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[userId]
|
[userId]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const loadMoreLibraryGames = useCallback(
|
||||||
|
async (sortBy?: string): Promise<boolean> => {
|
||||||
|
if (isLoadingLibraryGames || !hasMoreLibraryGames) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsLoadingLibraryGames(true);
|
||||||
|
try {
|
||||||
|
const nextPage = libraryPage + 1;
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
params.append("take", "12");
|
||||||
|
params.append("skip", String(nextPage * 12));
|
||||||
|
if (sortBy) {
|
||||||
|
params.append("sortBy", sortBy);
|
||||||
|
}
|
||||||
|
|
||||||
|
const queryString = params.toString();
|
||||||
|
const url = queryString
|
||||||
|
? `/users/${userId}/library?${queryString}`
|
||||||
|
: `/users/${userId}/library`;
|
||||||
|
|
||||||
|
const response = await window.electron.hydraApi.get<{
|
||||||
|
library: UserGame[];
|
||||||
|
pinnedGames: UserGame[];
|
||||||
|
}>(url);
|
||||||
|
|
||||||
|
if (response && response.library.length > 0) {
|
||||||
|
setLibraryGames((prev) => {
|
||||||
|
const existingIds = new Set(prev.map((game) => game.objectId));
|
||||||
|
const newGames = response.library.filter(
|
||||||
|
(game) => !existingIds.has(game.objectId)
|
||||||
|
);
|
||||||
|
return [...prev, ...newGames];
|
||||||
|
});
|
||||||
|
setLibraryPage(nextPage);
|
||||||
|
setHasMoreLibraryGames(response.library.length === 12);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
setHasMoreLibraryGames(false);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
setHasMoreLibraryGames(false);
|
||||||
|
return false;
|
||||||
|
} finally {
|
||||||
|
setIsLoadingLibraryGames(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[userId, libraryPage, hasMoreLibraryGames, isLoadingLibraryGames]
|
||||||
|
);
|
||||||
|
|
||||||
const getUserProfile = useCallback(async () => {
|
const getUserProfile = useCallback(async () => {
|
||||||
getUserStats();
|
getUserStats();
|
||||||
getUserLibraryGames();
|
getUserLibraryGames();
|
||||||
@@ -164,6 +235,8 @@ export function UserProfileContextProvider({
|
|||||||
setLibraryGames([]);
|
setLibraryGames([]);
|
||||||
setPinnedGames([]);
|
setPinnedGames([]);
|
||||||
setHeroBackground(DEFAULT_USER_PROFILE_BACKGROUND);
|
setHeroBackground(DEFAULT_USER_PROFILE_BACKGROUND);
|
||||||
|
setLibraryPage(0);
|
||||||
|
setHasMoreLibraryGames(true);
|
||||||
|
|
||||||
getUserProfile();
|
getUserProfile();
|
||||||
getBadges();
|
getBadges();
|
||||||
@@ -177,12 +250,15 @@ export function UserProfileContextProvider({
|
|||||||
isMe,
|
isMe,
|
||||||
getUserProfile,
|
getUserProfile,
|
||||||
getUserLibraryGames,
|
getUserLibraryGames,
|
||||||
|
loadMoreLibraryGames,
|
||||||
setSelectedBackgroundImage,
|
setSelectedBackgroundImage,
|
||||||
backgroundImage: getBackgroundImageUrl(),
|
backgroundImage: getBackgroundImageUrl(),
|
||||||
userStats,
|
userStats,
|
||||||
badges,
|
badges,
|
||||||
libraryGames,
|
libraryGames,
|
||||||
pinnedGames,
|
pinnedGames,
|
||||||
|
hasMoreLibraryGames,
|
||||||
|
isLoadingLibraryGames,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
22
src/renderer/src/declaration.d.ts
vendored
22
src/renderer/src/declaration.d.ts
vendored
@@ -31,8 +31,6 @@ import type {
|
|||||||
Game,
|
Game,
|
||||||
DiskUsage,
|
DiskUsage,
|
||||||
DownloadSource,
|
DownloadSource,
|
||||||
DownloadSourceValidationResult,
|
|
||||||
GameRepack,
|
|
||||||
} from "@types";
|
} from "@types";
|
||||||
import type { AxiosProgressEvent } from "axios";
|
import type { AxiosProgressEvent } from "axios";
|
||||||
|
|
||||||
@@ -210,20 +208,12 @@ declare global {
|
|||||||
|
|
||||||
/* Download sources */
|
/* Download sources */
|
||||||
addDownloadSource: (url: string) => Promise<DownloadSource>;
|
addDownloadSource: (url: string) => Promise<DownloadSource>;
|
||||||
updateMissingFingerprints: () => Promise<number>;
|
removeDownloadSource: (
|
||||||
removeDownloadSource: (url: string, removeAll?: boolean) => Promise<void>;
|
removeAll = false,
|
||||||
getDownloadSources: () => Promise<
|
downloadSourceId?: string
|
||||||
Pick<DownloadSource, "url" | "createdAt" | "updatedAt">[]
|
) => Promise<void>;
|
||||||
>;
|
getDownloadSources: () => Promise<DownloadSource[]>;
|
||||||
deleteDownloadSource: (id: number) => Promise<void>;
|
syncDownloadSources: () => Promise<void>;
|
||||||
deleteAllDownloadSources: () => Promise<void>;
|
|
||||||
validateDownloadSource: (
|
|
||||||
url: string
|
|
||||||
) => Promise<DownloadSourceValidationResult>;
|
|
||||||
syncDownloadSources: () => Promise<number>;
|
|
||||||
getDownloadSourcesList: () => Promise<DownloadSource[]>;
|
|
||||||
checkDownloadSourceExists: (url: string) => Promise<boolean>;
|
|
||||||
getAllRepacks: () => Promise<GameRepack[]>;
|
|
||||||
|
|
||||||
/* Hardware */
|
/* Hardware */
|
||||||
getDiskFreeSpace: (path: string) => Promise<DiskUsage>;
|
getDiskFreeSpace: (path: string) => Promise<DiskUsage>;
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
import { createSlice } from "@reduxjs/toolkit";
|
|
||||||
|
|
||||||
export interface DownloadSourcesState {
|
|
||||||
isImporting: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
const initialState: DownloadSourcesState = {
|
|
||||||
isImporting: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const downloadSourcesSlice = createSlice({
|
|
||||||
name: "downloadSources",
|
|
||||||
initialState,
|
|
||||||
reducers: {
|
|
||||||
setIsImportingSources: (state, action) => {
|
|
||||||
state.isImporting = action.payload;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
export const { setIsImportingSources } = downloadSourcesSlice.actions;
|
|
||||||
@@ -6,6 +6,4 @@ export * from "./toast-slice";
|
|||||||
export * from "./user-details-slice";
|
export * from "./user-details-slice";
|
||||||
export * from "./game-running.slice";
|
export * from "./game-running.slice";
|
||||||
export * from "./subscription-slice";
|
export * from "./subscription-slice";
|
||||||
export * from "./repacks-slice";
|
|
||||||
export * from "./download-sources-slice";
|
|
||||||
export * from "./catalogue-search";
|
export * from "./catalogue-search";
|
||||||
|
|||||||
@@ -5,5 +5,4 @@ export * from "./use-toast";
|
|||||||
export * from "./redux";
|
export * from "./redux";
|
||||||
export * from "./use-user-details";
|
export * from "./use-user-details";
|
||||||
export * from "./use-format";
|
export * from "./use-format";
|
||||||
export * from "./use-repacks";
|
|
||||||
export * from "./use-feature";
|
export * from "./use-feature";
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import axios from "axios";
|
|||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useState } from "react";
|
||||||
import { useAppDispatch } from "./redux";
|
import { useAppDispatch } from "./redux";
|
||||||
import { setGenres, setTags } from "@renderer/features";
|
import { setGenres, setTags } from "@renderer/features";
|
||||||
|
import type { DownloadSource } from "@types";
|
||||||
|
|
||||||
export const externalResourcesInstance = axios.create({
|
export const externalResourcesInstance = axios.create({
|
||||||
baseURL: import.meta.env.RENDERER_VITE_EXTERNAL_RESOURCES_URL,
|
baseURL: import.meta.env.RENDERER_VITE_EXTERNAL_RESOURCES_URL,
|
||||||
@@ -12,6 +13,7 @@ export function useCatalogue() {
|
|||||||
|
|
||||||
const [steamPublishers, setSteamPublishers] = useState<string[]>([]);
|
const [steamPublishers, setSteamPublishers] = useState<string[]>([]);
|
||||||
const [steamDevelopers, setSteamDevelopers] = useState<string[]>([]);
|
const [steamDevelopers, setSteamDevelopers] = useState<string[]>([]);
|
||||||
|
const [downloadSources, setDownloadSources] = useState<DownloadSource[]>([]);
|
||||||
|
|
||||||
const getSteamUserTags = useCallback(() => {
|
const getSteamUserTags = useCallback(() => {
|
||||||
externalResourcesInstance.get("/steam-user-tags.json").then((response) => {
|
externalResourcesInstance.get("/steam-user-tags.json").then((response) => {
|
||||||
@@ -37,17 +39,25 @@ export function useCatalogue() {
|
|||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const getDownloadSources = useCallback(() => {
|
||||||
|
window.electron.getDownloadSources().then((results) => {
|
||||||
|
setDownloadSources(results.filter((source) => !!source.fingerprint));
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
getSteamUserTags();
|
getSteamUserTags();
|
||||||
getSteamGenres();
|
getSteamGenres();
|
||||||
getSteamPublishers();
|
getSteamPublishers();
|
||||||
getSteamDevelopers();
|
getSteamDevelopers();
|
||||||
|
getDownloadSources();
|
||||||
}, [
|
}, [
|
||||||
getSteamUserTags,
|
getSteamUserTags,
|
||||||
getSteamGenres,
|
getSteamGenres,
|
||||||
getSteamPublishers,
|
getSteamPublishers,
|
||||||
getSteamDevelopers,
|
getSteamDevelopers,
|
||||||
|
getDownloadSources,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return { steamPublishers, steamDevelopers };
|
return { steamPublishers, downloadSources, steamDevelopers };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
import { setRepacks } from "@renderer/features";
|
|
||||||
import { useCallback } from "react";
|
|
||||||
import { RootState } from "@renderer/store";
|
|
||||||
import { useSelector } from "react-redux";
|
|
||||||
import { useAppDispatch } from "./redux";
|
|
||||||
|
|
||||||
export function useRepacks() {
|
|
||||||
const dispatch = useAppDispatch();
|
|
||||||
const repacks = useSelector((state: RootState) => state.repacks.value);
|
|
||||||
|
|
||||||
const getRepacksForObjectId = useCallback(
|
|
||||||
(objectId: string) => {
|
|
||||||
return repacks.filter((repack) => repack.objectIds.includes(objectId));
|
|
||||||
},
|
|
||||||
[repacks]
|
|
||||||
);
|
|
||||||
|
|
||||||
const updateRepacks = useCallback(async () => {
|
|
||||||
const repacks = await window.electron.getAllRepacks();
|
|
||||||
dispatch(
|
|
||||||
setRepacks(repacks.filter((repack) => Array.isArray(repack.objectIds)))
|
|
||||||
);
|
|
||||||
}, [dispatch]);
|
|
||||||
|
|
||||||
return { getRepacksForObjectId, updateRepacks };
|
|
||||||
}
|
|
||||||
@@ -3,12 +3,14 @@ import { useState, useCallback } from "react";
|
|||||||
interface SectionCollapseState {
|
interface SectionCollapseState {
|
||||||
pinned: boolean;
|
pinned: boolean;
|
||||||
library: boolean;
|
library: boolean;
|
||||||
|
reviews: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useSectionCollapse() {
|
export function useSectionCollapse() {
|
||||||
const [collapseState, setCollapseState] = useState<SectionCollapseState>({
|
const [collapseState, setCollapseState] = useState<SectionCollapseState>({
|
||||||
pinned: false,
|
pinned: false,
|
||||||
library: false,
|
library: false,
|
||||||
|
reviews: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const toggleSection = useCallback((section: keyof SectionCollapseState) => {
|
const toggleSection = useCallback((section: keyof SectionCollapseState) => {
|
||||||
@@ -23,5 +25,6 @@ export function useSectionCollapse() {
|
|||||||
toggleSection,
|
toggleSection,
|
||||||
isPinnedCollapsed: collapseState.pinned,
|
isPinnedCollapsed: collapseState.pinned,
|
||||||
isLibraryCollapsed: collapseState.library,
|
isLibraryCollapsed: collapseState.library,
|
||||||
|
isReviewsCollapsed: collapseState.reviews,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
import type { CatalogueSearchResult, DownloadSource } from "@types";
|
import type {
|
||||||
|
CatalogueSearchResult,
|
||||||
|
CatalogueSearchPayload,
|
||||||
|
DownloadSource,
|
||||||
|
} from "@types";
|
||||||
|
|
||||||
import { useAppDispatch, useAppSelector, useFormat } from "@renderer/hooks";
|
import { useAppDispatch, useAppSelector, useFormat } from "@renderer/hooks";
|
||||||
import { useEffect, useMemo, useRef, useState } from "react";
|
import { useEffect, useMemo, useRef, useState } from "react";
|
||||||
@@ -29,13 +33,12 @@ export default function Catalogue() {
|
|||||||
const abortControllerRef = useRef<AbortController | null>(null);
|
const abortControllerRef = useRef<AbortController | null>(null);
|
||||||
const cataloguePageRef = useRef<HTMLDivElement>(null);
|
const cataloguePageRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const { steamDevelopers, steamPublishers } = useCatalogue();
|
const { steamDevelopers, steamPublishers, downloadSources } = useCatalogue();
|
||||||
|
|
||||||
const { steamGenres, steamUserTags } = useAppSelector(
|
const { steamGenres, steamUserTags, filters, page } = useAppSelector(
|
||||||
(state) => state.catalogueSearch
|
(state) => state.catalogueSearch
|
||||||
);
|
);
|
||||||
|
|
||||||
const [downloadSources, setDownloadSources] = useState<DownloadSource[]>([]);
|
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
const [isLoading, setIsLoading] = useState(true);
|
||||||
|
|
||||||
const [results, setResults] = useState<CatalogueSearchResult[]>([]);
|
const [results, setResults] = useState<CatalogueSearchResult[]>([]);
|
||||||
@@ -44,31 +47,46 @@ export default function Catalogue() {
|
|||||||
|
|
||||||
const { formatNumber } = useFormat();
|
const { formatNumber } = useFormat();
|
||||||
|
|
||||||
const { filters, page } = useAppSelector((state) => state.catalogueSearch);
|
|
||||||
|
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
|
|
||||||
const { t, i18n } = useTranslation("catalogue");
|
const { t, i18n } = useTranslation("catalogue");
|
||||||
|
|
||||||
const debouncedSearch = useRef(
|
const debouncedSearch = useRef(
|
||||||
debounce(async (filters, pageSize, offset) => {
|
debounce(
|
||||||
const abortController = new AbortController();
|
async (
|
||||||
abortControllerRef.current = abortController;
|
filters: CatalogueSearchPayload,
|
||||||
|
downloadSources: DownloadSource[],
|
||||||
|
pageSize: number,
|
||||||
|
offset: number
|
||||||
|
) => {
|
||||||
|
const abortController = new AbortController();
|
||||||
|
abortControllerRef.current = abortController;
|
||||||
|
|
||||||
const response = await window.electron.hydraApi.post<{
|
const requestData = {
|
||||||
edges: CatalogueSearchResult[];
|
...filters,
|
||||||
count: number;
|
take: pageSize,
|
||||||
}>("/catalogue/search", {
|
skip: offset,
|
||||||
data: { ...filters, take: pageSize, skip: offset },
|
downloadSourceIds: downloadSources.map(
|
||||||
needsAuth: false,
|
(downloadSource) => downloadSource.id
|
||||||
});
|
),
|
||||||
|
};
|
||||||
|
|
||||||
if (abortController.signal.aborted) return;
|
const response = await window.electron.hydraApi.post<{
|
||||||
|
edges: CatalogueSearchResult[];
|
||||||
|
count: number;
|
||||||
|
}>("/catalogue/search", {
|
||||||
|
data: requestData,
|
||||||
|
needsAuth: false,
|
||||||
|
});
|
||||||
|
|
||||||
setResults(response.edges);
|
if (abortController.signal.aborted) return;
|
||||||
setItemsCount(response.count);
|
|
||||||
setIsLoading(false);
|
setResults(response.edges);
|
||||||
}, 500)
|
setItemsCount(response.count);
|
||||||
|
setIsLoading(false);
|
||||||
|
},
|
||||||
|
500
|
||||||
|
)
|
||||||
).current;
|
).current;
|
||||||
|
|
||||||
const decodeHTML = (s: string) =>
|
const decodeHTML = (s: string) =>
|
||||||
@@ -79,18 +97,17 @@ export default function Catalogue() {
|
|||||||
setIsLoading(true);
|
setIsLoading(true);
|
||||||
abortControllerRef.current?.abort();
|
abortControllerRef.current?.abort();
|
||||||
|
|
||||||
debouncedSearch(filters, PAGE_SIZE, (page - 1) * PAGE_SIZE);
|
debouncedSearch(
|
||||||
|
filters,
|
||||||
|
downloadSources,
|
||||||
|
PAGE_SIZE,
|
||||||
|
(page - 1) * PAGE_SIZE
|
||||||
|
);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
debouncedSearch.cancel();
|
debouncedSearch.cancel();
|
||||||
};
|
};
|
||||||
}, [filters, page, debouncedSearch]);
|
}, [filters, downloadSources, page, debouncedSearch]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
window.electron.getDownloadSourcesList().then((sources) => {
|
|
||||||
setDownloadSources(sources.filter((source) => !!source.fingerprint));
|
|
||||||
});
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const language = i18n.language.split("-")[0];
|
const language = i18n.language.split("-")[0];
|
||||||
|
|
||||||
@@ -168,7 +185,7 @@ export default function Catalogue() {
|
|||||||
value: publisher,
|
value: publisher,
|
||||||
})),
|
})),
|
||||||
];
|
];
|
||||||
}, [filters, steamUserTags, steamGenresMapping, language, downloadSources]);
|
}, [filters, steamUserTags, downloadSources, steamGenresMapping, language]);
|
||||||
|
|
||||||
const filterSections = useMemo(() => {
|
const filterSections = useMemo(() => {
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { Badge } from "@renderer/components";
|
import { Badge } from "@renderer/components";
|
||||||
import { buildGameDetailsPath } from "@renderer/helpers";
|
import { buildGameDetailsPath } from "@renderer/helpers";
|
||||||
import { useAppSelector, useRepacks, useLibrary } from "@renderer/hooks";
|
import { useAppSelector, useLibrary } from "@renderer/hooks";
|
||||||
import { useMemo, useState, useEffect } from "react";
|
import { useMemo, useState, useEffect } from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
|
|
||||||
@@ -23,10 +23,6 @@ export function GameItem({ game }: GameItemProps) {
|
|||||||
|
|
||||||
const { steamGenres } = useAppSelector((state) => state.catalogueSearch);
|
const { steamGenres } = useAppSelector((state) => state.catalogueSearch);
|
||||||
|
|
||||||
const { getRepacksForObjectId } = useRepacks();
|
|
||||||
|
|
||||||
const repacks = getRepacksForObjectId(game.objectId);
|
|
||||||
|
|
||||||
const [isAddingToLibrary, setIsAddingToLibrary] = useState(false);
|
const [isAddingToLibrary, setIsAddingToLibrary] = useState(false);
|
||||||
|
|
||||||
const [added, setAdded] = useState(false);
|
const [added, setAdded] = useState(false);
|
||||||
@@ -63,10 +59,6 @@ export function GameItem({ game }: GameItemProps) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const uniqueRepackers = useMemo(() => {
|
|
||||||
return Array.from(new Set(repacks.map((repack) => repack.repacker)));
|
|
||||||
}, [repacks]);
|
|
||||||
|
|
||||||
const genres = useMemo(() => {
|
const genres = useMemo(() => {
|
||||||
return game.genres?.map((genre) => {
|
return game.genres?.map((genre) => {
|
||||||
const index = steamGenres["en"]?.findIndex(
|
const index = steamGenres["en"]?.findIndex(
|
||||||
@@ -117,8 +109,8 @@ export function GameItem({ game }: GameItemProps) {
|
|||||||
<span className="game-item__genres">{genres.join(", ")}</span>
|
<span className="game-item__genres">{genres.join(", ")}</span>
|
||||||
|
|
||||||
<div className="game-item__repackers">
|
<div className="game-item__repackers">
|
||||||
{uniqueRepackers.map((repacker) => (
|
{game.downloadSources.map((sourceName) => (
|
||||||
<Badge key={repacker}>{repacker}</Badge>
|
<Badge key={sourceName}>{sourceName}</Badge>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -29,9 +29,11 @@ function JumpControl({
|
|||||||
return isOpen ? (
|
return isOpen ? (
|
||||||
<input
|
<input
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
type="number"
|
type="text"
|
||||||
min={1}
|
min={1}
|
||||||
max={totalPages}
|
max={totalPages}
|
||||||
|
inputMode="numeric"
|
||||||
|
pattern="[0-9]*"
|
||||||
className="pagination__page-input"
|
className="pagination__page-input"
|
||||||
value={value}
|
value={value}
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
@@ -56,7 +58,7 @@ export function Pagination({
|
|||||||
page,
|
page,
|
||||||
totalPages,
|
totalPages,
|
||||||
onPageChange,
|
onPageChange,
|
||||||
}: PaginationProps) {
|
}: Readonly<PaginationProps>) {
|
||||||
const { formatNumber } = useFormat();
|
const { formatNumber } = useFormat();
|
||||||
|
|
||||||
const [isJumpOpen, setIsJumpOpen] = useState(false);
|
const [isJumpOpen, setIsJumpOpen] = useState(false);
|
||||||
@@ -87,13 +89,15 @@ export function Pagination({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const onJumpChange = (e: ChangeEvent<HTMLInputElement>) => {
|
const onJumpChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||||||
const val = e.target.value;
|
const raw = e.target.value;
|
||||||
if (val === "") {
|
const digitsOnly = raw.replaceAll(/\D+/g, "");
|
||||||
|
if (digitsOnly === "") {
|
||||||
setJumpValue("");
|
setJumpValue("");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const num = Number(val);
|
const num = Number.parseInt(digitsOnly, 10);
|
||||||
if (Number.isNaN(num)) {
|
if (Number.isNaN(num)) {
|
||||||
|
setJumpValue("");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (num < 1) {
|
if (num < 1) {
|
||||||
@@ -104,19 +108,36 @@ export function Pagination({
|
|||||||
setJumpValue(String(totalPages));
|
setJumpValue(String(totalPages));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setJumpValue(val);
|
setJumpValue(String(num));
|
||||||
};
|
};
|
||||||
|
|
||||||
const onJumpKeyDown = (e: KeyboardEvent<HTMLInputElement>) => {
|
const onJumpKeyDown = (e: KeyboardEvent<HTMLInputElement>) => {
|
||||||
|
const controlKeys = [
|
||||||
|
"Backspace",
|
||||||
|
"Delete",
|
||||||
|
"Tab",
|
||||||
|
"ArrowLeft",
|
||||||
|
"ArrowRight",
|
||||||
|
"Home",
|
||||||
|
"End",
|
||||||
|
];
|
||||||
|
|
||||||
|
if (controlKeys.includes(e.key) || e.ctrlKey || e.metaKey) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (e.key === "Enter") {
|
if (e.key === "Enter") {
|
||||||
if (jumpValue.trim() === "") return;
|
const sanitized = jumpValue.replaceAll(/\D+/g, "");
|
||||||
const parsed = Number(jumpValue);
|
if (sanitized.trim() === "") return;
|
||||||
|
const parsed = Number.parseInt(sanitized, 10);
|
||||||
if (Number.isNaN(parsed)) return;
|
if (Number.isNaN(parsed)) return;
|
||||||
const target = Math.max(1, Math.min(totalPages, parsed));
|
const target = Math.max(1, Math.min(totalPages, parsed));
|
||||||
onPageChange(target);
|
onPageChange(target);
|
||||||
setIsJumpOpen(false);
|
setIsJumpOpen(false);
|
||||||
} else if (e.key === "Escape") {
|
} else if (e.key === "Escape") {
|
||||||
setIsJumpOpen(false);
|
setIsJumpOpen(false);
|
||||||
|
} else if (!/^\d$/.test(e.key)) {
|
||||||
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,6 @@ export default function GameDetails() {
|
|||||||
automaticallyExtract: boolean
|
automaticallyExtract: boolean
|
||||||
) => {
|
) => {
|
||||||
const response = await startDownload({
|
const response = await startDownload({
|
||||||
repackId: repack.id,
|
|
||||||
objectId: objectId!,
|
objectId: objectId!,
|
||||||
title: gameTitle,
|
title: gameTitle,
|
||||||
downloader,
|
downloader,
|
||||||
|
|||||||
@@ -163,7 +163,6 @@ export function GameReviews({
|
|||||||
take: "20",
|
take: "20",
|
||||||
skip: skip.toString(),
|
skip: skip.toString(),
|
||||||
sortBy: reviewsSortBy,
|
sortBy: reviewsSortBy,
|
||||||
language: i18n.language,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const response = await window.electron.hydraApi.get(
|
const response = await window.electron.hydraApi.get(
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export function RepacksModal({
|
|||||||
{}
|
{}
|
||||||
);
|
);
|
||||||
|
|
||||||
const { repacks, game } = useContext(gameDetailsContext);
|
const { game, repacks } = useContext(gameDetailsContext);
|
||||||
|
|
||||||
const { t } = useTranslation("game_details");
|
const { t } = useTranslation("game_details");
|
||||||
|
|
||||||
@@ -88,6 +88,15 @@ export function RepacksModal({
|
|||||||
});
|
});
|
||||||
}, [repacks, isFeatureEnabled, Feature]);
|
}, [repacks, isFeatureEnabled, Feature]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchDownloadSources = async () => {
|
||||||
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchDownloadSources();
|
||||||
|
}, []);
|
||||||
|
|
||||||
const sortedRepacks = useMemo(() => {
|
const sortedRepacks = useMemo(() => {
|
||||||
return orderBy(
|
return orderBy(
|
||||||
repacks,
|
repacks,
|
||||||
@@ -103,23 +112,13 @@ export function RepacksModal({
|
|||||||
);
|
);
|
||||||
}, [repacks, hashesInDebrid]);
|
}, [repacks, hashesInDebrid]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
window.electron.getDownloadSourcesList().then((sources) => {
|
|
||||||
const uniqueRepackers = new Set(sortedRepacks.map((r) => r.repacker));
|
|
||||||
const filteredSources = sources.filter(
|
|
||||||
(s) => s.name && uniqueRepackers.has(s.name) && !!s.fingerprint
|
|
||||||
);
|
|
||||||
setDownloadSources(filteredSources);
|
|
||||||
});
|
|
||||||
}, [sortedRepacks]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const term = filterTerm.trim().toLowerCase();
|
const term = filterTerm.trim().toLowerCase();
|
||||||
|
|
||||||
const byTerm = sortedRepacks.filter((repack) => {
|
const byTerm = sortedRepacks.filter((repack) => {
|
||||||
if (!term) return true;
|
if (!term) return true;
|
||||||
const lowerTitle = repack.title.toLowerCase();
|
const lowerTitle = repack.title.toLowerCase();
|
||||||
const lowerRepacker = repack.repacker.toLowerCase();
|
const lowerRepacker = repack.downloadSourceName.toLowerCase();
|
||||||
return lowerTitle.includes(term) || lowerRepacker.includes(term);
|
return lowerTitle.includes(term) || lowerRepacker.includes(term);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -130,7 +129,7 @@ export function RepacksModal({
|
|||||||
(src) =>
|
(src) =>
|
||||||
src.fingerprint &&
|
src.fingerprint &&
|
||||||
selectedFingerprints.includes(src.fingerprint) &&
|
selectedFingerprints.includes(src.fingerprint) &&
|
||||||
src.name === repack.repacker
|
src.name === repack.downloadSourceName
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -281,7 +280,7 @@ export function RepacksModal({
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
<p className="repacks-modal__repack-info">
|
<p className="repacks-modal__repack-info">
|
||||||
{repack.fileSize} - {repack.repacker} -{" "}
|
{repack.fileSize} - {repack.downloadSourceName} -{" "}
|
||||||
{repack.uploadDate ? formatDate(repack.uploadDate) : ""}
|
{repack.uploadDate ? formatDate(repack.uploadDate) : ""}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,23 @@
|
|||||||
|
|
||||||
&__review-header {
|
&__review-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
flex-direction: column;
|
||||||
align-items: center;
|
gap: calc(globals.$spacing-unit * 1);
|
||||||
margin-bottom: calc(globals.$spacing-unit * 1.5);
|
margin-bottom: calc(globals.$spacing-unit * 1.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__review-header-top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__review-header-bottom {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
&__review-user {
|
&__review-user {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -22,7 +34,13 @@
|
|||||||
&__review-user-info {
|
&__review-user-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: calc(globals.$spacing-unit * 0.25);
|
gap: calc(globals.$spacing-unit * 0.45);
|
||||||
|
}
|
||||||
|
|
||||||
|
&__review-meta-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: calc(globals.$spacing-unit * 0.75);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__review-display-name {
|
&__review-display-name {
|
||||||
@@ -157,28 +175,28 @@
|
|||||||
&__review-score-stars {
|
&__review-score-stars {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 2px;
|
gap: 4px;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 2px 6px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__review-right {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__review-star {
|
&__review-star {
|
||||||
color: #666666;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
transition: color 0.2s ease;
|
transition: color 0.2s ease;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
&--filled {
|
&--filled {
|
||||||
color: #ffffff;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
|
||||||
&.game-details__review-score--red {
|
|
||||||
color: #fca5a5;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.game-details__review-score--yellow {
|
|
||||||
color: #fcd34d;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.game-details__review-score--green {
|
|
||||||
color: #86efac;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--empty {
|
&--empty {
|
||||||
@@ -198,6 +216,24 @@
|
|||||||
font-size: globals.$small-font-size;
|
font-size: globals.$small-font-size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__review-playtime {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 2px 6px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
margin-top: 0;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__review-content {
|
&__review-content {
|
||||||
color: globals.$body-color;
|
color: globals.$body-color;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|||||||
@@ -7,9 +7,10 @@ import { useState } from "react";
|
|||||||
import type { GameReview } from "@types";
|
import type { GameReview } from "@types";
|
||||||
|
|
||||||
import { sanitizeHtml } from "@shared";
|
import { sanitizeHtml } from "@shared";
|
||||||
import { useDate } from "@renderer/hooks";
|
import { useDate, useFormat } from "@renderer/hooks";
|
||||||
import { formatNumber } from "@renderer/helpers";
|
import { formatNumber } from "@renderer/helpers";
|
||||||
import { Avatar } from "@renderer/components";
|
import { Avatar } from "@renderer/components";
|
||||||
|
import { MAX_MINUTES_TO_SHOW_IN_PLAYTIME } from "@renderer/constants";
|
||||||
|
|
||||||
import "./review-item.scss";
|
import "./review-item.scss";
|
||||||
|
|
||||||
@@ -29,13 +30,6 @@ interface ReviewItemProps {
|
|||||||
) => void;
|
) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const getScoreColorClass = (score: number): string => {
|
|
||||||
if (score >= 1 && score <= 2) return "game-details__review-score--red";
|
|
||||||
if (score >= 3 && score <= 3) return "game-details__review-score--yellow";
|
|
||||||
if (score >= 4 && score <= 5) return "game-details__review-score--green";
|
|
||||||
return "";
|
|
||||||
};
|
|
||||||
|
|
||||||
const getRatingText = (score: number, t: (key: string) => string): string => {
|
const getRatingText = (score: number, t: (key: string) => string): string => {
|
||||||
switch (score) {
|
switch (score) {
|
||||||
case 1:
|
case 1:
|
||||||
@@ -68,28 +62,22 @@ export function ReviewItem({
|
|||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const { t, i18n } = useTranslation("game_details");
|
const { t, i18n } = useTranslation("game_details");
|
||||||
const { formatDistance } = useDate();
|
const { formatDistance } = useDate();
|
||||||
|
const { numberFormatter } = useFormat();
|
||||||
|
|
||||||
const [showOriginal, setShowOriginal] = useState(false);
|
const [showOriginal, setShowOriginal] = useState(false);
|
||||||
|
|
||||||
// Check if this is the user's own review
|
|
||||||
const isOwnReview = userDetailsId === review.user.id;
|
const isOwnReview = userDetailsId === review.user.id;
|
||||||
|
|
||||||
// Helper to get base language code (e.g., "pt" from "pt-BR")
|
const getBaseLanguage = (lang: string | null) => lang?.split("-")[0] || "";
|
||||||
const getBaseLanguage = (lang: string) => lang.split("-")[0];
|
|
||||||
|
|
||||||
// Check if the review is in a different language (comparing base language codes)
|
|
||||||
const isDifferentLanguage =
|
const isDifferentLanguage =
|
||||||
getBaseLanguage(review.detectedLanguage) !== getBaseLanguage(i18n.language);
|
getBaseLanguage(review.detectedLanguage) !== getBaseLanguage(i18n.language);
|
||||||
|
|
||||||
// Check if translation is available and needed (but not for own reviews)
|
|
||||||
const needsTranslation =
|
const needsTranslation =
|
||||||
!isOwnReview &&
|
!isOwnReview && isDifferentLanguage && review.translations[i18n.language];
|
||||||
isDifferentLanguage &&
|
|
||||||
review.translations &&
|
|
||||||
review.translations[i18n.language];
|
|
||||||
|
|
||||||
// Get the full language name using Intl.DisplayNames
|
const getLanguageName = (languageCode: string | null) => {
|
||||||
const getLanguageName = (languageCode: string) => {
|
if (!languageCode) return "";
|
||||||
try {
|
try {
|
||||||
const displayNames = new Intl.DisplayNames([i18n.language], {
|
const displayNames = new Intl.DisplayNames([i18n.language], {
|
||||||
type: "language",
|
type: "language",
|
||||||
@@ -100,6 +88,20 @@ export function ReviewItem({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Format playtime similar to hero panel
|
||||||
|
const formatPlayTime = (playTimeInSeconds: number) => {
|
||||||
|
const minutes = playTimeInSeconds / 60;
|
||||||
|
|
||||||
|
if (minutes < MAX_MINUTES_TO_SHOW_IN_PLAYTIME) {
|
||||||
|
return t("amount_minutes", {
|
||||||
|
amount: minutes.toFixed(0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const hours = minutes / 60;
|
||||||
|
return t("amount_hours", { amount: numberFormatter.format(hours) });
|
||||||
|
};
|
||||||
|
|
||||||
// Determine which content to show - always show original for own reviews
|
// Determine which content to show - always show original for own reviews
|
||||||
const displayContent = needsTranslation
|
const displayContent = needsTranslation
|
||||||
? review.translations[i18n.language]
|
? review.translations[i18n.language]
|
||||||
@@ -109,12 +111,12 @@ export function ReviewItem({
|
|||||||
return (
|
return (
|
||||||
<div className="game-details__review-item">
|
<div className="game-details__review-item">
|
||||||
<div className="game-details__blocked-review-simple">
|
<div className="game-details__blocked-review-simple">
|
||||||
Review from blocked user —{" "}
|
{t("review_from_blocked_user")}
|
||||||
<button
|
<button
|
||||||
className="game-details__blocked-review-show-link"
|
className="game-details__blocked-review-show-link"
|
||||||
onClick={() => onToggleVisibility(review.id)}
|
onClick={() => onToggleVisibility(review.id)}
|
||||||
>
|
>
|
||||||
Show
|
{t("show")}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -124,54 +126,61 @@ export function ReviewItem({
|
|||||||
return (
|
return (
|
||||||
<div className="game-details__review-item">
|
<div className="game-details__review-item">
|
||||||
<div className="game-details__review-header">
|
<div className="game-details__review-header">
|
||||||
<div className="game-details__review-user">
|
<div className="game-details__review-header-top">
|
||||||
<button
|
<div className="game-details__review-user">
|
||||||
onClick={() => navigate(`/profile/${review.user.id}`)}
|
|
||||||
title={review.user.displayName}
|
|
||||||
>
|
|
||||||
<Avatar
|
|
||||||
src={review.user.profileImageUrl}
|
|
||||||
alt={review.user.displayName || "User"}
|
|
||||||
size={40}
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
<div className="game-details__review-user-info">
|
|
||||||
<button
|
<button
|
||||||
className="game-details__review-display-name game-details__review-display-name--clickable"
|
onClick={() => navigate(`/profile/${review.user.id}`)}
|
||||||
onClick={() =>
|
title={review.user.displayName}
|
||||||
review.user.id && navigate(`/profile/${review.user.id}`)
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
{review.user.displayName || "Anonymous"}
|
<Avatar
|
||||||
|
src={review.user.profileImageUrl}
|
||||||
|
alt={review.user.displayName || "User"}
|
||||||
|
size={40}
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
<div className="game-details__review-date">
|
<div className="game-details__review-user-info">
|
||||||
<ClockIcon size={12} />
|
<button
|
||||||
{formatDistance(new Date(review.createdAt), new Date(), {
|
className="game-details__review-display-name game-details__review-display-name--clickable"
|
||||||
addSuffix: true,
|
onClick={() =>
|
||||||
})}
|
review.user.id && navigate(`/profile/${review.user.id}`)
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{review.user.displayName || "Anonymous"}
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="game-details__review-date">
|
||||||
|
{formatDistance(new Date(review.createdAt), new Date(), {
|
||||||
|
addSuffix: true,
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div className="game-details__review-header-bottom">
|
||||||
className="game-details__review-score-stars"
|
<div className="game-details__review-meta-row">
|
||||||
title={getRatingText(review.score, t)}
|
<div
|
||||||
>
|
className="game-details__review-score-stars"
|
||||||
{[1, 2, 3, 4, 5].map((starValue) => (
|
title={getRatingText(review.score, t)}
|
||||||
<Star
|
>
|
||||||
key={starValue}
|
<Star
|
||||||
size={20}
|
size={12}
|
||||||
fill={starValue <= review.score ? "currentColor" : "none"}
|
className="game-details__review-star game-details__review-star--filled"
|
||||||
className={`game-details__review-star ${
|
/>
|
||||||
starValue <= review.score
|
<span className="game-details__review-score-text">
|
||||||
? "game-details__review-star--filled"
|
{review.score}/5
|
||||||
: "game-details__review-star--empty"
|
</span>
|
||||||
} ${
|
</div>
|
||||||
starValue <= review.score
|
{Boolean(
|
||||||
? getScoreColorClass(review.score)
|
review.playTimeInSeconds && review.playTimeInSeconds > 0
|
||||||
: ""
|
) && (
|
||||||
}`}
|
<div className="game-details__review-playtime">
|
||||||
/>
|
<ClockIcon size={12} />
|
||||||
))}
|
<span>
|
||||||
|
{t("review_played_for")}{" "}
|
||||||
|
{formatPlayTime(review.playTimeInSeconds || 0)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@@ -323,7 +332,7 @@ export function ReviewItem({
|
|||||||
className="game-details__blocked-review-hide-link"
|
className="game-details__blocked-review-hide-link"
|
||||||
onClick={() => onToggleVisibility(review.id)}
|
onClick={() => onToggleVisibility(review.id)}
|
||||||
>
|
>
|
||||||
Hide
|
{t("hide")}
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -40,14 +40,20 @@ export default function Home() {
|
|||||||
setCurrentCatalogueCategory(category);
|
setCurrentCatalogueCategory(category);
|
||||||
setIsLoading(true);
|
setIsLoading(true);
|
||||||
|
|
||||||
const params = new URLSearchParams({
|
const downloadSources = await window.electron.getDownloadSources();
|
||||||
take: "12",
|
|
||||||
skip: "0",
|
const params = {
|
||||||
});
|
take: 12,
|
||||||
|
skip: 0,
|
||||||
|
downloadSourceIds: downloadSources.map((source) => source.id),
|
||||||
|
};
|
||||||
|
|
||||||
const catalogue = await window.electron.hydraApi.get<ShopAssets[]>(
|
const catalogue = await window.electron.hydraApi.get<ShopAssets[]>(
|
||||||
`/catalogue/${category}?${params.toString()}`,
|
`/catalogue/${category}`,
|
||||||
{ needsAuth: false }
|
{
|
||||||
|
params,
|
||||||
|
needsAuth: false,
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
setCatalogue((prev) => ({ ...prev, [category]: catalogue }));
|
setCatalogue((prev) => ({ ...prev, [category]: catalogue }));
|
||||||
|
|||||||
178
src/renderer/src/pages/profile/profile-content/library-tab.tsx
Normal file
178
src/renderer/src/pages/profile/profile-content/library-tab.tsx
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
import { motion } from "framer-motion";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { TelescopeIcon } from "@primer/octicons-react";
|
||||||
|
import InfiniteScroll from "react-infinite-scroll-component";
|
||||||
|
import { useFormat } from "@renderer/hooks";
|
||||||
|
import type { UserGame } from "@types";
|
||||||
|
import { SortOptions } from "./sort-options";
|
||||||
|
import { UserLibraryGameCard } from "./user-library-game-card";
|
||||||
|
import "./profile-content.scss";
|
||||||
|
|
||||||
|
type SortOption = "playtime" | "achievementCount" | "playedRecently";
|
||||||
|
|
||||||
|
interface LibraryTabProps {
|
||||||
|
sortBy: SortOption;
|
||||||
|
onSortChange: (sortBy: SortOption) => void;
|
||||||
|
pinnedGames: UserGame[];
|
||||||
|
libraryGames: UserGame[];
|
||||||
|
hasMoreLibraryGames: boolean;
|
||||||
|
isLoadingLibraryGames: boolean;
|
||||||
|
statsIndex: number;
|
||||||
|
userStats: { libraryCount: number } | null;
|
||||||
|
animatedGameIdsRef: React.MutableRefObject<Set<string>>;
|
||||||
|
onLoadMore: () => void;
|
||||||
|
onMouseEnter: () => void;
|
||||||
|
onMouseLeave: () => void;
|
||||||
|
isMe: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LibraryTab({
|
||||||
|
sortBy,
|
||||||
|
onSortChange,
|
||||||
|
pinnedGames,
|
||||||
|
libraryGames,
|
||||||
|
hasMoreLibraryGames,
|
||||||
|
isLoadingLibraryGames,
|
||||||
|
statsIndex,
|
||||||
|
userStats,
|
||||||
|
animatedGameIdsRef,
|
||||||
|
onLoadMore,
|
||||||
|
onMouseEnter,
|
||||||
|
onMouseLeave,
|
||||||
|
isMe,
|
||||||
|
}: Readonly<LibraryTabProps>) {
|
||||||
|
const { t } = useTranslation("user_profile");
|
||||||
|
const { numberFormatter } = useFormat();
|
||||||
|
|
||||||
|
const hasGames = libraryGames.length > 0;
|
||||||
|
const hasPinnedGames = pinnedGames.length > 0;
|
||||||
|
const hasAnyGames = hasGames || hasPinnedGames;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.div
|
||||||
|
key="library"
|
||||||
|
className="profile-content__tab-panel"
|
||||||
|
initial={{ opacity: 0, x: -10 }}
|
||||||
|
animate={{ opacity: 1, x: 0 }}
|
||||||
|
exit={{ opacity: 0, x: 10 }}
|
||||||
|
transition={{ duration: 0.2 }}
|
||||||
|
aria-hidden={false}
|
||||||
|
>
|
||||||
|
{hasAnyGames && (
|
||||||
|
<SortOptions sortBy={sortBy} onSortChange={onSortChange} />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{!hasAnyGames && (
|
||||||
|
<div className="profile-content__no-games">
|
||||||
|
<div className="profile-content__telescope-icon">
|
||||||
|
<TelescopeIcon size={24} />
|
||||||
|
</div>
|
||||||
|
<h2>{t("no_recent_activity_title")}</h2>
|
||||||
|
{isMe && <p>{t("no_recent_activity_description")}</p>}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{hasAnyGames && (
|
||||||
|
<div>
|
||||||
|
{hasPinnedGames && (
|
||||||
|
<div style={{ marginBottom: "2rem" }}>
|
||||||
|
<div className="profile-content__section-header">
|
||||||
|
<div className="profile-content__section-title-group">
|
||||||
|
<h2>{t("pinned")}</h2>
|
||||||
|
<span className="profile-content__section-badge">
|
||||||
|
{pinnedGames.length}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul className="profile-content__games-grid">
|
||||||
|
{pinnedGames?.map((game) => (
|
||||||
|
<li key={game.objectId} style={{ listStyle: "none" }}>
|
||||||
|
<UserLibraryGameCard
|
||||||
|
game={game}
|
||||||
|
statIndex={statsIndex}
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
sortBy={sortBy}
|
||||||
|
/>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{hasGames && (
|
||||||
|
<div>
|
||||||
|
<div className="profile-content__section-header">
|
||||||
|
<div className="profile-content__section-title-group">
|
||||||
|
<h2>{t("library")}</h2>
|
||||||
|
{userStats && (
|
||||||
|
<span className="profile-content__section-badge">
|
||||||
|
{numberFormatter.format(userStats.libraryCount)}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<InfiniteScroll
|
||||||
|
dataLength={libraryGames.length}
|
||||||
|
next={onLoadMore}
|
||||||
|
hasMore={hasMoreLibraryGames}
|
||||||
|
loader={null}
|
||||||
|
scrollThreshold={0.9}
|
||||||
|
style={{ overflow: "visible" }}
|
||||||
|
scrollableTarget="scrollableDiv"
|
||||||
|
>
|
||||||
|
<ul className="profile-content__games-grid">
|
||||||
|
{libraryGames?.map((game, index) => {
|
||||||
|
const hasAnimated = animatedGameIdsRef.current.has(
|
||||||
|
game.objectId
|
||||||
|
);
|
||||||
|
const isNewGame = !hasAnimated && !isLoadingLibraryGames;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.li
|
||||||
|
key={`${sortBy}-${game.objectId}`}
|
||||||
|
style={{ listStyle: "none" }}
|
||||||
|
initial={
|
||||||
|
isNewGame
|
||||||
|
? { opacity: 0.5, y: 15, scale: 0.96 }
|
||||||
|
: false
|
||||||
|
}
|
||||||
|
animate={
|
||||||
|
isNewGame ? { opacity: 1, y: 0, scale: 1 } : false
|
||||||
|
}
|
||||||
|
transition={
|
||||||
|
isNewGame
|
||||||
|
? {
|
||||||
|
duration: 0.15,
|
||||||
|
ease: "easeOut",
|
||||||
|
delay: index * 0.01,
|
||||||
|
}
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
|
onAnimationComplete={() => {
|
||||||
|
if (isNewGame) {
|
||||||
|
animatedGameIdsRef.current.add(game.objectId);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<UserLibraryGameCard
|
||||||
|
game={game}
|
||||||
|
statIndex={statsIndex}
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
sortBy={sortBy}
|
||||||
|
/>
|
||||||
|
</motion.li>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
</InfiniteScroll>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</motion.div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -101,6 +101,11 @@
|
|||||||
gap: calc(globals.$spacing-unit);
|
gap: calc(globals.$spacing-unit);
|
||||||
margin-bottom: calc(globals.$spacing-unit * 2);
|
margin-bottom: calc(globals.$spacing-unit * 2);
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__tab-wrapper {
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__tab {
|
&__tab {
|
||||||
@@ -111,19 +116,40 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
border-bottom: 2px solid transparent;
|
transition: color ease 0.2s;
|
||||||
transition: all ease 0.2s;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
&:hover {
|
gap: calc(globals.$spacing-unit * 0.5);
|
||||||
color: rgba(255, 255, 255, 0.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
color: white;
|
color: white;
|
||||||
border-bottom-color: #c9aa71;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__tab-badge {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
min-width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
padding: 0 6px;
|
||||||
|
background-color: rgba(255, 255, 255, 0.15);
|
||||||
|
border-radius: 9px;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__tab-underline {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -1px;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 2px;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
&__games-grid {
|
&__games-grid {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -175,5 +201,245 @@
|
|||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__tab-panels {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reviews minimal styles
|
||||||
|
.user-reviews__loading {
|
||||||
|
padding: calc(globals.$spacing-unit * 2);
|
||||||
|
color: rgba(255, 255, 255, 0.8);
|
||||||
|
text-align: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__empty {
|
||||||
|
text-align: center;
|
||||||
|
padding: calc(globals.$spacing-unit * 4) calc(globals.$spacing-unit * 2);
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: calc(globals.$spacing-unit * 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-item {
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-header {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: calc(globals.$spacing-unit * 1);
|
||||||
|
margin-bottom: calc(globals.$spacing-unit * 1.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-header-top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-header-bottom {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-meta-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: calc(globals.$spacing-unit * 0.75);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: calc(globals.$spacing-unit * 1.5);
|
||||||
|
margin-bottom: calc(globals.$spacing-unit * 1.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-game {
|
||||||
|
display: flex;
|
||||||
|
gap: calc(globals.$spacing-unit);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__game-icon {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__game-info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__game-details {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: calc(globals.$spacing-unit * 0.75);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__game-title {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
font-weight: 600;
|
||||||
|
cursor: pointer;
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
&--clickable:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-date {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
font-size: globals.$small-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-score-stars {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 2px 6px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-star {
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
|
||||||
|
&--filled {
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-score-text {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-playtime {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 2px 6px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-content {
|
||||||
|
color: rgba(255, 255, 255, 0.85);
|
||||||
|
line-height: 1.5;
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-translation-toggle {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: calc(globals.$spacing-unit * 1);
|
||||||
|
margin-top: calc(globals.$spacing-unit * 1.5);
|
||||||
|
padding: 0;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
font-size: 0.875rem;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-actions {
|
||||||
|
margin-top: calc(globals.$spacing-unit * 2);
|
||||||
|
padding-top: calc(globals.$spacing-unit);
|
||||||
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__review-votes {
|
||||||
|
display: flex;
|
||||||
|
gap: calc(globals.$spacing-unit);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__vote-button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 6px 12px;
|
||||||
|
color: #ccc;
|
||||||
|
font-size: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.1);
|
||||||
|
border-color: rgba(255, 255, 255, 0.2);
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--active {
|
||||||
|
color: #ffffff;
|
||||||
|
border-color: rgba(255, 255, 255, 0.3);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-reviews__delete-review-button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
|
background: rgba(244, 67, 54, 0.1);
|
||||||
|
border: 1px solid rgba(244, 67, 54, 0.3);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 6px 10px;
|
||||||
|
color: #f44336;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(244, 67, 54, 0.2);
|
||||||
|
border-color: rgba(244, 67, 54, 0.4);
|
||||||
|
color: #ff7961;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,29 +1,82 @@
|
|||||||
import { userProfileContext } from "@renderer/context";
|
import { userProfileContext } from "@renderer/context";
|
||||||
import { useContext, useEffect, useMemo, useRef, useState } from "react";
|
import {
|
||||||
|
useCallback,
|
||||||
|
useContext,
|
||||||
|
useEffect,
|
||||||
|
useMemo,
|
||||||
|
useRef,
|
||||||
|
useState,
|
||||||
|
} from "react";
|
||||||
import { ProfileHero } from "../profile-hero/profile-hero";
|
import { ProfileHero } from "../profile-hero/profile-hero";
|
||||||
import { useAppDispatch, useFormat } from "@renderer/hooks";
|
import { useAppDispatch, useFormat, useUserDetails } from "@renderer/hooks";
|
||||||
import { setHeaderTitle } from "@renderer/features";
|
import { setHeaderTitle } from "@renderer/features";
|
||||||
import { TelescopeIcon, ChevronRightIcon } from "@primer/octicons-react";
|
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
import type { GameShop } from "@types";
|
||||||
import { LockedProfile } from "./locked-profile";
|
import { LockedProfile } from "./locked-profile";
|
||||||
import { ReportProfile } from "../report-profile/report-profile";
|
import { ReportProfile } from "../report-profile/report-profile";
|
||||||
import { FriendsBox } from "./friends-box";
|
import { FriendsBox } from "./friends-box";
|
||||||
import { RecentGamesBox } from "./recent-games-box";
|
import { RecentGamesBox } from "./recent-games-box";
|
||||||
import { UserStatsBox } from "./user-stats-box";
|
import { UserStatsBox } from "./user-stats-box";
|
||||||
import { UserKarmaBox } from "./user-karma-box";
|
import { UserKarmaBox } from "./user-karma-box";
|
||||||
import { UserLibraryGameCard } from "./user-library-game-card";
|
import { DeleteReviewModal } from "@renderer/pages/game-details/modals/delete-review-modal";
|
||||||
import { SortOptions } from "./sort-options";
|
import { GAME_STATS_ANIMATION_DURATION_IN_MS } from "./profile-animations";
|
||||||
import { useSectionCollapse } from "@renderer/hooks/use-section-collapse";
|
import { MAX_MINUTES_TO_SHOW_IN_PLAYTIME } from "@renderer/constants";
|
||||||
import { motion, AnimatePresence } from "framer-motion";
|
import { ProfileTabs } from "./profile-tabs";
|
||||||
import {
|
import { LibraryTab } from "./library-tab";
|
||||||
sectionVariants,
|
import { ReviewsTab } from "./reviews-tab";
|
||||||
chevronVariants,
|
import { AnimatePresence } from "framer-motion";
|
||||||
GAME_STATS_ANIMATION_DURATION_IN_MS,
|
|
||||||
} from "./profile-animations";
|
|
||||||
import "./profile-content.scss";
|
import "./profile-content.scss";
|
||||||
|
|
||||||
type SortOption = "playtime" | "achievementCount" | "playedRecently";
|
type SortOption = "playtime" | "achievementCount" | "playedRecently";
|
||||||
|
|
||||||
|
interface UserReview {
|
||||||
|
id: string;
|
||||||
|
reviewHtml: string;
|
||||||
|
score: number;
|
||||||
|
playTimeInSeconds?: number;
|
||||||
|
upvotes: number;
|
||||||
|
downvotes: number;
|
||||||
|
hasUpvoted: boolean;
|
||||||
|
hasDownvoted: boolean;
|
||||||
|
createdAt: string;
|
||||||
|
updatedAt: string;
|
||||||
|
user: {
|
||||||
|
id: string;
|
||||||
|
};
|
||||||
|
game: {
|
||||||
|
title: string;
|
||||||
|
iconUrl: string;
|
||||||
|
objectId: string;
|
||||||
|
shop: GameShop;
|
||||||
|
};
|
||||||
|
translations: {
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
|
detectedLanguage: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface UserReviewsResponse {
|
||||||
|
totalCount: number;
|
||||||
|
reviews: UserReview[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const getRatingText = (score: number, t: (key: string) => string): string => {
|
||||||
|
switch (score) {
|
||||||
|
case 1:
|
||||||
|
return t("rating_very_negative");
|
||||||
|
case 2:
|
||||||
|
return t("rating_negative");
|
||||||
|
case 3:
|
||||||
|
return t("rating_neutral");
|
||||||
|
case 4:
|
||||||
|
return t("rating_positive");
|
||||||
|
case 5:
|
||||||
|
return t("rating_very_positive");
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export function ProfileContent() {
|
export function ProfileContent() {
|
||||||
const {
|
const {
|
||||||
userProfile,
|
userProfile,
|
||||||
@@ -32,16 +85,43 @@ export function ProfileContent() {
|
|||||||
libraryGames,
|
libraryGames,
|
||||||
pinnedGames,
|
pinnedGames,
|
||||||
getUserLibraryGames,
|
getUserLibraryGames,
|
||||||
|
loadMoreLibraryGames,
|
||||||
|
hasMoreLibraryGames,
|
||||||
|
isLoadingLibraryGames,
|
||||||
} = useContext(userProfileContext);
|
} = useContext(userProfileContext);
|
||||||
|
const { userDetails } = useUserDetails();
|
||||||
const [statsIndex, setStatsIndex] = useState(0);
|
const [statsIndex, setStatsIndex] = useState(0);
|
||||||
const [isAnimationRunning, setIsAnimationRunning] = useState(true);
|
const [isAnimationRunning, setIsAnimationRunning] = useState(true);
|
||||||
const [sortBy, setSortBy] = useState<SortOption>("playedRecently");
|
const [sortBy, setSortBy] = useState<SortOption>("playedRecently");
|
||||||
const statsAnimation = useRef(-1);
|
const statsAnimation = useRef(-1);
|
||||||
const { toggleSection, isPinnedCollapsed } = useSectionCollapse();
|
|
||||||
|
const [activeTab, setActiveTab] = useState<"library" | "reviews">("library");
|
||||||
|
|
||||||
|
// User reviews state
|
||||||
|
const [reviews, setReviews] = useState<UserReview[]>([]);
|
||||||
|
const [reviewsTotalCount, setReviewsTotalCount] = useState(0);
|
||||||
|
const [isLoadingReviews, setIsLoadingReviews] = useState(false);
|
||||||
|
const [votingReviews, setVotingReviews] = useState<Set<string>>(new Set());
|
||||||
|
const [deleteModalVisible, setDeleteModalVisible] = useState(false);
|
||||||
|
const [reviewToDelete, setReviewToDelete] = useState<string | null>(null);
|
||||||
|
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
|
|
||||||
const { t } = useTranslation("user_profile");
|
const { t } = useTranslation("user_profile");
|
||||||
|
const { numberFormatter } = useFormat();
|
||||||
|
|
||||||
|
const formatPlayTime = (playTimeInSeconds: number) => {
|
||||||
|
const minutes = playTimeInSeconds / 60;
|
||||||
|
|
||||||
|
if (minutes < MAX_MINUTES_TO_SHOW_IN_PLAYTIME) {
|
||||||
|
return t("amount_minutes", {
|
||||||
|
amount: minutes.toFixed(0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const hours = minutes / 60;
|
||||||
|
return t("amount_hours", { amount: numberFormatter.format(hours) });
|
||||||
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
dispatch(setHeaderTitle(""));
|
dispatch(setHeaderTitle(""));
|
||||||
@@ -53,10 +133,201 @@ export function ProfileContent() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (userProfile) {
|
if (userProfile) {
|
||||||
getUserLibraryGames(sortBy);
|
// When sortBy changes, clear animated games so all games animate in
|
||||||
|
if (currentSortByRef.current !== sortBy) {
|
||||||
|
animatedGameIdsRef.current.clear();
|
||||||
|
currentSortByRef.current = sortBy;
|
||||||
|
}
|
||||||
|
getUserLibraryGames(sortBy, true);
|
||||||
}
|
}
|
||||||
}, [sortBy, getUserLibraryGames, userProfile]);
|
}, [sortBy, getUserLibraryGames, userProfile]);
|
||||||
|
|
||||||
|
const animatedGameIdsRef = useRef<Set<string>>(new Set());
|
||||||
|
const currentSortByRef = useRef<SortOption>(sortBy);
|
||||||
|
|
||||||
|
const handleLoadMore = useCallback(() => {
|
||||||
|
if (
|
||||||
|
activeTab === "library" &&
|
||||||
|
hasMoreLibraryGames &&
|
||||||
|
!isLoadingLibraryGames
|
||||||
|
) {
|
||||||
|
loadMoreLibraryGames(sortBy);
|
||||||
|
}
|
||||||
|
}, [
|
||||||
|
activeTab,
|
||||||
|
hasMoreLibraryGames,
|
||||||
|
isLoadingLibraryGames,
|
||||||
|
loadMoreLibraryGames,
|
||||||
|
sortBy,
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Clear reviews state and reset tab when switching users
|
||||||
|
useEffect(() => {
|
||||||
|
setReviews([]);
|
||||||
|
setReviewsTotalCount(0);
|
||||||
|
setIsLoadingReviews(false);
|
||||||
|
setActiveTab("library");
|
||||||
|
}, [userProfile?.id]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (userProfile?.id) {
|
||||||
|
fetchUserReviews();
|
||||||
|
}
|
||||||
|
}, [userProfile?.id]);
|
||||||
|
|
||||||
|
const fetchUserReviews = async () => {
|
||||||
|
if (!userProfile?.id) return;
|
||||||
|
|
||||||
|
setIsLoadingReviews(true);
|
||||||
|
try {
|
||||||
|
const response = await window.electron.hydraApi.get<UserReviewsResponse>(
|
||||||
|
`/users/${userProfile.id}/reviews`,
|
||||||
|
{ needsAuth: true }
|
||||||
|
);
|
||||||
|
setReviews(response.reviews);
|
||||||
|
setReviewsTotalCount(response.totalCount);
|
||||||
|
} catch (error) {
|
||||||
|
// Error handling for fetching reviews
|
||||||
|
} finally {
|
||||||
|
setIsLoadingReviews(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeleteReview = async (reviewId: string) => {
|
||||||
|
try {
|
||||||
|
const reviewToDeleteObj = reviews.find(
|
||||||
|
(review) => review.id === reviewId
|
||||||
|
);
|
||||||
|
if (!reviewToDeleteObj) return;
|
||||||
|
|
||||||
|
await window.electron.hydraApi.delete(
|
||||||
|
`/games/${reviewToDeleteObj.game.shop}/${reviewToDeleteObj.game.objectId}/reviews/${reviewId}`
|
||||||
|
);
|
||||||
|
// Remove the review from the local state
|
||||||
|
setReviews((prev) => prev.filter((review) => review.id !== reviewId));
|
||||||
|
setReviewsTotalCount((prev) => prev - 1);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to delete review:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeleteClick = (reviewId: string) => {
|
||||||
|
setReviewToDelete(reviewId);
|
||||||
|
setDeleteModalVisible(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeleteConfirm = () => {
|
||||||
|
if (reviewToDelete) {
|
||||||
|
handleDeleteReview(reviewToDelete);
|
||||||
|
setReviewToDelete(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeleteCancel = () => {
|
||||||
|
setDeleteModalVisible(false);
|
||||||
|
setReviewToDelete(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleVoteReview = async (reviewId: string, isUpvote: boolean) => {
|
||||||
|
if (votingReviews.has(reviewId)) return;
|
||||||
|
|
||||||
|
setVotingReviews((prev) => new Set(prev).add(reviewId));
|
||||||
|
|
||||||
|
const review = reviews.find((r) => r.id === reviewId);
|
||||||
|
if (!review) {
|
||||||
|
setVotingReviews((prev) => {
|
||||||
|
const next = new Set(prev);
|
||||||
|
next.delete(reviewId);
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const wasUpvoted = review.hasUpvoted;
|
||||||
|
const wasDownvoted = review.hasDownvoted;
|
||||||
|
|
||||||
|
// Optimistic update
|
||||||
|
setReviews((prev) =>
|
||||||
|
prev.map((r) => {
|
||||||
|
if (r.id !== reviewId) return r;
|
||||||
|
|
||||||
|
let newUpvotes = r.upvotes;
|
||||||
|
let newDownvotes = r.downvotes;
|
||||||
|
let newHasUpvoted = r.hasUpvoted;
|
||||||
|
let newHasDownvoted = r.hasDownvoted;
|
||||||
|
|
||||||
|
if (isUpvote) {
|
||||||
|
if (wasUpvoted) {
|
||||||
|
// Remove upvote
|
||||||
|
newUpvotes--;
|
||||||
|
newHasUpvoted = false;
|
||||||
|
} else {
|
||||||
|
// Add upvote
|
||||||
|
newUpvotes++;
|
||||||
|
newHasUpvoted = true;
|
||||||
|
if (wasDownvoted) {
|
||||||
|
// Remove downvote if it was downvoted
|
||||||
|
newDownvotes--;
|
||||||
|
newHasDownvoted = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (wasDownvoted) {
|
||||||
|
// Remove downvote
|
||||||
|
newDownvotes--;
|
||||||
|
newHasDownvoted = false;
|
||||||
|
} else {
|
||||||
|
// Add downvote
|
||||||
|
newDownvotes++;
|
||||||
|
newHasDownvoted = true;
|
||||||
|
if (wasUpvoted) {
|
||||||
|
// Remove upvote if it was upvoted
|
||||||
|
newUpvotes--;
|
||||||
|
newHasUpvoted = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
...r,
|
||||||
|
upvotes: newUpvotes,
|
||||||
|
downvotes: newDownvotes,
|
||||||
|
hasUpvoted: newHasUpvoted,
|
||||||
|
hasDownvoted: newHasDownvoted,
|
||||||
|
};
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const endpoint = isUpvote ? "upvote" : "downvote";
|
||||||
|
await window.electron.hydraApi.put(
|
||||||
|
`/games/${review.game.shop}/${review.game.objectId}/reviews/${reviewId}/${endpoint}`
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to vote on review:", error);
|
||||||
|
|
||||||
|
// Rollback optimistic update on error
|
||||||
|
setReviews((prev) =>
|
||||||
|
prev.map((r) => {
|
||||||
|
if (r.id !== reviewId) return r;
|
||||||
|
return {
|
||||||
|
...r,
|
||||||
|
upvotes: review.upvotes,
|
||||||
|
downvotes: review.downvotes,
|
||||||
|
hasUpvoted: review.hasUpvoted,
|
||||||
|
hasDownvoted: review.hasDownvoted,
|
||||||
|
};
|
||||||
|
})
|
||||||
|
);
|
||||||
|
} finally {
|
||||||
|
setTimeout(() => {
|
||||||
|
setVotingReviews((prev) => {
|
||||||
|
const newSet = new Set(prev);
|
||||||
|
newSet.delete(reviewId);
|
||||||
|
return newSet;
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const handleOnMouseEnterGameCard = () => {
|
const handleOnMouseEnterGameCard = () => {
|
||||||
setIsAnimationRunning(false);
|
setIsAnimationRunning(false);
|
||||||
};
|
};
|
||||||
@@ -86,8 +357,6 @@ export function ProfileContent() {
|
|||||||
};
|
};
|
||||||
}, [setStatsIndex, isAnimationRunning]);
|
}, [setStatsIndex, isAnimationRunning]);
|
||||||
|
|
||||||
const { numberFormatter } = useFormat();
|
|
||||||
|
|
||||||
const usersAreFriends = useMemo(() => {
|
const usersAreFriends = useMemo(() => {
|
||||||
return userProfile?.relation?.status === "ACCEPTED";
|
return userProfile?.relation?.status === "ACCEPTED";
|
||||||
}, [userProfile]);
|
}, [userProfile]);
|
||||||
@@ -113,112 +382,46 @@ export function ProfileContent() {
|
|||||||
return (
|
return (
|
||||||
<section className="profile-content__section">
|
<section className="profile-content__section">
|
||||||
<div className="profile-content__main">
|
<div className="profile-content__main">
|
||||||
{hasAnyGames && (
|
<ProfileTabs
|
||||||
<SortOptions sortBy={sortBy} onSortChange={setSortBy} />
|
activeTab={activeTab}
|
||||||
)}
|
reviewsTotalCount={reviewsTotalCount}
|
||||||
|
onTabChange={setActiveTab}
|
||||||
|
/>
|
||||||
|
|
||||||
{!hasAnyGames && (
|
<div className="profile-content__tab-panels">
|
||||||
<div className="profile-content__no-games">
|
<AnimatePresence mode="wait">
|
||||||
<div className="profile-content__telescope-icon">
|
{activeTab === "library" && (
|
||||||
<TelescopeIcon size={24} />
|
<LibraryTab
|
||||||
</div>
|
sortBy={sortBy}
|
||||||
<h2>{t("no_recent_activity_title")}</h2>
|
onSortChange={setSortBy}
|
||||||
{isMe && <p>{t("no_recent_activity_description")}</p>}
|
pinnedGames={pinnedGames}
|
||||||
</div>
|
libraryGames={libraryGames}
|
||||||
)}
|
hasMoreLibraryGames={hasMoreLibraryGames}
|
||||||
|
isLoadingLibraryGames={isLoadingLibraryGames}
|
||||||
{hasAnyGames && (
|
statsIndex={statsIndex}
|
||||||
<div>
|
userStats={userStats}
|
||||||
{hasPinnedGames && (
|
animatedGameIdsRef={animatedGameIdsRef}
|
||||||
<div style={{ marginBottom: "2rem" }}>
|
onLoadMore={handleLoadMore}
|
||||||
<div className="profile-content__section-header">
|
onMouseEnter={handleOnMouseEnterGameCard}
|
||||||
<div className="profile-content__section-title-group">
|
onMouseLeave={handleOnMouseLeaveGameCard}
|
||||||
<button
|
isMe={isMe}
|
||||||
type="button"
|
/>
|
||||||
className="profile-content__collapse-button"
|
|
||||||
onClick={() => toggleSection("pinned")}
|
|
||||||
aria-label={
|
|
||||||
isPinnedCollapsed
|
|
||||||
? "Expand pinned section"
|
|
||||||
: "Collapse pinned section"
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<motion.div
|
|
||||||
variants={chevronVariants}
|
|
||||||
animate={isPinnedCollapsed ? "collapsed" : "expanded"}
|
|
||||||
>
|
|
||||||
<ChevronRightIcon size={16} />
|
|
||||||
</motion.div>
|
|
||||||
</button>
|
|
||||||
<h2>{t("pinned")}</h2>
|
|
||||||
<span className="profile-content__section-badge">
|
|
||||||
{pinnedGames.length}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<AnimatePresence initial={true} mode="wait">
|
|
||||||
{!isPinnedCollapsed && (
|
|
||||||
<motion.div
|
|
||||||
key="pinned-content"
|
|
||||||
variants={sectionVariants}
|
|
||||||
initial="collapsed"
|
|
||||||
animate="expanded"
|
|
||||||
exit="collapsed"
|
|
||||||
layout
|
|
||||||
>
|
|
||||||
<ul className="profile-content__games-grid">
|
|
||||||
{pinnedGames?.map((game) => (
|
|
||||||
<li
|
|
||||||
key={game.objectId}
|
|
||||||
style={{ listStyle: "none" }}
|
|
||||||
>
|
|
||||||
<UserLibraryGameCard
|
|
||||||
game={game}
|
|
||||||
statIndex={statsIndex}
|
|
||||||
onMouseEnter={handleOnMouseEnterGameCard}
|
|
||||||
onMouseLeave={handleOnMouseLeaveGameCard}
|
|
||||||
sortBy={sortBy}
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</motion.div>
|
|
||||||
)}
|
|
||||||
</AnimatePresence>
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{hasGames && (
|
{activeTab === "reviews" && (
|
||||||
<div>
|
<ReviewsTab
|
||||||
<div className="profile-content__section-header">
|
reviews={reviews}
|
||||||
<div className="profile-content__section-title-group">
|
isLoadingReviews={isLoadingReviews}
|
||||||
<h2>{t("library")}</h2>
|
votingReviews={votingReviews}
|
||||||
{userStats && (
|
userDetailsId={userDetails?.id}
|
||||||
<span className="profile-content__section-badge">
|
formatPlayTime={formatPlayTime}
|
||||||
{numberFormatter.format(userStats.libraryCount)}
|
getRatingText={getRatingText}
|
||||||
</span>
|
onVote={handleVoteReview}
|
||||||
)}
|
onDelete={handleDeleteClick}
|
||||||
</div>
|
/>
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul className="profile-content__games-grid">
|
|
||||||
{libraryGames?.map((game) => (
|
|
||||||
<li key={game.objectId} style={{ listStyle: "none" }}>
|
|
||||||
<UserLibraryGameCard
|
|
||||||
game={game}
|
|
||||||
statIndex={statsIndex}
|
|
||||||
onMouseEnter={handleOnMouseEnterGameCard}
|
|
||||||
onMouseLeave={handleOnMouseLeaveGameCard}
|
|
||||||
sortBy={sortBy}
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
</div>
|
</AnimatePresence>
|
||||||
)}
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{shouldShowRightContent && (
|
{shouldShowRightContent && (
|
||||||
@@ -230,6 +433,12 @@ export function ProfileContent() {
|
|||||||
<ReportProfile />
|
<ReportProfile />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
<DeleteReviewModal
|
||||||
|
visible={deleteModalVisible}
|
||||||
|
onClose={handleDeleteCancel}
|
||||||
|
onConfirm={handleDeleteConfirm}
|
||||||
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
}, [
|
}, [
|
||||||
@@ -242,9 +451,15 @@ export function ProfileContent() {
|
|||||||
statsIndex,
|
statsIndex,
|
||||||
libraryGames,
|
libraryGames,
|
||||||
pinnedGames,
|
pinnedGames,
|
||||||
isPinnedCollapsed,
|
|
||||||
toggleSection,
|
|
||||||
sortBy,
|
sortBy,
|
||||||
|
activeTab,
|
||||||
|
// ensure reviews UI updates correctly
|
||||||
|
reviews,
|
||||||
|
reviewsTotalCount,
|
||||||
|
isLoadingReviews,
|
||||||
|
votingReviews,
|
||||||
|
deleteModalVisible,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -0,0 +1,252 @@
|
|||||||
|
import { motion, AnimatePresence } from "framer-motion";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { ClockIcon } from "@primer/octicons-react";
|
||||||
|
import { Star, ThumbsUp, ThumbsDown, TrashIcon, Languages } from "lucide-react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { useState } from "react";
|
||||||
|
import type { GameShop } from "@types";
|
||||||
|
import { sanitizeHtml } from "@shared";
|
||||||
|
import { useDate } from "@renderer/hooks";
|
||||||
|
import { buildGameDetailsPath } from "@renderer/helpers";
|
||||||
|
import "./profile-content.scss";
|
||||||
|
|
||||||
|
interface UserReview {
|
||||||
|
id: string;
|
||||||
|
reviewHtml: string;
|
||||||
|
score: number;
|
||||||
|
playTimeInSeconds?: number;
|
||||||
|
upvotes: number;
|
||||||
|
downvotes: number;
|
||||||
|
hasUpvoted: boolean;
|
||||||
|
hasDownvoted: boolean;
|
||||||
|
createdAt: string;
|
||||||
|
updatedAt: string;
|
||||||
|
user: {
|
||||||
|
id: string;
|
||||||
|
};
|
||||||
|
game: {
|
||||||
|
title: string;
|
||||||
|
iconUrl: string;
|
||||||
|
objectId: string;
|
||||||
|
shop: GameShop;
|
||||||
|
};
|
||||||
|
translations: {
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
|
detectedLanguage: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ProfileReviewItemProps {
|
||||||
|
review: UserReview;
|
||||||
|
isOwnReview: boolean;
|
||||||
|
isVoting: boolean;
|
||||||
|
formatPlayTime: (playTimeInSeconds: number) => string;
|
||||||
|
getRatingText: (score: number, t: (key: string) => string) => string;
|
||||||
|
onVote: (reviewId: string, isUpvote: boolean) => void;
|
||||||
|
onDelete: (reviewId: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ProfileReviewItem({
|
||||||
|
review,
|
||||||
|
isOwnReview,
|
||||||
|
isVoting,
|
||||||
|
formatPlayTime,
|
||||||
|
getRatingText,
|
||||||
|
onVote,
|
||||||
|
onDelete,
|
||||||
|
}: Readonly<ProfileReviewItemProps>) {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const { formatDistance } = useDate();
|
||||||
|
const { t } = useTranslation("user_profile");
|
||||||
|
const { t: tGameDetails, i18n } = useTranslation("game_details");
|
||||||
|
const [showOriginal, setShowOriginal] = useState(false);
|
||||||
|
|
||||||
|
const getBaseLanguage = (lang: string | null) => lang?.split("-")[0] || "";
|
||||||
|
|
||||||
|
const isDifferentLanguage =
|
||||||
|
getBaseLanguage(review.detectedLanguage) !== getBaseLanguage(i18n.language);
|
||||||
|
|
||||||
|
const needsTranslation =
|
||||||
|
!isOwnReview && isDifferentLanguage && review.translations[i18n.language];
|
||||||
|
|
||||||
|
const getLanguageName = (languageCode: string | null) => {
|
||||||
|
if (!languageCode) return "";
|
||||||
|
try {
|
||||||
|
const displayNames = new Intl.DisplayNames([i18n.language], {
|
||||||
|
type: "language",
|
||||||
|
});
|
||||||
|
return displayNames.of(languageCode) || languageCode.toUpperCase();
|
||||||
|
} catch {
|
||||||
|
return languageCode.toUpperCase();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const displayContent = needsTranslation
|
||||||
|
? review.translations[i18n.language]
|
||||||
|
: review.reviewHtml;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.div
|
||||||
|
key={review.id}
|
||||||
|
className="user-reviews__review-item"
|
||||||
|
initial={{ opacity: 0, y: 20 }}
|
||||||
|
animate={{ opacity: 1, y: 0 }}
|
||||||
|
transition={{ duration: 0.3 }}
|
||||||
|
>
|
||||||
|
<div className="user-reviews__review-header">
|
||||||
|
<div className="user-reviews__review-header-top">
|
||||||
|
<div className="user-reviews__review-game">
|
||||||
|
<div className="user-reviews__game-info">
|
||||||
|
<div className="user-reviews__game-details">
|
||||||
|
<img
|
||||||
|
src={review.game.iconUrl}
|
||||||
|
alt={review.game.title}
|
||||||
|
className="user-reviews__game-icon"
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
className="user-reviews__game-title user-reviews__game-title--clickable"
|
||||||
|
onClick={() => navigate(buildGameDetailsPath(review.game))}
|
||||||
|
>
|
||||||
|
{review.game.title}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="user-reviews__review-date">
|
||||||
|
{formatDistance(new Date(review.createdAt), new Date(), {
|
||||||
|
addSuffix: true,
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="user-reviews__review-header-bottom">
|
||||||
|
<div className="user-reviews__review-meta-row">
|
||||||
|
<div
|
||||||
|
className="user-reviews__review-score-stars"
|
||||||
|
title={getRatingText(review.score, tGameDetails)}
|
||||||
|
>
|
||||||
|
<Star
|
||||||
|
size={12}
|
||||||
|
className="user-reviews__review-star user-reviews__review-star--filled"
|
||||||
|
/>
|
||||||
|
<span className="user-reviews__review-score-text">
|
||||||
|
{review.score}/5
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{Boolean(
|
||||||
|
review.playTimeInSeconds && review.playTimeInSeconds > 0
|
||||||
|
) && (
|
||||||
|
<div className="user-reviews__review-playtime">
|
||||||
|
<ClockIcon size={12} />
|
||||||
|
<span>
|
||||||
|
{tGameDetails("review_played_for")}{" "}
|
||||||
|
{formatPlayTime(review.playTimeInSeconds || 0)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div
|
||||||
|
className="user-reviews__review-content"
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: sanitizeHtml(displayContent),
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
{needsTranslation && (
|
||||||
|
<>
|
||||||
|
<button
|
||||||
|
className="user-reviews__review-translation-toggle"
|
||||||
|
onClick={() => setShowOriginal(!showOriginal)}
|
||||||
|
>
|
||||||
|
<Languages size={13} />
|
||||||
|
{showOriginal
|
||||||
|
? tGameDetails("hide_original")
|
||||||
|
: tGameDetails("show_original_translated_from", {
|
||||||
|
language: getLanguageName(review.detectedLanguage),
|
||||||
|
})}
|
||||||
|
</button>
|
||||||
|
{showOriginal && (
|
||||||
|
<div
|
||||||
|
className="user-reviews__review-content"
|
||||||
|
style={{
|
||||||
|
opacity: 0.6,
|
||||||
|
marginTop: "12px",
|
||||||
|
}}
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: sanitizeHtml(review.reviewHtml),
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="user-reviews__review-actions">
|
||||||
|
<div className="user-reviews__review-votes">
|
||||||
|
<motion.button
|
||||||
|
className={`user-reviews__vote-button ${review.hasUpvoted ? "user-reviews__vote-button--active" : ""}`}
|
||||||
|
onClick={() => onVote(review.id, true)}
|
||||||
|
disabled={isVoting}
|
||||||
|
style={{
|
||||||
|
opacity: isVoting ? 0.5 : 1,
|
||||||
|
cursor: isVoting ? "not-allowed" : "pointer",
|
||||||
|
}}
|
||||||
|
whileHover={{ scale: 1.05 }}
|
||||||
|
whileTap={{ scale: 0.95 }}
|
||||||
|
>
|
||||||
|
<ThumbsUp size={14} />
|
||||||
|
<AnimatePresence mode="wait">
|
||||||
|
<motion.span
|
||||||
|
key={review.upvotes}
|
||||||
|
initial={{ opacity: 0, y: -10 }}
|
||||||
|
animate={{ opacity: 1, y: 0 }}
|
||||||
|
exit={{ opacity: 0, y: 10 }}
|
||||||
|
transition={{ duration: 0.2 }}
|
||||||
|
>
|
||||||
|
{review.upvotes}
|
||||||
|
</motion.span>
|
||||||
|
</AnimatePresence>
|
||||||
|
</motion.button>
|
||||||
|
|
||||||
|
<motion.button
|
||||||
|
className={`user-reviews__vote-button ${review.hasDownvoted ? "user-reviews__vote-button--active" : ""}`}
|
||||||
|
onClick={() => onVote(review.id, false)}
|
||||||
|
disabled={isVoting}
|
||||||
|
style={{
|
||||||
|
opacity: isVoting ? 0.5 : 1,
|
||||||
|
cursor: isVoting ? "not-allowed" : "pointer",
|
||||||
|
}}
|
||||||
|
whileHover={{ scale: 1.05 }}
|
||||||
|
whileTap={{ scale: 0.95 }}
|
||||||
|
>
|
||||||
|
<ThumbsDown size={14} />
|
||||||
|
<AnimatePresence mode="wait">
|
||||||
|
<motion.span
|
||||||
|
key={review.downvotes}
|
||||||
|
initial={{ opacity: 0, y: -10 }}
|
||||||
|
animate={{ opacity: 1, y: 0 }}
|
||||||
|
exit={{ opacity: 0, y: 10 }}
|
||||||
|
transition={{ duration: 0.2 }}
|
||||||
|
>
|
||||||
|
{review.downvotes}
|
||||||
|
</motion.span>
|
||||||
|
</AnimatePresence>
|
||||||
|
</motion.button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{isOwnReview && (
|
||||||
|
<button
|
||||||
|
className="user-reviews__delete-review-button"
|
||||||
|
onClick={() => onDelete(review.id)}
|
||||||
|
title={t("delete_review")}
|
||||||
|
>
|
||||||
|
<TrashIcon size={14} />
|
||||||
|
<span>{t("delete_review")}</span>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</motion.div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
import { motion } from "framer-motion";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import "./profile-content.scss";
|
||||||
|
|
||||||
|
interface ProfileTabsProps {
|
||||||
|
activeTab: "library" | "reviews";
|
||||||
|
reviewsTotalCount: number;
|
||||||
|
onTabChange: (tab: "library" | "reviews") => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ProfileTabs({
|
||||||
|
activeTab,
|
||||||
|
reviewsTotalCount,
|
||||||
|
onTabChange,
|
||||||
|
}: Readonly<ProfileTabsProps>) {
|
||||||
|
const { t } = useTranslation("user_profile");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="profile-content__tabs">
|
||||||
|
<div className="profile-content__tab-wrapper">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className={`profile-content__tab ${activeTab === "library" ? "profile-content__tab--active" : ""}`}
|
||||||
|
onClick={() => onTabChange("library")}
|
||||||
|
>
|
||||||
|
{t("library")}
|
||||||
|
</button>
|
||||||
|
{activeTab === "library" && (
|
||||||
|
<motion.div
|
||||||
|
className="profile-content__tab-underline"
|
||||||
|
layoutId="tab-underline"
|
||||||
|
transition={{
|
||||||
|
type: "spring",
|
||||||
|
stiffness: 300,
|
||||||
|
damping: 30,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="profile-content__tab-wrapper">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className={`profile-content__tab ${activeTab === "reviews" ? "profile-content__tab--active" : ""}`}
|
||||||
|
onClick={() => onTabChange("reviews")}
|
||||||
|
>
|
||||||
|
{t("user_reviews")}
|
||||||
|
{reviewsTotalCount > 0 && (
|
||||||
|
<span className="profile-content__tab-badge">
|
||||||
|
{reviewsTotalCount}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
{activeTab === "reviews" && (
|
||||||
|
<motion.div
|
||||||
|
className="profile-content__tab-underline"
|
||||||
|
layoutId="tab-underline"
|
||||||
|
transition={{
|
||||||
|
type: "spring",
|
||||||
|
stiffness: 300,
|
||||||
|
damping: 30,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
import { motion } from "framer-motion";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import type { GameShop } from "@types";
|
||||||
|
import { ProfileReviewItem } from "./profile-review-item";
|
||||||
|
import "./profile-content.scss";
|
||||||
|
|
||||||
|
interface UserReview {
|
||||||
|
id: string;
|
||||||
|
reviewHtml: string;
|
||||||
|
score: number;
|
||||||
|
playTimeInSeconds?: number;
|
||||||
|
upvotes: number;
|
||||||
|
downvotes: number;
|
||||||
|
hasUpvoted: boolean;
|
||||||
|
hasDownvoted: boolean;
|
||||||
|
createdAt: string;
|
||||||
|
updatedAt: string;
|
||||||
|
user: {
|
||||||
|
id: string;
|
||||||
|
};
|
||||||
|
game: {
|
||||||
|
title: string;
|
||||||
|
iconUrl: string;
|
||||||
|
objectId: string;
|
||||||
|
shop: GameShop;
|
||||||
|
};
|
||||||
|
translations: {
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
|
detectedLanguage: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ReviewsTabProps {
|
||||||
|
reviews: UserReview[];
|
||||||
|
isLoadingReviews: boolean;
|
||||||
|
votingReviews: Set<string>;
|
||||||
|
userDetailsId?: string;
|
||||||
|
formatPlayTime: (playTimeInSeconds: number) => string;
|
||||||
|
getRatingText: (score: number, t: (key: string) => string) => string;
|
||||||
|
onVote: (reviewId: string, isUpvote: boolean) => void;
|
||||||
|
onDelete: (reviewId: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ReviewsTab({
|
||||||
|
reviews,
|
||||||
|
isLoadingReviews,
|
||||||
|
votingReviews,
|
||||||
|
userDetailsId,
|
||||||
|
formatPlayTime,
|
||||||
|
getRatingText,
|
||||||
|
onVote,
|
||||||
|
onDelete,
|
||||||
|
}: Readonly<ReviewsTabProps>) {
|
||||||
|
const { t } = useTranslation("user_profile");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.div
|
||||||
|
key="reviews"
|
||||||
|
className="profile-content__tab-panel"
|
||||||
|
initial={{ opacity: 0, x: -10 }}
|
||||||
|
animate={{ opacity: 1, x: 0 }}
|
||||||
|
exit={{ opacity: 0, x: 10 }}
|
||||||
|
transition={{ duration: 0.2 }}
|
||||||
|
aria-hidden={false}
|
||||||
|
>
|
||||||
|
{isLoadingReviews && (
|
||||||
|
<div className="user-reviews__loading">{t("loading_reviews")}</div>
|
||||||
|
)}
|
||||||
|
{!isLoadingReviews && reviews.length === 0 && (
|
||||||
|
<div className="user-reviews__empty">
|
||||||
|
<p>{t("no_reviews", "No reviews yet")}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{!isLoadingReviews && reviews.length > 0 && (
|
||||||
|
<div className="user-reviews__list">
|
||||||
|
{reviews.map((review) => {
|
||||||
|
const isOwnReview = userDetailsId === review.user.id;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ProfileReviewItem
|
||||||
|
key={review.id}
|
||||||
|
review={review}
|
||||||
|
isOwnReview={isOwnReview}
|
||||||
|
isVoting={votingReviews.has(review.id)}
|
||||||
|
formatPlayTime={formatPlayTime}
|
||||||
|
getRatingText={getRatingText}
|
||||||
|
onVote={onVote}
|
||||||
|
onDelete={onDelete}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</motion.div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -36,6 +36,7 @@
|
|||||||
box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.5);
|
box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.5);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: "";
|
||||||
@@ -193,8 +194,28 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-width: 100%;
|
display: block;
|
||||||
min-height: 100%;
|
}
|
||||||
|
|
||||||
|
&__cover-placeholder {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
padding-bottom: 150%;
|
||||||
|
background: linear-gradient(
|
||||||
|
90deg,
|
||||||
|
rgba(255, 255, 255, 0.08) 0%,
|
||||||
|
rgba(255, 255, 255, 0.04) 50%,
|
||||||
|
rgba(255, 255, 255, 0.08) 100%
|
||||||
|
);
|
||||||
|
border-radius: 4px;
|
||||||
|
color: rgba(255, 255, 255, 0.3);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__achievements-progress {
|
&__achievements-progress {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { UserGame } from "@types";
|
|||||||
import HydraIcon from "@renderer/assets/icons/hydra.svg?react";
|
import HydraIcon from "@renderer/assets/icons/hydra.svg?react";
|
||||||
import { useFormat, useToast } from "@renderer/hooks";
|
import { useFormat, useToast } from "@renderer/hooks";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { useCallback, useContext, useState } from "react";
|
import { useCallback, useContext, useEffect, useState } from "react";
|
||||||
import {
|
import {
|
||||||
buildGameAchievementPath,
|
buildGameAchievementPath,
|
||||||
buildGameDetailsPath,
|
buildGameDetailsPath,
|
||||||
@@ -15,6 +15,7 @@ import {
|
|||||||
AlertFillIcon,
|
AlertFillIcon,
|
||||||
PinIcon,
|
PinIcon,
|
||||||
PinSlashIcon,
|
PinSlashIcon,
|
||||||
|
ImageIcon,
|
||||||
} from "@primer/octicons-react";
|
} from "@primer/octicons-react";
|
||||||
import { MAX_MINUTES_TO_SHOW_IN_PLAYTIME } from "@renderer/constants";
|
import { MAX_MINUTES_TO_SHOW_IN_PLAYTIME } from "@renderer/constants";
|
||||||
import { Tooltip } from "react-tooltip";
|
import { Tooltip } from "react-tooltip";
|
||||||
@@ -44,6 +45,11 @@ export function UserLibraryGameCard({
|
|||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const [isTooltipHovered, setIsTooltipHovered] = useState(false);
|
const [isTooltipHovered, setIsTooltipHovered] = useState(false);
|
||||||
const [isPinning, setIsPinning] = useState(false);
|
const [isPinning, setIsPinning] = useState(false);
|
||||||
|
const [imageError, setImageError] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setImageError(false);
|
||||||
|
}, [game.coverImageUrl]);
|
||||||
|
|
||||||
const getStatsItemCount = useCallback(() => {
|
const getStatsItemCount = useCallback(() => {
|
||||||
let statsCount = 1;
|
let statsCount = 1;
|
||||||
@@ -233,11 +239,18 @@ export function UserLibraryGameCard({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<img
|
{imageError || !game.coverImageUrl ? (
|
||||||
src={game.coverImageUrl ?? undefined}
|
<div className="user-library-game__cover-placeholder">
|
||||||
alt={game.title}
|
<ImageIcon size={48} />
|
||||||
className="user-library-game__game-image"
|
</div>
|
||||||
/>
|
) : (
|
||||||
|
<img
|
||||||
|
src={game.coverImageUrl}
|
||||||
|
alt={game.title}
|
||||||
|
className="user-library-game__game-image"
|
||||||
|
onError={() => setImageError(true)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
|
|||||||
@@ -38,4 +38,11 @@
|
|||||||
animation: spin 1s linear infinite;
|
animation: spin 1s linear infinite;
|
||||||
margin-right: calc(globals.$spacing-unit / 2);
|
margin-right: calc(globals.$spacing-unit / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__actions {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
gap: globals.$spacing-unit;
|
||||||
|
margin-top: calc(globals.$spacing-unit * 2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,13 @@
|
|||||||
import { useCallback, useContext, useEffect, useState } from "react";
|
import { useContext, useEffect, useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { Button, Modal, TextField } from "@renderer/components";
|
import { Button, Modal, TextField } from "@renderer/components";
|
||||||
import { settingsContext } from "@renderer/context";
|
import { settingsContext } from "@renderer/context";
|
||||||
import { useForm } from "react-hook-form";
|
import { useForm } from "react-hook-form";
|
||||||
import { useAppDispatch } from "@renderer/hooks";
|
import { logger } from "@renderer/logger";
|
||||||
|
|
||||||
import * as yup from "yup";
|
import * as yup from "yup";
|
||||||
import { yupResolver } from "@hookform/resolvers/yup";
|
import { yupResolver } from "@hookform/resolvers/yup";
|
||||||
import type { DownloadSourceValidationResult } from "@types";
|
|
||||||
import { setIsImportingSources } from "@renderer/features";
|
|
||||||
import { SyncIcon } from "@primer/octicons-react";
|
import { SyncIcon } from "@primer/octicons-react";
|
||||||
import "./add-download-source-modal.scss";
|
import "./add-download-source-modal.scss";
|
||||||
|
|
||||||
@@ -28,7 +26,6 @@ export function AddDownloadSourceModal({
|
|||||||
onClose,
|
onClose,
|
||||||
onAddDownloadSource,
|
onAddDownloadSource,
|
||||||
}: Readonly<AddDownloadSourceModalProps>) {
|
}: Readonly<AddDownloadSourceModalProps>) {
|
||||||
const [url, setUrl] = useState("");
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
|
||||||
const { t } = useTranslation("settings");
|
const { t } = useTranslation("settings");
|
||||||
@@ -48,77 +45,43 @@ export function AddDownloadSourceModal({
|
|||||||
resolver: yupResolver(schema),
|
resolver: yupResolver(schema),
|
||||||
});
|
});
|
||||||
|
|
||||||
const [validationResult, setValidationResult] =
|
|
||||||
useState<DownloadSourceValidationResult | null>(null);
|
|
||||||
|
|
||||||
const { sourceUrl } = useContext(settingsContext);
|
const { sourceUrl } = useContext(settingsContext);
|
||||||
|
|
||||||
const dispatch = useAppDispatch();
|
const onSubmit = async (values: FormValues) => {
|
||||||
|
setIsLoading(true);
|
||||||
|
|
||||||
const onSubmit = useCallback(
|
try {
|
||||||
async (values: FormValues) => {
|
await window.electron.addDownloadSource(values.url);
|
||||||
const exists = await window.electron.checkDownloadSourceExists(
|
|
||||||
values.url
|
|
||||||
);
|
|
||||||
|
|
||||||
if (exists) {
|
onClose();
|
||||||
setError("url", {
|
onAddDownloadSource();
|
||||||
type: "server",
|
} catch (error) {
|
||||||
message: t("source_already_exists"),
|
logger.error("Failed to add download source:", error);
|
||||||
});
|
const errorMessage =
|
||||||
|
error instanceof Error && error.message.includes("already exists")
|
||||||
|
? t("download_source_already_exists")
|
||||||
|
: t("failed_add_download_source");
|
||||||
|
|
||||||
return;
|
setError("url", {
|
||||||
}
|
type: "server",
|
||||||
|
message: errorMessage,
|
||||||
const validationResult = await window.electron.validateDownloadSource(
|
});
|
||||||
values.url
|
} finally {
|
||||||
);
|
setIsLoading(false);
|
||||||
|
}
|
||||||
setValidationResult(validationResult);
|
};
|
||||||
setUrl(values.url);
|
|
||||||
},
|
|
||||||
[setError, t]
|
|
||||||
);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setValue("url", "");
|
setValue("url", "");
|
||||||
clearErrors();
|
clearErrors();
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
setValidationResult(null);
|
|
||||||
|
|
||||||
if (sourceUrl) {
|
if (sourceUrl) {
|
||||||
setValue("url", sourceUrl);
|
setValue("url", sourceUrl);
|
||||||
handleSubmit(onSubmit)();
|
|
||||||
}
|
}
|
||||||
}, [visible, clearErrors, handleSubmit, onSubmit, setValue, sourceUrl]);
|
}, [visible, clearErrors, setValue, sourceUrl]);
|
||||||
|
|
||||||
const handleAddDownloadSource = async () => {
|
|
||||||
if (validationResult) {
|
|
||||||
setIsLoading(true);
|
|
||||||
dispatch(setIsImportingSources(true));
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Single call that handles: import → API sync → fingerprint
|
|
||||||
await window.electron.addDownloadSource(url);
|
|
||||||
|
|
||||||
// Close modal and update UI
|
|
||||||
onClose();
|
|
||||||
onAddDownloadSource();
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Failed to add download source:", error);
|
|
||||||
setError("url", {
|
|
||||||
type: "server",
|
|
||||||
message: "Failed to import source. Please try again.",
|
|
||||||
});
|
|
||||||
} finally {
|
|
||||||
setIsLoading(false);
|
|
||||||
dispatch(setIsImportingSources(false));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleClose = () => {
|
const handleClose = () => {
|
||||||
// Prevent closing while importing
|
|
||||||
if (isLoading) return;
|
if (isLoading) return;
|
||||||
onClose();
|
onClose();
|
||||||
};
|
};
|
||||||
@@ -132,49 +95,32 @@ export function AddDownloadSourceModal({
|
|||||||
clickOutsideToClose={!isLoading}
|
clickOutsideToClose={!isLoading}
|
||||||
>
|
>
|
||||||
<div className="add-download-source-modal__container">
|
<div className="add-download-source-modal__container">
|
||||||
<TextField
|
<form onSubmit={handleSubmit(onSubmit)}>
|
||||||
{...register("url")}
|
<TextField
|
||||||
label={t("download_source_url")}
|
{...register("url")}
|
||||||
placeholder={t("insert_valid_json_url")}
|
label={t("download_source_url")}
|
||||||
error={errors.url?.message}
|
placeholder={t("insert_valid_json_url")}
|
||||||
rightContent={
|
error={errors.url?.message}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="add-download-source-modal__actions">
|
||||||
<Button
|
<Button
|
||||||
type="button"
|
type="button"
|
||||||
theme="outline"
|
theme="outline"
|
||||||
className="add-download-source-modal__validate-button"
|
onClick={handleClose}
|
||||||
onClick={handleSubmit(onSubmit)}
|
|
||||||
disabled={isSubmitting || isLoading}
|
|
||||||
>
|
|
||||||
{t("validate_download_source")}
|
|
||||||
</Button>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{validationResult && (
|
|
||||||
<div className="add-download-source-modal__validation-result">
|
|
||||||
<div className="add-download-source-modal__validation-info">
|
|
||||||
<h4>{validationResult?.name}</h4>
|
|
||||||
<small>
|
|
||||||
{t("found_download_option", {
|
|
||||||
count: validationResult?.downloadCount,
|
|
||||||
countFormatted:
|
|
||||||
validationResult?.downloadCount.toLocaleString(),
|
|
||||||
})}
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
onClick={handleAddDownloadSource}
|
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
>
|
>
|
||||||
|
{t("cancel")}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button type="submit" disabled={isSubmitting || isLoading}>
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
<SyncIcon className="add-download-source-modal__spinner" />
|
<SyncIcon className="add-download-source-modal__spinner" />
|
||||||
)}
|
)}
|
||||||
{isLoading ? t("importing") : t("import")}
|
{isLoading ? t("adding") : t("add_download_source")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -201,7 +201,7 @@ export function SettingsAccount() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section className="settings-account__section">
|
<section className="settings-account__section">
|
||||||
<h3>Hydra Cloud</h3>
|
<h3>{t("hydra_cloud")}</h3>
|
||||||
<div className="settings-account__subscription-info">
|
<div className="settings-account__subscription-info">
|
||||||
{getHydraCloudSectionContent().description}
|
{getHydraCloudSectionContent().description}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
@use "../../scss/globals.scss";
|
@use "../../scss/globals.scss";
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.settings-download-sources {
|
.settings-download-sources {
|
||||||
&__list {
|
&__list {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -22,6 +31,17 @@
|
|||||||
&--syncing {
|
&--syncing {
|
||||||
opacity: globals.$disabled-opacity;
|
opacity: globals.$disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--pending {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__spinner {
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
margin-right: calc(globals.$spacing-unit / 2);
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__item-header {
|
&__item-header {
|
||||||
|
|||||||
@@ -16,12 +16,13 @@ import {
|
|||||||
TrashIcon,
|
TrashIcon,
|
||||||
} from "@primer/octicons-react";
|
} from "@primer/octicons-react";
|
||||||
import { AddDownloadSourceModal } from "./add-download-source-modal";
|
import { AddDownloadSourceModal } from "./add-download-source-modal";
|
||||||
import { useAppDispatch, useRepacks, useToast } from "@renderer/hooks";
|
import { useAppDispatch, useToast } from "@renderer/hooks";
|
||||||
import { DownloadSourceStatus } from "@shared";
|
import { DownloadSourceStatus } from "@shared";
|
||||||
import { settingsContext } from "@renderer/context";
|
import { settingsContext } from "@renderer/context";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { setFilters, clearFilters } from "@renderer/features";
|
import { setFilters, clearFilters } from "@renderer/features";
|
||||||
import "./settings-download-sources.scss";
|
import "./settings-download-sources.scss";
|
||||||
|
import { logger } from "@renderer/logger";
|
||||||
|
|
||||||
export function SettingsDownloadSources() {
|
export function SettingsDownloadSources() {
|
||||||
const [
|
const [
|
||||||
@@ -35,7 +36,6 @@ export function SettingsDownloadSources() {
|
|||||||
useState(false);
|
useState(false);
|
||||||
const [isRemovingDownloadSource, setIsRemovingDownloadSource] =
|
const [isRemovingDownloadSource, setIsRemovingDownloadSource] =
|
||||||
useState(false);
|
useState(false);
|
||||||
const [isFetchingSources, setIsFetchingSources] = useState(true);
|
|
||||||
|
|
||||||
const { sourceUrl, clearSourceUrl } = useContext(settingsContext);
|
const { sourceUrl, clearSourceUrl } = useContext(settingsContext);
|
||||||
|
|
||||||
@@ -46,37 +46,53 @@ export function SettingsDownloadSources() {
|
|||||||
|
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const { updateRepacks } = useRepacks();
|
|
||||||
|
|
||||||
const getDownloadSources = async () => {
|
|
||||||
await window.electron
|
|
||||||
.getDownloadSourcesList()
|
|
||||||
.then((sources) => {
|
|
||||||
setDownloadSources(sources);
|
|
||||||
})
|
|
||||||
.finally(() => {
|
|
||||||
setIsFetchingSources(false);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
getDownloadSources();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (sourceUrl) setShowAddDownloadSourceModal(true);
|
if (sourceUrl) setShowAddDownloadSourceModal(true);
|
||||||
}, [sourceUrl]);
|
}, [sourceUrl]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchDownloadSources = async () => {
|
||||||
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchDownloadSources();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const hasPendingOrMatchingSource = downloadSources.some(
|
||||||
|
(source) =>
|
||||||
|
source.status === DownloadSourceStatus.PendingMatching ||
|
||||||
|
source.status === DownloadSourceStatus.Matching
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!hasPendingOrMatchingSource || !downloadSources.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const intervalId = setInterval(async () => {
|
||||||
|
try {
|
||||||
|
await window.electron.syncDownloadSources();
|
||||||
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error("Failed to fetch download sources:", error);
|
||||||
|
}
|
||||||
|
}, 5000);
|
||||||
|
|
||||||
|
return () => clearInterval(intervalId);
|
||||||
|
}, [downloadSources]);
|
||||||
|
|
||||||
const handleRemoveSource = async (downloadSource: DownloadSource) => {
|
const handleRemoveSource = async (downloadSource: DownloadSource) => {
|
||||||
setIsRemovingDownloadSource(true);
|
setIsRemovingDownloadSource(true);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await window.electron.deleteDownloadSource(downloadSource.id);
|
await window.electron.removeDownloadSource(false, downloadSource.id);
|
||||||
await window.electron.removeDownloadSource(downloadSource.url);
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
showSuccessToast(t("removed_download_source"));
|
showSuccessToast(t("removed_download_source"));
|
||||||
await getDownloadSources();
|
} catch (error) {
|
||||||
updateRepacks();
|
logger.error("Failed to remove download source:", error);
|
||||||
} finally {
|
} finally {
|
||||||
setIsRemovingDownloadSource(false);
|
setIsRemovingDownloadSource(false);
|
||||||
}
|
}
|
||||||
@@ -86,53 +102,47 @@ export function SettingsDownloadSources() {
|
|||||||
setIsRemovingDownloadSource(true);
|
setIsRemovingDownloadSource(true);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await window.electron.deleteAllDownloadSources();
|
await window.electron.removeDownloadSource(true);
|
||||||
await window.electron.removeDownloadSource("", true);
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
showSuccessToast(t("removed_download_sources"));
|
showSuccessToast(t("removed_all_download_sources"));
|
||||||
await getDownloadSources();
|
} catch (error) {
|
||||||
setShowConfirmationDeleteAllSourcesModal(false);
|
logger.error("Failed to remove all download sources:", error);
|
||||||
updateRepacks();
|
|
||||||
} finally {
|
} finally {
|
||||||
setIsRemovingDownloadSource(false);
|
setIsRemovingDownloadSource(false);
|
||||||
|
setShowConfirmationDeleteAllSourcesModal(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleAddDownloadSource = async () => {
|
const handleAddDownloadSource = async () => {
|
||||||
// Refresh sources list and repacks after import completes
|
try {
|
||||||
await getDownloadSources();
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
// Force repacks update to ensure UI reflects new data
|
} catch (error) {
|
||||||
await updateRepacks();
|
logger.error("Failed to refresh download sources:", error);
|
||||||
|
}
|
||||||
showSuccessToast(t("added_download_source"));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const syncDownloadSources = async () => {
|
const syncDownloadSources = async () => {
|
||||||
setIsSyncingDownloadSources(true);
|
setIsSyncingDownloadSources(true);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Sync local sources (check for updates)
|
|
||||||
await window.electron.syncDownloadSources();
|
await window.electron.syncDownloadSources();
|
||||||
|
const sources = await window.electron.getDownloadSources();
|
||||||
|
setDownloadSources(sources);
|
||||||
|
|
||||||
// Refresh sources and repacks AFTER sync completes
|
showSuccessToast(t("download_sources_synced_successfully"));
|
||||||
await getDownloadSources();
|
|
||||||
await updateRepacks();
|
|
||||||
|
|
||||||
showSuccessToast(t("download_sources_synced"));
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error syncing download sources:", error);
|
|
||||||
// Still refresh the UI even if sync fails
|
|
||||||
await getDownloadSources();
|
|
||||||
await updateRepacks();
|
|
||||||
} finally {
|
} finally {
|
||||||
setIsSyncingDownloadSources(false);
|
setIsSyncingDownloadSources(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const statusTitle = {
|
const statusTitle = {
|
||||||
[DownloadSourceStatus.UpToDate]: t("download_source_up_to_date"),
|
[DownloadSourceStatus.PendingMatching]: t(
|
||||||
[DownloadSourceStatus.Errored]: t("download_source_errored"),
|
"download_source_pending_matching"
|
||||||
|
),
|
||||||
|
[DownloadSourceStatus.Matched]: t("download_source_matched"),
|
||||||
|
[DownloadSourceStatus.Matching]: t("download_source_matching"),
|
||||||
|
[DownloadSourceStatus.Failed]: t("download_source_failed"),
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleModalClose = () => {
|
const handleModalClose = () => {
|
||||||
@@ -142,7 +152,7 @@ export function SettingsDownloadSources() {
|
|||||||
|
|
||||||
const navigateToCatalogue = (fingerprint?: string) => {
|
const navigateToCatalogue = (fingerprint?: string) => {
|
||||||
if (!fingerprint) {
|
if (!fingerprint) {
|
||||||
console.error("Cannot navigate: fingerprint is undefined");
|
logger.error("Cannot navigate: fingerprint is undefined");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -180,8 +190,7 @@ export function SettingsDownloadSources() {
|
|||||||
disabled={
|
disabled={
|
||||||
!downloadSources.length ||
|
!downloadSources.length ||
|
||||||
isSyncingDownloadSources ||
|
isSyncingDownloadSources ||
|
||||||
isRemovingDownloadSource ||
|
isRemovingDownloadSource
|
||||||
isFetchingSources
|
|
||||||
}
|
}
|
||||||
onClick={syncDownloadSources}
|
onClick={syncDownloadSources}
|
||||||
>
|
>
|
||||||
@@ -197,8 +206,7 @@ export function SettingsDownloadSources() {
|
|||||||
disabled={
|
disabled={
|
||||||
isRemovingDownloadSource ||
|
isRemovingDownloadSource ||
|
||||||
isSyncingDownloadSources ||
|
isSyncingDownloadSources ||
|
||||||
!downloadSources.length ||
|
!downloadSources.length
|
||||||
isFetchingSources
|
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<TrashIcon />
|
<TrashIcon />
|
||||||
@@ -209,11 +217,7 @@ export function SettingsDownloadSources() {
|
|||||||
type="button"
|
type="button"
|
||||||
theme="outline"
|
theme="outline"
|
||||||
onClick={() => setShowAddDownloadSourceModal(true)}
|
onClick={() => setShowAddDownloadSourceModal(true)}
|
||||||
disabled={
|
disabled={isSyncingDownloadSources || isRemovingDownloadSource}
|
||||||
isSyncingDownloadSources ||
|
|
||||||
isFetchingSources ||
|
|
||||||
isRemovingDownloadSource
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
<PlusCircleIcon />
|
<PlusCircleIcon />
|
||||||
{t("add_download_source")}
|
{t("add_download_source")}
|
||||||
@@ -223,16 +227,25 @@ export function SettingsDownloadSources() {
|
|||||||
|
|
||||||
<ul className="settings-download-sources__list">
|
<ul className="settings-download-sources__list">
|
||||||
{downloadSources.map((downloadSource) => {
|
{downloadSources.map((downloadSource) => {
|
||||||
|
const isPendingOrMatching =
|
||||||
|
downloadSource.status === DownloadSourceStatus.PendingMatching ||
|
||||||
|
downloadSource.status === DownloadSourceStatus.Matching;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<li
|
<li
|
||||||
key={downloadSource.id}
|
key={downloadSource.id}
|
||||||
className={`settings-download-sources__item ${isSyncingDownloadSources ? "settings-download-sources__item--syncing" : ""}`}
|
className={`settings-download-sources__item ${isSyncingDownloadSources ? "settings-download-sources__item--syncing" : ""} ${isPendingOrMatching ? "settings-download-sources__item--pending" : ""}`}
|
||||||
>
|
>
|
||||||
<div className="settings-download-sources__item-header">
|
<div className="settings-download-sources__item-header">
|
||||||
<h2>{downloadSource.name}</h2>
|
<h2>{downloadSource.name}</h2>
|
||||||
|
|
||||||
<div style={{ display: "flex" }}>
|
<div style={{ display: "flex" }}>
|
||||||
<Badge>{statusTitle[downloadSource.status]}</Badge>
|
<Badge>
|
||||||
|
{isPendingOrMatching && (
|
||||||
|
<SyncIcon className="settings-download-sources__spinner" />
|
||||||
|
)}
|
||||||
|
{statusTitle[downloadSource.status]}
|
||||||
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
@@ -244,11 +257,13 @@ export function SettingsDownloadSources() {
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<small>
|
<small>
|
||||||
{t("download_count", {
|
{isPendingOrMatching
|
||||||
count: downloadSource.downloadCount,
|
? t("download_source_no_information")
|
||||||
countFormatted:
|
: t("download_count", {
|
||||||
downloadSource.downloadCount.toLocaleString(),
|
count: downloadSource.downloadCount,
|
||||||
})}
|
countFormatted:
|
||||||
|
downloadSource.downloadCount.toLocaleString(),
|
||||||
|
})}
|
||||||
</small>
|
</small>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export function SettingsRealDebrid() {
|
|||||||
{t("save_changes")}
|
{t("save_changes")}
|
||||||
</Button>
|
</Button>
|
||||||
}
|
}
|
||||||
placeholder="API Token"
|
placeholder={t("api_token")}
|
||||||
hint={
|
hint={
|
||||||
<Trans i18nKey="debrid_api_token_hint" ns="settings">
|
<Trans i18nKey="debrid_api_token_hint" ns="settings">
|
||||||
<Link to={REAL_DEBRID_API_TOKEN_URL} />
|
<Link to={REAL_DEBRID_API_TOKEN_URL} />
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ export function SettingsTorBox() {
|
|||||||
onChange={(event) =>
|
onChange={(event) =>
|
||||||
setForm({ ...form, torBoxApiToken: event.target.value })
|
setForm({ ...form, torBoxApiToken: event.target.value })
|
||||||
}
|
}
|
||||||
placeholder="API Token"
|
placeholder={t("api_token")}
|
||||||
rightContent={
|
rightContent={
|
||||||
<Button type="submit" disabled={isButtonDisabled}>
|
<Button type="submit" disabled={isButtonDisabled}>
|
||||||
{t("save_changes")}
|
{t("save_changes")}
|
||||||
|
|||||||
@@ -8,8 +8,6 @@ import {
|
|||||||
userDetailsSlice,
|
userDetailsSlice,
|
||||||
gameRunningSlice,
|
gameRunningSlice,
|
||||||
subscriptionSlice,
|
subscriptionSlice,
|
||||||
repacksSlice,
|
|
||||||
downloadSourcesSlice,
|
|
||||||
catalogueSearchSlice,
|
catalogueSearchSlice,
|
||||||
} from "@renderer/features";
|
} from "@renderer/features";
|
||||||
|
|
||||||
@@ -23,8 +21,6 @@ export const store = configureStore({
|
|||||||
userDetails: userDetailsSlice.reducer,
|
userDetails: userDetailsSlice.reducer,
|
||||||
gameRunning: gameRunningSlice.reducer,
|
gameRunning: gameRunningSlice.reducer,
|
||||||
subscription: subscriptionSlice.reducer,
|
subscription: subscriptionSlice.reducer,
|
||||||
repacks: repacksSlice.reducer,
|
|
||||||
downloadSources: downloadSourcesSlice.reducer,
|
|
||||||
catalogueSearch: catalogueSearchSlice.reducer,
|
catalogueSearch: catalogueSearchSlice.reducer,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -11,8 +11,10 @@ export enum Downloader {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum DownloadSourceStatus {
|
export enum DownloadSourceStatus {
|
||||||
UpToDate,
|
PendingMatching = "PENDING_MATCHING",
|
||||||
Errored,
|
Matched = "MATCHED",
|
||||||
|
Matching = "MATCHING",
|
||||||
|
Failed = "FAILED",
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum CatalogueCategory {
|
export enum CatalogueCategory {
|
||||||
|
|||||||
@@ -16,29 +16,24 @@ export interface DiskUsage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface GameRepack {
|
export interface GameRepack {
|
||||||
id: number;
|
id: string;
|
||||||
title: string;
|
title: string;
|
||||||
uris: string[];
|
|
||||||
repacker: string;
|
|
||||||
fileSize: string | null;
|
fileSize: string | null;
|
||||||
objectIds: string[];
|
uris: string[];
|
||||||
uploadDate: Date | string | null;
|
uploadDate: string | null;
|
||||||
createdAt: Date;
|
downloadSourceId: string;
|
||||||
updatedAt: Date;
|
downloadSourceName: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DownloadSource {
|
export interface DownloadSource {
|
||||||
id: number;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
url: string;
|
url: string;
|
||||||
repackCount: number;
|
|
||||||
status: DownloadSourceStatus;
|
status: DownloadSourceStatus;
|
||||||
objectIds: string[];
|
|
||||||
downloadCount: number;
|
downloadCount: number;
|
||||||
fingerprint?: string;
|
fingerprint?: string;
|
||||||
etag: string | null;
|
isRemote?: true;
|
||||||
createdAt: Date;
|
createdAt: string;
|
||||||
updatedAt: Date;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ShopAssets {
|
export interface ShopAssets {
|
||||||
@@ -51,6 +46,7 @@ export interface ShopAssets {
|
|||||||
logoImageUrl: string;
|
logoImageUrl: string;
|
||||||
logoPosition: string | null;
|
logoPosition: string | null;
|
||||||
coverImageUrl: string | null;
|
coverImageUrl: string | null;
|
||||||
|
downloadSources: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ShopDetails = SteamAppDetails & {
|
export type ShopDetails = SteamAppDetails & {
|
||||||
@@ -113,7 +109,6 @@ export type AppUpdaterEvent =
|
|||||||
|
|
||||||
/* Events */
|
/* Events */
|
||||||
export interface StartGameDownloadPayload {
|
export interface StartGameDownloadPayload {
|
||||||
repackId: number;
|
|
||||||
objectId: string;
|
objectId: string;
|
||||||
title: string;
|
title: string;
|
||||||
shop: GameShop;
|
shop: GameShop;
|
||||||
@@ -231,12 +226,6 @@ export interface DownloadSourceDownload {
|
|||||||
fileSize: string;
|
fileSize: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DownloadSourceValidationResult {
|
|
||||||
name: string;
|
|
||||||
etag: string;
|
|
||||||
downloadCount: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GameStats {
|
export interface GameStats {
|
||||||
downloadCount: number;
|
downloadCount: number;
|
||||||
playerCount: number;
|
playerCount: number;
|
||||||
@@ -255,6 +244,7 @@ export interface GameReview {
|
|||||||
isBlocked: boolean;
|
isBlocked: boolean;
|
||||||
hasUpvoted: boolean;
|
hasUpvoted: boolean;
|
||||||
hasDownvoted: boolean;
|
hasDownvoted: boolean;
|
||||||
|
playTimeInSeconds?: number;
|
||||||
user: {
|
user: {
|
||||||
id: string;
|
id: string;
|
||||||
displayName: string;
|
displayName: string;
|
||||||
@@ -263,7 +253,7 @@ export interface GameReview {
|
|||||||
translations: {
|
translations: {
|
||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
};
|
};
|
||||||
detectedLanguage: string;
|
detectedLanguage: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TrendingGame extends ShopAssets {
|
export interface TrendingGame extends ShopAssets {
|
||||||
@@ -366,7 +356,7 @@ export type CatalogueSearchResult = {
|
|||||||
title: string;
|
title: string;
|
||||||
shop: GameShop;
|
shop: GameShop;
|
||||||
genres: string[];
|
genres: string[];
|
||||||
} & Pick<ShopAssets, "libraryImageUrl">;
|
} & Pick<ShopAssets, "libraryImageUrl" | "downloadSources">;
|
||||||
|
|
||||||
export type LibraryGame = Game &
|
export type LibraryGame = Game &
|
||||||
Partial<ShopAssets> & {
|
Partial<ShopAssets> & {
|
||||||
|
|||||||
395
yarn.lock
395
yarn.lock
@@ -601,7 +601,7 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.4.tgz#96fdf1af1b8859c8474ab39c295312bfb7c24b04"
|
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.4.tgz#96fdf1af1b8859c8474ab39c295312bfb7c24b04"
|
||||||
integrity sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==
|
integrity sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==
|
||||||
|
|
||||||
"@babel/core@^7.21.3", "@babel/core@^7.26.10", "@babel/core@^7.28.0":
|
"@babel/core@^7.21.3", "@babel/core@^7.28.0":
|
||||||
version "7.28.4"
|
version "7.28.4"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.4.tgz#12a550b8794452df4c8b084f95003bce1742d496"
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.4.tgz#12a550b8794452df4c8b084f95003bce1742d496"
|
||||||
integrity sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==
|
integrity sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==
|
||||||
@@ -622,6 +622,27 @@
|
|||||||
json5 "^2.2.3"
|
json5 "^2.2.3"
|
||||||
semver "^6.3.1"
|
semver "^6.3.1"
|
||||||
|
|
||||||
|
"@babel/core@^7.27.7":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz#4c81b35e51e1b734f510c99b07dfbc7bbbb48f7e"
|
||||||
|
integrity sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.27.1"
|
||||||
|
"@babel/generator" "^7.28.5"
|
||||||
|
"@babel/helper-compilation-targets" "^7.27.2"
|
||||||
|
"@babel/helper-module-transforms" "^7.28.3"
|
||||||
|
"@babel/helpers" "^7.28.4"
|
||||||
|
"@babel/parser" "^7.28.5"
|
||||||
|
"@babel/template" "^7.27.2"
|
||||||
|
"@babel/traverse" "^7.28.5"
|
||||||
|
"@babel/types" "^7.28.5"
|
||||||
|
"@jridgewell/remapping" "^2.3.5"
|
||||||
|
convert-source-map "^2.0.0"
|
||||||
|
debug "^4.1.0"
|
||||||
|
gensync "^1.0.0-beta.2"
|
||||||
|
json5 "^2.2.3"
|
||||||
|
semver "^6.3.1"
|
||||||
|
|
||||||
"@babel/generator@^7.28.3":
|
"@babel/generator@^7.28.3":
|
||||||
version "7.28.3"
|
version "7.28.3"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.3.tgz#9626c1741c650cbac39121694a0f2d7451b8ef3e"
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.3.tgz#9626c1741c650cbac39121694a0f2d7451b8ef3e"
|
||||||
@@ -633,6 +654,17 @@
|
|||||||
"@jridgewell/trace-mapping" "^0.3.28"
|
"@jridgewell/trace-mapping" "^0.3.28"
|
||||||
jsesc "^3.0.2"
|
jsesc "^3.0.2"
|
||||||
|
|
||||||
|
"@babel/generator@^7.28.5":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz#712722d5e50f44d07bc7ac9fe84438742dd61298"
|
||||||
|
integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.28.5"
|
||||||
|
"@babel/types" "^7.28.5"
|
||||||
|
"@jridgewell/gen-mapping" "^0.3.12"
|
||||||
|
"@jridgewell/trace-mapping" "^0.3.28"
|
||||||
|
jsesc "^3.0.2"
|
||||||
|
|
||||||
"@babel/helper-compilation-targets@^7.27.2":
|
"@babel/helper-compilation-targets@^7.27.2":
|
||||||
version "7.27.2"
|
version "7.27.2"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
|
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
|
||||||
@@ -681,6 +713,11 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
|
||||||
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
|
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
|
||||||
|
|
||||||
|
"@babel/helper-validator-identifier@^7.28.5":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
|
||||||
|
integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
|
||||||
|
|
||||||
"@babel/helper-validator-option@^7.27.1":
|
"@babel/helper-validator-option@^7.27.1":
|
||||||
version "7.27.1"
|
version "7.27.1"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
|
||||||
@@ -701,7 +738,14 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.28.4"
|
"@babel/types" "^7.28.4"
|
||||||
|
|
||||||
"@babel/plugin-transform-arrow-functions@^7.25.9":
|
"@babel/parser@^7.28.5":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
|
||||||
|
integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "^7.28.5"
|
||||||
|
|
||||||
|
"@babel/plugin-transform-arrow-functions@^7.27.1":
|
||||||
version "7.27.1"
|
version "7.27.1"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
|
||||||
integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
|
integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
|
||||||
@@ -749,6 +793,19 @@
|
|||||||
"@babel/types" "^7.28.4"
|
"@babel/types" "^7.28.4"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
|
|
||||||
|
"@babel/traverse@^7.28.5":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz#450cab9135d21a7a2ca9d2d35aa05c20e68c360b"
|
||||||
|
integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.27.1"
|
||||||
|
"@babel/generator" "^7.28.5"
|
||||||
|
"@babel/helper-globals" "^7.28.0"
|
||||||
|
"@babel/parser" "^7.28.5"
|
||||||
|
"@babel/template" "^7.27.2"
|
||||||
|
"@babel/types" "^7.28.5"
|
||||||
|
debug "^4.3.1"
|
||||||
|
|
||||||
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.28.2", "@babel/types@^7.28.4":
|
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.28.2", "@babel/types@^7.28.4":
|
||||||
version "7.28.4"
|
version "7.28.4"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.4.tgz#0a4e618f4c60a7cd6c11cb2d48060e4dbe38ac3a"
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.4.tgz#0a4e618f4c60a7cd6c11cb2d48060e4dbe38ac3a"
|
||||||
@@ -757,6 +814,14 @@
|
|||||||
"@babel/helper-string-parser" "^7.27.1"
|
"@babel/helper-string-parser" "^7.27.1"
|
||||||
"@babel/helper-validator-identifier" "^7.27.1"
|
"@babel/helper-validator-identifier" "^7.27.1"
|
||||||
|
|
||||||
|
"@babel/types@^7.28.5":
|
||||||
|
version "7.28.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
|
||||||
|
integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-string-parser" "^7.27.1"
|
||||||
|
"@babel/helper-validator-identifier" "^7.28.5"
|
||||||
|
|
||||||
"@borewit/text-codec@^0.1.0":
|
"@borewit/text-codec@^0.1.0":
|
||||||
version "0.1.1"
|
version "0.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@borewit/text-codec/-/text-codec-0.1.1.tgz#7e7f27092473d5eabcffef693a849f2cc48431da"
|
resolved "https://registry.yarnpkg.com/@borewit/text-codec/-/text-codec-0.1.1.tgz#7e7f27092473d5eabcffef693a849f2cc48431da"
|
||||||
@@ -1121,245 +1186,245 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
|
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
|
||||||
integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==
|
integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==
|
||||||
|
|
||||||
"@esbuild/aix-ppc64@0.25.10":
|
"@esbuild/aix-ppc64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz#ee6b7163a13528e099ecf562b972f2bcebe0aa97"
|
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz#2ae33300598132cc4cf580dbbb28d30fed3c5c49"
|
||||||
integrity sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==
|
integrity sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==
|
||||||
|
|
||||||
"@esbuild/android-arm64@0.21.5":
|
"@esbuild/android-arm64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052"
|
||||||
integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==
|
integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==
|
||||||
|
|
||||||
"@esbuild/android-arm64@0.25.10":
|
"@esbuild/android-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz#115fc76631e82dd06811bfaf2db0d4979c16e2cb"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz#927708b3db5d739d6cb7709136924cc81bec9b03"
|
||||||
integrity sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==
|
integrity sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==
|
||||||
|
|
||||||
"@esbuild/android-arm@0.21.5":
|
"@esbuild/android-arm@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28"
|
||||||
integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
|
integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
|
||||||
|
|
||||||
"@esbuild/android-arm@0.25.10":
|
"@esbuild/android-arm@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz#8d5811912da77f615398611e5bbc1333fe321aa9"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.11.tgz#571f94e7f4068957ec4c2cfb907deae3d01b55ae"
|
||||||
integrity sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==
|
integrity sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==
|
||||||
|
|
||||||
"@esbuild/android-x64@0.21.5":
|
"@esbuild/android-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e"
|
||||||
integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==
|
integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==
|
||||||
|
|
||||||
"@esbuild/android-x64@0.25.10":
|
"@esbuild/android-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz#e3e96516b2d50d74105bb92594c473e30ddc16b1"
|
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.11.tgz#8a3bf5cae6c560c7ececa3150b2bde76e0fb81e6"
|
||||||
integrity sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==
|
integrity sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==
|
||||||
|
|
||||||
"@esbuild/darwin-arm64@0.21.5":
|
"@esbuild/darwin-arm64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
|
||||||
integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
|
integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
|
||||||
|
|
||||||
"@esbuild/darwin-arm64@0.25.10":
|
"@esbuild/darwin-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz#6af6bb1d05887dac515de1b162b59dc71212ed76"
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz#0a678c4ac4bf8717e67481e1a797e6c152f93c84"
|
||||||
integrity sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==
|
integrity sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==
|
||||||
|
|
||||||
"@esbuild/darwin-x64@0.21.5":
|
"@esbuild/darwin-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22"
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22"
|
||||||
integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==
|
integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==
|
||||||
|
|
||||||
"@esbuild/darwin-x64@0.25.10":
|
"@esbuild/darwin-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz#99ae82347fbd336fc2d28ffd4f05694e6e5b723d"
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz#70f5e925a30c8309f1294d407a5e5e002e0315fe"
|
||||||
integrity sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==
|
integrity sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==
|
||||||
|
|
||||||
"@esbuild/freebsd-arm64@0.21.5":
|
"@esbuild/freebsd-arm64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e"
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e"
|
||||||
integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==
|
integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==
|
||||||
|
|
||||||
"@esbuild/freebsd-arm64@0.25.10":
|
"@esbuild/freebsd-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz#0c6d5558a6322b0bdb17f7025c19bd7d2359437d"
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz#4ec1db687c5b2b78b44148025da9632397553e8a"
|
||||||
integrity sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==
|
integrity sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==
|
||||||
|
|
||||||
"@esbuild/freebsd-x64@0.21.5":
|
"@esbuild/freebsd-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261"
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261"
|
||||||
integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==
|
integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==
|
||||||
|
|
||||||
"@esbuild/freebsd-x64@0.25.10":
|
"@esbuild/freebsd-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz#8c35873fab8c0857a75300a3dcce4324ca0b9844"
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz#4c81abd1b142f1e9acfef8c5153d438ca53f44bb"
|
||||||
integrity sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==
|
integrity sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==
|
||||||
|
|
||||||
"@esbuild/linux-arm64@0.21.5":
|
"@esbuild/linux-arm64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b"
|
||||||
integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==
|
integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==
|
||||||
|
|
||||||
"@esbuild/linux-arm64@0.25.10":
|
"@esbuild/linux-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz#3edc2f87b889a15b4cedaf65f498c2bed7b16b90"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz#69517a111acfc2b93aa0fb5eaeb834c0202ccda5"
|
||||||
integrity sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==
|
integrity sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==
|
||||||
|
|
||||||
"@esbuild/linux-arm@0.21.5":
|
"@esbuild/linux-arm@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9"
|
||||||
integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==
|
integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==
|
||||||
|
|
||||||
"@esbuild/linux-arm@0.25.10":
|
"@esbuild/linux-arm@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz#86501cfdfb3d110176d80c41b27ed4611471cde7"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz#58dac26eae2dba0fac5405052b9002dac088d38f"
|
||||||
integrity sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==
|
integrity sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==
|
||||||
|
|
||||||
"@esbuild/linux-ia32@0.21.5":
|
"@esbuild/linux-ia32@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2"
|
||||||
integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==
|
integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==
|
||||||
|
|
||||||
"@esbuild/linux-ia32@0.25.10":
|
"@esbuild/linux-ia32@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz#e6589877876142537c6864680cd5d26a622b9d97"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz#b89d4efe9bdad46ba944f0f3b8ddd40834268c2b"
|
||||||
integrity sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==
|
integrity sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==
|
||||||
|
|
||||||
"@esbuild/linux-loong64@0.21.5":
|
"@esbuild/linux-loong64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df"
|
||||||
integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==
|
integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==
|
||||||
|
|
||||||
"@esbuild/linux-loong64@0.25.10":
|
"@esbuild/linux-loong64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz#11119e18781f136d8083ea10eb6be73db7532de8"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz#11f603cb60ad14392c3f5c94d64b3cc8b630fbeb"
|
||||||
integrity sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==
|
integrity sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==
|
||||||
|
|
||||||
"@esbuild/linux-mips64el@0.21.5":
|
"@esbuild/linux-mips64el@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe"
|
||||||
integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==
|
integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==
|
||||||
|
|
||||||
"@esbuild/linux-mips64el@0.25.10":
|
"@esbuild/linux-mips64el@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz#3052f5436b0c0c67a25658d5fc87f045e7def9e6"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz#b7d447ff0676b8ab247d69dac40a5cf08e5eeaf5"
|
||||||
integrity sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==
|
integrity sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==
|
||||||
|
|
||||||
"@esbuild/linux-ppc64@0.21.5":
|
"@esbuild/linux-ppc64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4"
|
||||||
integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==
|
integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==
|
||||||
|
|
||||||
"@esbuild/linux-ppc64@0.25.10":
|
"@esbuild/linux-ppc64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz#2f098920ee5be2ce799f35e367b28709925a8744"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz#b3a28ed7cc252a61b07ff7c8fd8a984ffd3a2f74"
|
||||||
integrity sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==
|
integrity sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==
|
||||||
|
|
||||||
"@esbuild/linux-riscv64@0.21.5":
|
"@esbuild/linux-riscv64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc"
|
||||||
integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==
|
integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==
|
||||||
|
|
||||||
"@esbuild/linux-riscv64@0.25.10":
|
"@esbuild/linux-riscv64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz#fa51d7fd0a22a62b51b4b94b405a3198cf7405dd"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz#ce75b08f7d871a75edcf4d2125f50b21dc9dc273"
|
||||||
integrity sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==
|
integrity sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==
|
||||||
|
|
||||||
"@esbuild/linux-s390x@0.21.5":
|
"@esbuild/linux-s390x@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de"
|
||||||
integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
|
integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
|
||||||
|
|
||||||
"@esbuild/linux-s390x@0.25.10":
|
"@esbuild/linux-s390x@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz#a27642e36fc282748fdb38954bd3ef4f85791e8a"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz#cd08f6c73b6b6ff9ccdaabbd3ff6ad3dca99c263"
|
||||||
integrity sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==
|
integrity sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==
|
||||||
|
|
||||||
"@esbuild/linux-x64@0.21.5":
|
"@esbuild/linux-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0"
|
||||||
integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
|
integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
|
||||||
|
|
||||||
"@esbuild/linux-x64@0.25.10":
|
"@esbuild/linux-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz#9d9b09c0033d17529570ced6d813f98315dfe4e9"
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz#3c3718af31a95d8946ebd3c32bb1e699bdf74910"
|
||||||
integrity sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==
|
integrity sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==
|
||||||
|
|
||||||
"@esbuild/netbsd-arm64@0.25.10":
|
"@esbuild/netbsd-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz#25c09a659c97e8af19e3f2afd1c9190435802151"
|
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz#b4c767082401e3a4e8595fe53c47cd7f097c8077"
|
||||||
integrity sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==
|
integrity sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==
|
||||||
|
|
||||||
"@esbuild/netbsd-x64@0.21.5":
|
"@esbuild/netbsd-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
|
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
|
||||||
integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
|
integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
|
||||||
|
|
||||||
"@esbuild/netbsd-x64@0.25.10":
|
"@esbuild/netbsd-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz#7fa5f6ffc19be3a0f6f5fd32c90df3dc2506937a"
|
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz#f2a930458ed2941d1f11ebc34b9c7d61f7a4d034"
|
||||||
integrity sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==
|
integrity sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==
|
||||||
|
|
||||||
"@esbuild/openbsd-arm64@0.25.10":
|
"@esbuild/openbsd-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz#8faa6aa1afca0c6d024398321d6cb1c18e72a1c3"
|
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz#b4ae93c75aec48bc1e8a0154957a05f0641f2dad"
|
||||||
integrity sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==
|
integrity sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==
|
||||||
|
|
||||||
"@esbuild/openbsd-x64@0.21.5":
|
"@esbuild/openbsd-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70"
|
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70"
|
||||||
integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==
|
integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==
|
||||||
|
|
||||||
"@esbuild/openbsd-x64@0.25.10":
|
"@esbuild/openbsd-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz#a42979b016f29559a8453d32440d3c8cd420af5e"
|
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz#b42863959c8dcf9b01581522e40012d2c70045e2"
|
||||||
integrity sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==
|
integrity sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==
|
||||||
|
|
||||||
"@esbuild/openharmony-arm64@0.25.10":
|
"@esbuild/openharmony-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz#fd87bfeadd7eeb3aa384bbba907459ffa3197cb1"
|
resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz#b2e717141c8fdf6bddd4010f0912e6b39e1640f1"
|
||||||
integrity sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==
|
integrity sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==
|
||||||
|
|
||||||
"@esbuild/sunos-x64@0.21.5":
|
"@esbuild/sunos-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b"
|
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b"
|
||||||
integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==
|
integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==
|
||||||
|
|
||||||
"@esbuild/sunos-x64@0.25.10":
|
"@esbuild/sunos-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz#3a18f590e36cb78ae7397976b760b2b8c74407f4"
|
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz#9fbea1febe8778927804828883ec0f6dd80eb244"
|
||||||
integrity sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==
|
integrity sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==
|
||||||
|
|
||||||
"@esbuild/win32-arm64@0.21.5":
|
"@esbuild/win32-arm64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d"
|
||||||
integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==
|
integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==
|
||||||
|
|
||||||
"@esbuild/win32-arm64@0.25.10":
|
"@esbuild/win32-arm64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz#e71741a251e3fd971408827a529d2325551f530c"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz#501539cedb24468336073383989a7323005a8935"
|
||||||
integrity sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==
|
integrity sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==
|
||||||
|
|
||||||
"@esbuild/win32-ia32@0.21.5":
|
"@esbuild/win32-ia32@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b"
|
||||||
integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
|
integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
|
||||||
|
|
||||||
"@esbuild/win32-ia32@0.25.10":
|
"@esbuild/win32-ia32@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz#c6f010b5d3b943d8901a0c87ea55f93b8b54bf94"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz#8ac7229aa82cef8f16ffb58f1176a973a7a15343"
|
||||||
integrity sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==
|
integrity sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==
|
||||||
|
|
||||||
"@esbuild/win32-x64@0.21.5":
|
"@esbuild/win32-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c"
|
||||||
integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
|
integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
|
||||||
|
|
||||||
"@esbuild/win32-x64@0.25.10":
|
"@esbuild/win32-x64@0.25.11":
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz#e4b3e255a1b4aea84f6e1d2ae0b73f826c3785bd"
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz#5ecda6f3fe138b7e456f4e429edde33c823f392f"
|
||||||
integrity sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==
|
integrity sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==
|
||||||
|
|
||||||
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
|
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
|
||||||
version "4.9.0"
|
version "4.9.0"
|
||||||
@@ -3206,13 +3271,20 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
undici-types "~7.14.0"
|
undici-types "~7.14.0"
|
||||||
|
|
||||||
"@types/node@^20.12.7", "@types/node@^20.9.0":
|
"@types/node@^20.12.7":
|
||||||
version "20.19.21"
|
version "20.19.21"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.21.tgz#6e5378e04993c40395473b13baf94a09875157b8"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.21.tgz#6e5378e04993c40395473b13baf94a09875157b8"
|
||||||
integrity sha512-CsGG2P3I5y48RPMfprQGfy4JPRZ6csfC3ltBZSRItG3ngggmNY/qs2uZKp4p9VbrpqNNSMzUZNFZKzgOGnd/VA==
|
integrity sha512-CsGG2P3I5y48RPMfprQGfy4JPRZ6csfC3ltBZSRItG3ngggmNY/qs2uZKp4p9VbrpqNNSMzUZNFZKzgOGnd/VA==
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types "~6.21.0"
|
undici-types "~6.21.0"
|
||||||
|
|
||||||
|
"@types/node@^22.7.7":
|
||||||
|
version "22.18.12"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.18.12.tgz#e165d87bc25d7bf6d3657035c914db7485de84fb"
|
||||||
|
integrity sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==
|
||||||
|
dependencies:
|
||||||
|
undici-types "~6.21.0"
|
||||||
|
|
||||||
"@types/parse-torrent-file@*":
|
"@types/parse-torrent-file@*":
|
||||||
version "4.0.6"
|
version "4.0.6"
|
||||||
resolved "https://registry.yarnpkg.com/@types/parse-torrent-file/-/parse-torrent-file-4.0.6.tgz#11801dfd5b0a017302a164b72c8869f2bcba15b1"
|
resolved "https://registry.yarnpkg.com/@types/parse-torrent-file/-/parse-torrent-file-4.0.6.tgz#11801dfd5b0a017302a164b72c8869f2bcba15b1"
|
||||||
@@ -4639,25 +4711,25 @@ electron-updater@^6.6.2:
|
|||||||
semver "^7.6.3"
|
semver "^7.6.3"
|
||||||
tiny-typed-emitter "^2.1.0"
|
tiny-typed-emitter "^2.1.0"
|
||||||
|
|
||||||
electron-vite@^3.0.0:
|
electron-vite@^4.0.1:
|
||||||
version "3.1.0"
|
version "4.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/electron-vite/-/electron-vite-3.1.0.tgz#1784907a83d23c6c8093ec68b8e414a74d814385"
|
resolved "https://registry.yarnpkg.com/electron-vite/-/electron-vite-4.0.1.tgz#6cdf798f842c255779983ccadd06b3d475c02f57"
|
||||||
integrity sha512-M7aAzaRvSl5VO+6KN4neJCYLHLpF/iWo5ztchI/+wMxIieDZQqpbCYfaEHHHPH6eupEzfvZdLYdPdmvGqoVe0Q==
|
integrity sha512-QqacJbA8f1pmwUTqki1qLL5vIBaOQmeq13CZZefZ3r3vKVaIoC7cpoTgE+KPKxJDFTax+iFZV0VYvLVWPiQ8Aw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core" "^7.26.10"
|
"@babel/core" "^7.27.7"
|
||||||
"@babel/plugin-transform-arrow-functions" "^7.25.9"
|
"@babel/plugin-transform-arrow-functions" "^7.27.1"
|
||||||
cac "^6.7.14"
|
cac "^6.7.14"
|
||||||
esbuild "^0.25.1"
|
esbuild "^0.25.5"
|
||||||
magic-string "^0.30.17"
|
magic-string "^0.30.17"
|
||||||
picocolors "^1.1.1"
|
picocolors "^1.1.1"
|
||||||
|
|
||||||
electron@^33.4.11:
|
electron@^37.7.1:
|
||||||
version "33.4.11"
|
version "37.7.1"
|
||||||
resolved "https://registry.yarnpkg.com/electron/-/electron-33.4.11.tgz#225d7f106ed3edf788ced318c63858d8b8a446dc"
|
resolved "https://registry.yarnpkg.com/electron/-/electron-37.7.1.tgz#7d771b3d3365b5458f8bc758385defee14387034"
|
||||||
integrity sha512-xmdAs5QWRkInC7TpXGNvzo/7exojubk+72jn1oJL7keNeIlw7xNglf8TGtJtkR4rWC5FJq0oXiIXPS9BcK2Irg==
|
integrity sha512-2EmIqWv4T8BtgFQosB3/0Fezs09X3l0wXhIzes/cNt/GI+UDljbQr3NiF2J9WnqP0aFSbUEfztGUQMiX+qDvsw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@electron/get" "^2.0.0"
|
"@electron/get" "^2.0.0"
|
||||||
"@types/node" "^20.9.0"
|
"@types/node" "^22.7.7"
|
||||||
extract-zip "^2.0.1"
|
extract-zip "^2.0.1"
|
||||||
|
|
||||||
embla-carousel-autoplay@^8.6.0:
|
embla-carousel-autoplay@^8.6.0:
|
||||||
@@ -4893,37 +4965,37 @@ esbuild@^0.21.3:
|
|||||||
"@esbuild/win32-ia32" "0.21.5"
|
"@esbuild/win32-ia32" "0.21.5"
|
||||||
"@esbuild/win32-x64" "0.21.5"
|
"@esbuild/win32-x64" "0.21.5"
|
||||||
|
|
||||||
esbuild@^0.25.1:
|
esbuild@^0.25.5:
|
||||||
version "0.25.10"
|
version "0.25.11"
|
||||||
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz#37f5aa5cd14500f141be121c01b096ca83ac34a9"
|
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.11.tgz#0f31b82f335652580f75ef6897bba81962d9ae3d"
|
||||||
integrity sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==
|
integrity sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
"@esbuild/aix-ppc64" "0.25.10"
|
"@esbuild/aix-ppc64" "0.25.11"
|
||||||
"@esbuild/android-arm" "0.25.10"
|
"@esbuild/android-arm" "0.25.11"
|
||||||
"@esbuild/android-arm64" "0.25.10"
|
"@esbuild/android-arm64" "0.25.11"
|
||||||
"@esbuild/android-x64" "0.25.10"
|
"@esbuild/android-x64" "0.25.11"
|
||||||
"@esbuild/darwin-arm64" "0.25.10"
|
"@esbuild/darwin-arm64" "0.25.11"
|
||||||
"@esbuild/darwin-x64" "0.25.10"
|
"@esbuild/darwin-x64" "0.25.11"
|
||||||
"@esbuild/freebsd-arm64" "0.25.10"
|
"@esbuild/freebsd-arm64" "0.25.11"
|
||||||
"@esbuild/freebsd-x64" "0.25.10"
|
"@esbuild/freebsd-x64" "0.25.11"
|
||||||
"@esbuild/linux-arm" "0.25.10"
|
"@esbuild/linux-arm" "0.25.11"
|
||||||
"@esbuild/linux-arm64" "0.25.10"
|
"@esbuild/linux-arm64" "0.25.11"
|
||||||
"@esbuild/linux-ia32" "0.25.10"
|
"@esbuild/linux-ia32" "0.25.11"
|
||||||
"@esbuild/linux-loong64" "0.25.10"
|
"@esbuild/linux-loong64" "0.25.11"
|
||||||
"@esbuild/linux-mips64el" "0.25.10"
|
"@esbuild/linux-mips64el" "0.25.11"
|
||||||
"@esbuild/linux-ppc64" "0.25.10"
|
"@esbuild/linux-ppc64" "0.25.11"
|
||||||
"@esbuild/linux-riscv64" "0.25.10"
|
"@esbuild/linux-riscv64" "0.25.11"
|
||||||
"@esbuild/linux-s390x" "0.25.10"
|
"@esbuild/linux-s390x" "0.25.11"
|
||||||
"@esbuild/linux-x64" "0.25.10"
|
"@esbuild/linux-x64" "0.25.11"
|
||||||
"@esbuild/netbsd-arm64" "0.25.10"
|
"@esbuild/netbsd-arm64" "0.25.11"
|
||||||
"@esbuild/netbsd-x64" "0.25.10"
|
"@esbuild/netbsd-x64" "0.25.11"
|
||||||
"@esbuild/openbsd-arm64" "0.25.10"
|
"@esbuild/openbsd-arm64" "0.25.11"
|
||||||
"@esbuild/openbsd-x64" "0.25.10"
|
"@esbuild/openbsd-x64" "0.25.11"
|
||||||
"@esbuild/openharmony-arm64" "0.25.10"
|
"@esbuild/openharmony-arm64" "0.25.11"
|
||||||
"@esbuild/sunos-x64" "0.25.10"
|
"@esbuild/sunos-x64" "0.25.11"
|
||||||
"@esbuild/win32-arm64" "0.25.10"
|
"@esbuild/win32-arm64" "0.25.11"
|
||||||
"@esbuild/win32-ia32" "0.25.10"
|
"@esbuild/win32-ia32" "0.25.11"
|
||||||
"@esbuild/win32-x64" "0.25.10"
|
"@esbuild/win32-x64" "0.25.11"
|
||||||
|
|
||||||
escalade@^3.1.1, escalade@^3.2.0:
|
escalade@^3.1.1, escalade@^3.2.0:
|
||||||
version "3.2.0"
|
version "3.2.0"
|
||||||
@@ -7466,6 +7538,13 @@ react-i18next@^14.1.0:
|
|||||||
"@babel/runtime" "^7.23.9"
|
"@babel/runtime" "^7.23.9"
|
||||||
html-parse-stringify "^3.0.1"
|
html-parse-stringify "^3.0.1"
|
||||||
|
|
||||||
|
react-infinite-scroll-component@^6.1.0:
|
||||||
|
version "6.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-infinite-scroll-component/-/react-infinite-scroll-component-6.1.0.tgz#7e511e7aa0f728ac3e51f64a38a6079ac522407f"
|
||||||
|
integrity sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ==
|
||||||
|
dependencies:
|
||||||
|
throttle-debounce "^2.1.0"
|
||||||
|
|
||||||
react-is@^16.13.1, react-is@^16.7.0:
|
react-is@^16.13.1, react-is@^16.7.0:
|
||||||
version "16.13.1"
|
version "16.13.1"
|
||||||
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
||||||
@@ -8468,6 +8547,11 @@ text-table@^0.2.0:
|
|||||||
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
||||||
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
|
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
|
||||||
|
|
||||||
|
throttle-debounce@^2.1.0:
|
||||||
|
version "2.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2"
|
||||||
|
integrity sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==
|
||||||
|
|
||||||
"through@>=2.2.7 <3":
|
"through@>=2.2.7 <3":
|
||||||
version "2.3.8"
|
version "2.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
||||||
@@ -8851,10 +8935,10 @@ vite-plugin-svgr@^4.5.0:
|
|||||||
"@svgr/core" "^8.1.0"
|
"@svgr/core" "^8.1.0"
|
||||||
"@svgr/plugin-jsx" "^8.1.0"
|
"@svgr/plugin-jsx" "^8.1.0"
|
||||||
|
|
||||||
vite@5.4.20:
|
vite@5.4.21:
|
||||||
version "5.4.20"
|
version "5.4.21"
|
||||||
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.20.tgz#3267a5e03f21212f44edfd72758138e8fcecd76a"
|
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.21.tgz#84a4f7c5d860b071676d39ba513c0d598fdc7027"
|
||||||
integrity sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==
|
integrity sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild "^0.21.3"
|
esbuild "^0.21.3"
|
||||||
postcss "^8.4.43"
|
postcss "^8.4.43"
|
||||||
@@ -9118,8 +9202,3 @@ yup@^1.5.0:
|
|||||||
tiny-case "^1.0.3"
|
tiny-case "^1.0.3"
|
||||||
toposort "^2.0.2"
|
toposort "^2.0.2"
|
||||||
type-fest "^2.19.0"
|
type-fest "^2.19.0"
|
||||||
|
|
||||||
zod@^3.24.1:
|
|
||||||
version "3.25.76"
|
|
||||||
resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
|
|
||||||
integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
|
|
||||||
|
|||||||
Reference in New Issue
Block a user