Compare commits

..

34 Commits

Author SHA1 Message Date
Nate
ee0e314b29 css fix 2025-01-18 18:45:54 -03:00
Nate
d50bb137e6 fixed everything 2025-01-18 15:17:52 -03:00
Nate
1bbf3b27bf added "as vars;" + vars.$ 2025-01-18 14:13:57 -03:00
Nate
3c9d036efd @import to @use 2025-01-18 13:48:00 -03:00
Nate
e97a6fe51a font syntax fix 2025-01-18 13:14:59 -03:00
Eight
ead094de01 Merge branch 'main' into feature/migration-to-scss 2025-01-18 13:08:30 -03:00
Nate
855a646d23 syntax fix 2025-01-17 22:42:14 -03:00
Nate
8192e5d8f1 full migration to scss 2025-01-17 20:16:57 -03:00
Nate
2bd4b69926 full migration to scss 2025-01-17 20:14:54 -03:00
Nate
62c6071395 full migration to scss 2025-01-17 20:03:20 -03:00
Nate
d1750fff59 full migration to scss 2025-01-17 20:00:00 -03:00
Nate
138244d5aa full migration to scss 2025-01-17 19:58:16 -03:00
Nate
d038398750 full migration to scss 2025-01-17 19:43:41 -03:00
Nate
b0eb7c16cd migration to scss 2025-01-17 19:26:27 -03:00
Nate
691dba26af migration to scss
all tsx files adjusted
added root vars on _variables.scss
2025-01-17 18:52:23 -03:00
Nate
ad330bd7a3 Merge branch 'feature/migration-to-scss' of https://github.com/hydralauncher/hydra into feature/migration-to-scss 2025-01-17 18:51:32 -03:00
Hachi-R
fe8f1b44db lint 2025-01-17 16:34:48 -03:00
Hachi-R
b9c072e7ac feat: integrate monaco editor 2025-01-17 16:34:06 -03:00
Nate
50df38856d migration to scss
no .tsx changes were made, yet
2025-01-17 14:11:35 -03:00
Hachi-R
f5395305eb Merge branch 'feature/migration-to-scss' of https://github.com/hydralauncher/hydra into feature/migration-to-scss 2025-01-17 12:37:33 -03:00
Hachi-R
3f29a78593 fix: show editor devtools in dev 2025-01-17 12:29:03 -03:00
Eight
71f3409275 Merge branch 'main' into feature/migration-to-scss 2025-01-17 12:27:30 -03:00
Hachi-R
c4f5d17b40 refactor: remove redundant condition 2025-01-17 12:25:00 -03:00
Hachi-R
686ec61a99 Merge branch 'main' into feature/migration-to-scss 2025-01-17 12:10:00 -03:00
Hachi-R
fb63ec864c feat: add editor window 2025-01-17 12:00:59 -03:00
Hachi-R
e07297fc53 lint 2025-01-17 10:30:35 -03:00
Hachi-R
c17839ae97 feat: add aparence tab to settings page 2025-01-17 10:27:59 -03:00
Hachi-R
395f77e17c refactor: change notifications header to paragraph 2025-01-16 12:18:25 -03:00
Hachi-R
f6707a5c84 lint 2025-01-16 11:30:24 -03:00
Hachi-R
ee4c564698 Merge branch 'main' into feature/migration-to-scss 2025-01-16 11:30:09 -03:00
Chubby Granny Chaser
cedb61cb38 feat: removing insert custom styles 2024-12-16 16:21:02 +00:00
Chubby Granny Chaser
a292164a55 feat: adding demo theme composer 2024-11-08 17:05:38 +00:00
bumyy
4b59a007f4 feat: migration to scss 2024-11-08 13:31:40 -03:00
bumyy
c9e99d3852 feat: migrated to scss 2024-11-07 20:23:03 -03:00
194 changed files with 4878 additions and 4695 deletions

View File

@@ -125,10 +125,6 @@ cd hydra
yarn yarn
``` ```
### <a name="install-openssl-11"></a> Instale OpenSSL 1.1
[OpenSSL 1.1](https://slproweb.com/download/Win64OpenSSL-1_1_1w.exe) é exigido pelo libtorrent em ambientes Windows.
### <a name="install-python-39"></a> Instale Python 3.9 ### <a name="install-python-39"></a> Instale Python 3.9
Certifique-se de ter o Python 3.9 instalado em sua máquina. Você pode baixá-lo e instalá-lo em [python.org](https://www.python.org/downloads/release/python-3913/). Certifique-se de ter o Python 3.9 instalado em sua máquina. Você pode baixá-lo e instalá-lo em [python.org](https://www.python.org/downloads/release/python-3913/).

View File

@@ -36,6 +36,7 @@
"@electron-toolkit/utils": "^3.0.0", "@electron-toolkit/utils": "^3.0.0",
"@fontsource/noto-sans": "^5.1.0", "@fontsource/noto-sans": "^5.1.0",
"@hookform/resolvers": "^3.9.1", "@hookform/resolvers": "^3.9.1",
"@monaco-editor/react": "^4.6.0",
"@primer/octicons-react": "^19.9.0", "@primer/octicons-react": "^19.9.0",
"@radix-ui/react-dropdown-menu": "^2.1.2", "@radix-ui/react-dropdown-menu": "^2.1.2",
"@reduxjs/toolkit": "^2.2.3", "@reduxjs/toolkit": "^2.2.3",

View File

@@ -1,29 +1,29 @@
from http.server import BaseHTTPRequestHandler, HTTPServer from flask import Flask, request, jsonify
import json import sys, json, urllib.parse, psutil
import urllib.parse
import sys
import psutil
from torrent_downloader import TorrentDownloader from torrent_downloader import TorrentDownloader
from http_downloader import HttpDownloader from http_downloader import HttpDownloader
from profile_image_processor import ProfileImageProcessor from profile_image_processor import ProfileImageProcessor
import libtorrent as lt import libtorrent as lt
app = Flask(__name__)
# Retrieve command line arguments # Retrieve command line arguments
torrent_port = sys.argv[1] torrent_port = sys.argv[1]
http_port = int(sys.argv[2]) http_port = sys.argv[2]
rpc_password = sys.argv[3] rpc_password = sys.argv[3]
start_download_payload = sys.argv[4] start_download_payload = sys.argv[4]
start_seeding_payload = sys.argv[5] start_seeding_payload = sys.argv[5]
downloads = {} downloads = {}
# This can be streamed down from Node
downloading_game_id = -1 downloading_game_id = -1
torrent_session = lt.session({'listen_interfaces': f'0.0.0.0:{torrent_port}'}) torrent_session = lt.session({'listen_interfaces': '0.0.0.0:{port}'.format(port=torrent_port)})
if start_download_payload: if start_download_payload:
initial_download = json.loads(urllib.parse.unquote(start_download_payload)) initial_download = json.loads(urllib.parse.unquote(start_download_payload))
downloading_game_id = initial_download['game_id'] downloading_game_id = initial_download['game_id']
if initial_download['url'].startswith('magnet'): if initial_download['url'].startswith('magnet'):
torrent_downloader = TorrentDownloader(torrent_session) torrent_downloader = TorrentDownloader(torrent_session)
downloads[initial_download['game_id']] = torrent_downloader downloads[initial_download['game_id']] = torrent_downloader
@@ -49,142 +49,135 @@ if start_seeding_payload:
except Exception as e: except Exception as e:
print("Error starting seeding", e) print("Error starting seeding", e)
class RequestHandler(BaseHTTPRequestHandler): def validate_rpc_password():
def validate_rpc_password(self): """Middleware to validate RPC password."""
header_password = self.headers.get('x-hydra-rpc-password') header_password = request.headers.get('x-hydra-rpc-password')
if header_password != rpc_password: if header_password != rpc_password:
self.send_response(401) return jsonify({"error": "Unauthorized"}), 401
self.end_headers()
self.wfile.write(json.dumps({"error": "Unauthorized"}).encode('utf-8'))
return False
return True
def do_GET(self): @app.route("/status", methods=["GET"])
if self.path == "/status": def status():
if not self.validate_rpc_password(): auth_error = validate_rpc_password()
return if auth_error:
return auth_error
downloader = downloads.get(downloading_game_id) downloader = downloads.get(downloading_game_id)
if downloader: if downloader:
status = downloader.get_download_status() status = downloads.get(downloading_game_id).get_download_status()
self.send_response(200) return jsonify(status), 200
self.end_headers() else:
self.wfile.write(json.dumps(status).encode('utf-8')) return jsonify(None)
@app.route("/seed-status", methods=["GET"])
def seed_status():
auth_error = validate_rpc_password()
if auth_error:
return auth_error
seed_status = []
for game_id, downloader in downloads.items():
if not downloader:
continue
response = downloader.get_download_status()
if response is None:
continue
if response.get('status') == 5:
seed_status.append({
'gameId': game_id,
**response,
})
return jsonify(seed_status), 200
@app.route("/healthcheck", methods=["GET"])
def healthcheck():
return "", 200
@app.route("/process-list", methods=["GET"])
def process_list():
auth_error = validate_rpc_password()
if auth_error:
return auth_error
process_list = [proc.info for proc in psutil.process_iter(['exe', 'pid', 'name'])]
return jsonify(process_list), 200
@app.route("/profile-image", methods=["POST"])
def profile_image():
auth_error = validate_rpc_password()
if auth_error:
return auth_error
data = request.get_json()
image_path = data.get('image_path')
try:
processed_image_path, mime_type = ProfileImageProcessor.process_image(image_path)
return jsonify({'imagePath': processed_image_path, 'mimeType': mime_type}), 200
except Exception as e:
return jsonify({"error": str(e)}), 400
@app.route("/action", methods=["POST"])
def action():
global torrent_session
global downloading_game_id
auth_error = validate_rpc_password()
if auth_error:
return auth_error
data = request.get_json()
action = data.get('action')
game_id = data.get('game_id')
if action == 'start':
url = data.get('url')
existing_downloader = downloads.get(game_id)
if url.startswith('magnet'):
if existing_downloader and isinstance(existing_downloader, TorrentDownloader):
existing_downloader.start_download(url, data['save_path'], "")
else: else:
self.send_response(200) torrent_downloader = TorrentDownloader(torrent_session)
self.end_headers()
self.wfile.write(json.dumps(None).encode('utf-8'))
elif self.path == "/seed-status":
if not self.validate_rpc_password():
return
seed_status = []
for game_id, downloader in downloads.items():
if not downloader:
continue
response = downloader.get_download_status()
if response is None:
continue
if response.get('status') == 5:
seed_status.append({
'gameId': game_id,
**response,
})
self.send_response(200)
self.end_headers()
self.wfile.write(json.dumps(seed_status).encode('utf-8'))
elif self.path == "/healthcheck":
self.send_response(200)
self.end_headers()
elif self.path == "/process-list":
if not self.validate_rpc_password():
return
process_list = [proc.info for proc in psutil.process_iter(['exe', 'pid', 'name'])]
self.send_response(200)
self.end_headers()
self.wfile.write(json.dumps(process_list).encode('utf-8'))
def do_POST(self):
if not self.validate_rpc_password():
return
content_length = int(self.headers['Content-Length'])
post_data = self.rfile.read(content_length)
data = json.loads(post_data.decode('utf-8'))
if self.path == "/profile-image":
image_path = data.get('image_path')
try:
processed_image_path, mime_type = ProfileImageProcessor.process_image(image_path)
self.send_response(200)
self.end_headers()
self.wfile.write(json.dumps({'imagePath': processed_image_path, 'mimeType': mime_type}).encode('utf-8'))
except Exception as e:
self.send_response(400)
self.end_headers()
self.wfile.write(json.dumps({"error": str(e)}).encode('utf-8'))
elif self.path == "/action":
global downloading_game_id
action = data.get('action')
game_id = data.get('game_id')
if action == 'start':
url = data.get('url')
existing_downloader = downloads.get(game_id)
if url.startswith('magnet'):
if existing_downloader and isinstance(existing_downloader, TorrentDownloader):
existing_downloader.start_download(url, data['save_path'], "")
else:
torrent_downloader = TorrentDownloader(torrent_session)
downloads[game_id] = torrent_downloader
torrent_downloader.start_download(url, data['save_path'], "")
else:
if existing_downloader and isinstance(existing_downloader, HttpDownloader):
existing_downloader.start_download(url, data['save_path'], data.get('header'))
else:
http_downloader = HttpDownloader()
downloads[game_id] = http_downloader
http_downloader.start_download(url, data['save_path'], data.get('header'))
downloading_game_id = game_id
elif action == 'pause':
downloader = downloads.get(game_id)
if downloader:
downloader.pause_download()
downloading_game_id = -1
elif action == 'cancel':
downloader = downloads.get(game_id)
if downloader:
downloader.cancel_download()
elif action == 'resume_seeding':
torrent_downloader = TorrentDownloader(torrent_session, lt.torrent_flags.upload_mode)
downloads[game_id] = torrent_downloader downloads[game_id] = torrent_downloader
torrent_downloader.start_download(data['url'], data['save_path'], "") torrent_downloader.start_download(url, data['save_path'], "")
elif action == 'pause_seeding': else:
downloader = downloads.get(game_id) if existing_downloader and isinstance(existing_downloader, HttpDownloader):
if downloader: existing_downloader.start_download(url, data['save_path'], data.get('header'))
downloader.cancel_download()
else: else:
self.send_response(400) http_downloader = HttpDownloader()
self.end_headers() downloads[game_id] = http_downloader
self.wfile.write(json.dumps({"error": "Invalid action"}).encode('utf-8')) http_downloader.start_download(url, data['save_path'], data.get('header'))
return
downloading_game_id = game_id
self.send_response(200) elif action == 'pause':
self.end_headers() downloader = downloads.get(game_id)
if downloader:
downloader.pause_download()
downloading_game_id = -1
elif action == 'cancel':
downloader = downloads.get(game_id)
if downloader:
downloader.cancel_download()
elif action == 'resume_seeding':
torrent_downloader = TorrentDownloader(torrent_session, lt.torrent_flags.upload_mode)
downloads[game_id] = torrent_downloader
torrent_downloader.start_download(data['url'], data['save_path'], "")
elif action == 'pause_seeding':
downloader = downloads.get(game_id)
if downloader:
downloader.cancel_download()
else:
return jsonify({"error": "Invalid action"}), 400
return "", 200
if __name__ == "__main__": if __name__ == "__main__":
server = HTTPServer(('0.0.0.0', http_port), RequestHandler) app.run(host="0.0.0.0", port=int(http_port))
print(f"Server running on port {http_port}")
server.serve_forever()

View File

@@ -4,4 +4,5 @@ cx_Logging; sys_platform == 'win32'
pywin32; sys_platform == 'win32' pywin32; sys_platform == 'win32'
psutil psutil
Pillow Pillow
flask
aria2p aria2p

View File

@@ -49,14 +49,14 @@ fs.readdir(dist, async (err, files) => {
}) })
); );
for (const upload of uploads) { if (uploads.length > 0) {
await fetch(process.env.BUILD_WEBHOOK_URL, { await fetch(process.env.BUILD_WEBHOOK_URL, {
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
}, },
body: JSON.stringify({ body: JSON.stringify({
upload, uploads,
branchName: process.env.BRANCH_NAME, branchName: process.env.BRANCH_NAME,
version: packageJson.version, version: packageJson.version,
githubActor: process.env.GITHUB_ACTOR, githubActor: process.env.GITHUB_ACTOR,

View File

@@ -1,439 +1,417 @@
{ {
"language_name": "العربية", "language_name": "اَلْعَرَبِيَّةُ",
"app": { "app": {
"successfully_signed_in": "تم تسجيل الدخول بنجاح" "successfully_signed_in": "تم تسجيل الدخول بنجاح"
}, },
"home": { "home": {
"featured": ميز", "featured": ُتَمَيِّز",
"surprise_me": "مفاجئني", "surprise_me": "فَاجِئْنِي",
"no_results": م يتم العثور على نتائج", "no_results": َمْ يُعْثَرْ عَلَى نَتائِج",
"start_typing": "ابدأ الكتابة للبحث...", "start_typing": "اِبْدَأْ بِالْكِتَابَةِ لِلْبَحْثِ...",
"hot": "الأكثر شيوعًا الآن", "hot": "اَلْأَكْثَرُ شُيُوعًا الْآن",
"weekly": "📅 أفضل ألعاب الأسبوع", "weekly": "📅 أَفْضَلُ أَلْعَابِ الْأُسْبُوعِ",
"achievements": "🏆 ألعاب للتغلب عليها" "achievements": "🏆 أَلْعَابٌ لِلتَّغَلُّبِ عَلَيْهَا"
}, },
"sidebar": { "sidebar": {
"catalogue": "الكـتالوج", "catalogue": "الْفِهْرِسُ",
"downloads": "التنزيلات", "downloads": "التَّنْزِيلَاتُ",
"settings": "الإعدادات", "settings": "الإعْدَادَاتُ",
"my_library": كتبتي", "my_library": َكْتَبَتِي",
"downloading_metadata": "{{title}} (جارٍ تنزيل البيانات الوصفية...)", "downloading_metadata": "{{title}} (جَارٍ تَنْزِيلُ الْبَيَانَاتِ الْوَصْفِيَّةِ...)",
"paused": "{{title}} (معلّق)", "paused": "{{title}} (مُوْقَفٌ)",
"downloading": "{{title}} ({{percentage}} - جاري التنزيل...)", "downloading": "{{title}} ({{percentage}} - جَارٍ التَّنْزِيلُ...)",
"filter": صفية المكتبة", "filter": َصْفِيَةُ الْمَكْتَبَةِ",
"home": "الرئيسية", "home": "الرَّئِيسِيَّةُ",
"queued": "{{title}} (في قائمة الانتظار)", "queued": "{{title}} (فِي الْانْتِظَارِ)",
"game_has_no_executable": "اللعبة لا تحتوي على ملف تشغيل", "game_has_no_executable": "اللُّعْبَةُ لَيْسَ لَدَيْهَا مِلَفٌّ تَنْفِيذِيٌّ مُحَدَّدٌ",
"sign_in": سجيل الدخول", "sign_in": َسْجِيلُ الدُّخُولِ",
"friends": "الأصدقاء", "friends": "الْأَصْدِقَاءُ",
"need_help": "تحتاج مساعدة؟" "need_help": "هَلْ تَحْتَاجُ إِلَى مُسَاعَدَةٍ؟"
}, },
"header": { "header": {
"search": "ابحث عن الألعاب", "search": "بَحْثُ الْأَلْعَابِ",
"home": "الرئيسية", "home": "الرَّئِيسِيَّةُ",
"catalogue": "الكـتالوج", "catalogue": "الْفِهْرِسُ",
"downloads": "التنزيلات", "downloads": "التَّنْزِيلَاتُ",
"search_results": "نتائج البحث", "search_results": َتائِجُ الْبَحْثِ",
"settings": "الإعدادات", "settings": "الإعْدَادَاتُ",
"version_available_install": "الإصدار {{version}} متوفر. انقر هنا لإعادة التشغيل والتثبيت.", "version_available_install": "الْإِصْدَارُ {{version}} مَتَوَفِّرٌ. انْقُرْ هُنَا لِإِعَادَةِ التَّشْغِيلِ وَالتَّثْبِيتِ.",
"version_available_download": "الإصدار {{version}} متوفر. انقر هنا للتنزيل." "version_available_download": "الْإِصْدَارُ {{version}} مَتَوَفِّرٌ. انْقُرْ هُنَا لِلتَّنْزِيلِ."
}, },
"bottom_panel": { "bottom_panel": {
"no_downloads_in_progress": "لا توجد تنزيلات قيد التقدم", "no_downloads_in_progress": َا تَوْجَدُ تَنْزِيلَاتٌ جَارِيَةٌ",
"downloading_metadata": "جارٍ تنزيل البيانات الوصفية لـ {{title}}...", "downloading_metadata": َارٍ تَنْزِيلُ الْبَيَانَاتِ الْوَصْفِيَّةِ لِـ {{title}}...",
"downloading": "جارٍ تنزيل {{title}}... ({{percentage}} اكتمال) - الوقت المتبقي {{eta}} - السرعة {{speed}}", "downloading": َارٍ تَنْزِيلُ {{title}}... ({{percentage}} مَكْتُومٌ) - الِاكْتِمَالُ {{eta}} - {{speed}}",
"calculating_eta": "جارٍ تنزيل {{title}}... ({{percentage}} اكتمال) - جاري حساب الوقت المتبقي...", "calculating_eta": َارٍ تَنْزِيلُ {{title}}... ({{percentage}} مَكْتُومٌ) - جَارٍ حِسَابُ الْوَقْتِ الْمُتَبَقِّي...",
"checking_files": "جارٍ فحص ملفات {{title}}... ({{percentage}} اكتمال)" "checking_files": َارٍ التَّحَقُّقُ مِنْ مَلَفَّاتِ {{title}}... ({{percentage}} مَكْتُومٌ)"
}, },
"catalogue": { "catalogue": {
"search": صفية...", "search": َصْفِيَةٌ...",
"developers": "المطورون", "developers": "الْمُطَوِّرُونَ",
"genres": "الأنواع", "genres": "الْأَنْوَاعُ",
"tags": "العلامات", "tags": "الْعَلَامَاتُ",
"publishers": "الناشرون", "publishers": "النَّاشِرُونَ",
"download_sources": صادر التنزيل", "download_sources": َصَادِرُ التَّنْزِيلِ",
"result_count": "{{resultCount}} نتيجة", "result_count": "{{resultCount}} نَتائِجُ",
"filter_count": "{{filterCount}} متاح", "filter_count": "{{filterCount}} مَتَوَفِّرٌ",
"clear_filters": سح {{filterCount}} المحددة" "clear_filters": َسْحُ {{filterCount}} الْمُخْتَارَةِ"
}, },
"game_details": { "game_details": {
"open_download_options": تح خيارات التنزيل", "open_download_options": َتْحُ خِيَارَاتِ التَّنْزِيلِ",
"download_options_zero": "لا توجد خيارات تنزيل", "download_options_zero": َا تَوْجَدُ خِيَارَاتُ تَنْزِيلٍ",
"download_options_one": "خيار تنزيل واحد", "download_options_one": "{{count}} خِيَارُ تَنْزِيلٍ",
"download_options_other": "{{count}} خيارات تنزيل", "download_options_other": "{{count}} خِيَارَاتُ تَنْزِيلٍ",
"updated_at": م التحديث في {{updated_at}}", "updated_at": َمَّ التَّحْدِيثُ فِي {{updated_at}}",
"install": ثبيت", "install": َثْبِيتٌ",
"resume": "استئناف", "resume": "اسْتِئْنَافٌ",
"pause": "إيقاف مؤقت", "pause": ِيقَافٌ",
"cancel": لغاء", "cancel": ِلْغَاءٌ",
"remove": زالة", "remove": ِزَالَةٌ",
"space_left_on_disk": "{{space}} متبقي على القرص", "space_left_on_disk": "{{space}} مُتَبَقٍّ عَلَى الْقُرْصِ",
"eta": "الانتهاء {{eta}}", "eta": "الِاكْتِمَالُ {{eta}}",
"calculating_eta": "جارٍ حساب الوقت المتبقي...", "calculating_eta": َارٍ حِسَابُ الْوَقْتِ الْمُتَبَقِّي...",
"downloading_metadata": "جارٍ تنزيل البيانات الوصفية...", "downloading_metadata": َارٍ تَنْزِيلُ الْبَيَانَاتِ الْوَصْفِيَّةِ...",
"filter": صفية الحزم المعاد تعبئتها", "filter": َصْفِيَةُ الْإِصْدَارَاتِ الْمُعَادِ تَغْلِيفُهَا",
"requirements": تطلبات النظام", "requirements": ُتَطَلَّبَاتُ النِّظَامِ",
"minimum": "الحد الأدنى", "minimum": "الْأَدْنَى",
"recommended": "مُوصى به", "recommended": "الْمُوَصَّى بِهِ",
"paused": علّق", "paused": ُوْقَفٌ",
"release_date": اريخ الإصدار {{date}}", "release_date": َمَّ الْإِصْدَارُ فِي {{date}}",
"publisher": شر بواسطة {{publisher}}", "publisher": ُشِرَ بِوَاسِطَةِ {{publisher}}",
"hours": "ساعات", "hours": َاعَاتٌ",
"minutes": قائق", "minutes": َقَائِقُ",
"amount_hours": "{{amount}} ساعات", "amount_hours": "{{amount}} سَاعَاتٌ",
"amount_minutes": "{{amount}} دقائق", "amount_minutes": "{{amount}} دَقَائِقُ",
"accuracy": قة {{accuracy}}%", "accuracy": ِقَّةٌ {{accuracy}}%",
"add_to_library": ضافة إلى المكتبة", "add_to_library": ِضَافَةٌ إِلَى الْمَكْتَبَةِ",
"remove_from_library": زالة من المكتبة", "remove_from_library": ِزَالَةٌ مِنَ الْمَكْتَبَةِ",
"no_downloads": "لا توجد تنزيلات متاحة", "no_downloads": َا تَوْجَدُ تَنْزِيلَاتٌ مَتَوَفِّرَةٌ",
"play_time": عب لمدة {{amount}}", "play_time": ُعِبَ لِمُدَّةِ {{amount}}",
"last_time_played": "آخر تشغيل {{period}}", "last_time_played": "آخِرُ مَرَّةٍ لُعِبَتْ {{period}}",
"not_played_yet": م تلعب {{title}} بعد", "not_played_yet": َمْ تَلْعَبْ {{title}} بَعْدُ",
"next_suggestion": "الاقتراح التالي", "next_suggestion": "الِاقْتِرَاحُ التَّالِي",
"play": "تشغيل", "play": "لَعِبٌ",
"deleting": "جارٍ حذف المثبت...", "deleting": َارٍ حَذْفُ الْمُثَبِّتِ...",
"close": غلاق", "close": ِغْلَاقٌ",
"playing_now": "يتم التشغيل الآن", "playing_now": "جَارِي اللَّعِبُ الْآن",
"change": غيير", "change": َغْيِيرٌ",
"repacks_modal_description": "اختر الحزمة المعاد تعبئتها التي تريد تنزيلها", "repacks_modal_description": "اخْتَرِ الْإِصْدَارَ الْمُعَادَ تَغْلِيفُهُ الَّذِي تُرِيدُ تَنْزِيلَهُ",
"select_folder_hint": تغيير المجلد الافتراضي، انتقل إلى <0>الإعدادات</0>", "select_folder_hint": ِتَغْيِيرِ الْمَجَلَّدِ الافْتِرَاضِيِّ، اذْهَبْ إِلَى <0>الإعْدَادَاتِ</0>",
"download_now": نزيل الآن", "download_now": َنْزِيلٌ الْآن",
"no_shop_details": "تعذر الحصول على تفاصيل المتجر.", "no_shop_details": "لَمْ يَتَمَكَّنْ مِنْ اسْتِرْدَادِ تَفَاصِيلِ الْمَتْجَرِ.",
"download_options": يارات التنزيل", "download_options": ِيَارَاتُ التَّنْزِيلِ",
"download_path": سار التنزيل", "download_path": َسَارُ التَّنْزِيلِ",
"previous_screenshot": قطة الشاشة السابقة", "previous_screenshot": َقْطَةُ الشَّاشَةِ السَّابِقَةُ",
"next_screenshot": قطة الشاشة التالية", "next_screenshot": َقْطَةُ الشَّاشَةِ التَّالِيَةُ",
"screenshot": قطة الشاشة {{number}}", "screenshot": َقْطَةُ الشَّاشَةِ {{number}}",
"open_screenshot": تح لقطة الشاشة {{number}}", "open_screenshot": َتْحُ لَقْطَةِ الشَّاشَةِ {{number}}",
"download_settings": "إعدادات التنزيل", "download_settings": "إعْدَادَاتُ التَّنْزِيلِ",
"downloader": "أداة التنزيل", "downloader": "الْمُنَزِّلُ",
"select_executable": حديد", "select_executable": َحْدِيدٌ",
"no_executable_selected": م يتم تحديد ملف تشغيل", "no_executable_selected": َمْ يُحَدَّدْ مِلَفٌّ تَنْفِيذِيٌّ",
"open_folder": تح المجلد", "open_folder": َتْحُ الْمَجَلَّدِ",
"open_download_location": "عرض الملفات المحملة", "open_download_location": "مُشَاهَدَةُ الْمَلَفَّاتِ الْمُنَزَّلَةِ",
"create_shortcut": نشاء اختصار على سطح المكتب", "create_shortcut": ِنْشَاءُ طَرِيقٍ مُخْتَصَرٍ عَلَى سَطْحِ الْمَكْتَبِ",
"clear": سح", "clear": َسْحٌ",
"remove_files": زالة الملفات", "remove_files": ِزَالَةُ الْمَلَفَّاتِ",
"remove_from_library_title": "هل أنت متأكد؟", "remove_from_library_title": "هَلْ أَنْتَ مُتَأَكِّدٌ؟",
"remove_from_library_description": يؤدي هذا إلى إزالة {{game}} من مكتبتك", "remove_from_library_description": َيُؤَدِّي هَذَا إِلَى إِزَالَةِ {{game}} مِنْ مَكْتَبَتِكَ",
"options": يارات", "options": ِيَارَاتٌ",
"executable_section_title": "ملف التشغيل", "executable_section_title": "الْمِلَفُّ التَّنْفِيذِيُّ",
"executable_section_description": سار الملف الذي سيتم تشغيله عند النقر على \"تشغيل\"", "executable_section_description": َسَارُ الْمِلَفِّ الَّذِي سَيَتِمُّ تَنْفِيذُهُ عِنْدَ النَّقْرِ عَلَى \"لَعِبٌ\"",
"downloads_secion_title": "التنزيلات", "downloads_secion_title": "التَّنْزِيلَاتُ",
"downloads_section_description": حقق من التحديثات أو الإصدارات الأخرى لهذه اللعبة", "downloads_section_description": َحَقَّقْ مِنَ التَّحْدِيثَاتِ أَوِ الْإِصْدَارَاتِ الْأُخْرَى لِهَذِهِ اللُّعْبَةِ",
"danger_zone_section_title": نطقة الخطر", "danger_zone_section_title": ِنْطَقَةُ الْخَطَرِ",
"danger_zone_section_description": زالة هذه اللعبة من مكتبتك أو الملفات التي تم تنزيلها بواسطة Hydra", "danger_zone_section_description": ِزَالَةُ هَذِهِ اللُّعْبَةِ مِنْ مَكْتَبَتِكَ أَوِ الْمَلَفَّاتِ الْمُنَزَّلَةِ بِوَاسِطَةِ Hydra",
"download_in_progress": "تنزيل قيد التقدم", "download_in_progress": "جَارٍ التَّنْزِيلُ",
"download_paused": "التنزيل معلق", "download_paused": "التَّنْزِيلُ مُوْقَفٌ",
"last_downloaded_option": يار التنزيل الأخير", "last_downloaded_option": ِيَارُ التَّنْزِيلِ الْأَخِيرُ",
"create_shortcut_success": م إنشاء الاختصار بنجاح", "create_shortcut_success": َمَّ إِنْشَاءُ الطَّرِيقِ الْمُخْتَصَرِ بِنَجَاحٍ",
"create_shortcut_error": طأ في إنشاء الاختصار", "create_shortcut_error": َطَأٌ فِي إِنْشَاءِ الطَّرِيقِ الْمُخْتَصَرِ",
"nsfw_content_title": "هذه اللعبة تحتوي على محتوى غير لائق", "nsfw_content_title": "هَذِهِ اللُّعْبَةُ تَحْتَوِي عَلَى مُحْتَوًى غَيْرِ لَائِقٍ",
"nsfw_content_description": "{{title}} يحتوي على محتوى قد لا يناسب جميع الأعمار. هل تريد المتابعة؟", "nsfw_content_description": "{{title}} تَحْتَوِي عَلَى مُحْتَوًى قَدْ لَا يَكُونُ مُنَاسِبًا لِجَمِيعِ الْأَعْمَارِ. هَلْ أَنْتَ مُتَأَكِّدٌ مِنْ أَنَّكَ تُرِيدُ الْمُتَابَعَةَ؟",
"allow_nsfw_content": "متابعة", "allow_nsfw_content": "الْمُتَابَعَةُ",
"refuse_nsfw_content": "رجوع", "refuse_nsfw_content": "الرُّجُوعُ",
"stats": "الإحصائيات", "stats": "الإحْصَائِيَّاتُ",
"download_count": "مرات التنزيل", "download_count": "التَّنْزِيلَاتُ",
"player_count": "اللاعبون النشطون", "player_count": "اللَّاعِبُونَ النَّشِطُونَ",
"download_error": "خيار التنزيل هذا غير متاح", "download_error": "هَذَا خِيَارُ التَّنْزِيلِ غَيْرُ مَتَوَفِّرٍ",
"download": نزيل", "download": َنْزِيلٌ",
"executable_path_in_use": "مسار التشغيل مستخدم بالفعل بواسطة \"{{game}}\"", "executable_path_in_use": "الْمِلَفُّ التَّنْفِيذِيُّ مُسْتَخْدَمٌ بِوَاسِطَةِ \"{{game}}\"",
"warning": حذير:", "warning": َنْبِيهٌ:",
"hydra_needs_to_remain_open": هذا التنزيل، يجب أن يبقى Hydra مفتوحًا حتى اكتماله. إذا أغلق Hydra قبل الاكتمال، ستفقد تقدمك.", "hydra_needs_to_remain_open": ِهَذَا التَّنْزِيلِ، يَجِبُ أَنْ يَبْقَى Hydra مَفْتُوحًا حَتَّى يَتِمَّ الِاكْتِمَالُ. إِذَا أُغْلِقَ Hydra قَبْلَ الِاكْتِمَالِ، سَتَفْقِدُ تَقَدُّمَكَ.",
"achievements": "الإنجازات", "achievements": "الإِنْجَازَاتُ",
"achievements_count": "الإنجازات {{unlockedCount}}/{{achievementsCount}}", "achievements_count": "الإِنْجَازَاتُ {{unlockedCount}}/{{achievementsCount}}",
"cloud_save": فظ سحابي", "cloud_save": ِفْظٌ سَحَابِيٌّ",
"cloud_save_description": "احفظ تقدمك على السحابة واستمر في اللعب من أي جهاز", "cloud_save_description": "احْفَظْ تَقَدُّمَكَ فِي السَّحَابَةِ وَاسْتَمِرَّ فِي اللَّعِبِ عَلَى أَيِّ جِهَازٍ",
"backups": "النسخ الاحتياطية", "backups": "الْنُسَخُ الِاحْتِيَاطِيَّةُ",
"install_backup": ثبيت", "install_backup": َثْبِيتٌ",
"delete_backup": ذف", "delete_backup": َذْفٌ",
"create_backup": سخة احتياطية جديدة", "create_backup": ُسْخَةٌ احْتِيَاطِيَّةٌ جَدِيدَةٌ",
"last_backup_date": "آخر نسخة احتياطية في {{date}}", "last_backup_date": "آخِرُ نُسْخَةٍ احْتِيَاطِيَّةٍ فِي {{date}}",
"no_backup_preview": م يتم العثور على حفظات لهذا العنوان", "no_backup_preview": َمْ يُعْثَرْ عَلَى أَيِّ أَلْعَابٍ مَحْفُوظَةٍ لِهَذَا الْعُنْوَانِ",
"restoring_backup": "جارٍ استعادة النسخة الاحتياطية ({{progress}} اكتمال)...", "restoring_backup": َارٍ اسْتِعَادَةُ النُّسْخَةِ الِاحْتِيَاطِيَّةِ ({{progress}} مَكْتُومٌ)...",
"uploading_backup": "جارٍ رفع النسخة الاحتياطية...", "uploading_backup": َارٍ رَفْعُ النُّسْخَةِ الِاحْتِيَاطِيَّةِ...",
"no_backups": م تقم بإنشاء أي نسخ احتياطية لهذه اللعبة بعد", "no_backups": َمْ تَقُمْ بِإِنْشَاءِ أَيِّ نُسَخٍ احْتِيَاطِيَّةٍ لِهَذِهِ اللُّعْبَةِ بَعْدُ",
"backup_uploaded": م رفع النسخة الاحتياطية", "backup_uploaded": َمَّ رَفْعُ النُّسْخَةِ الِاحْتِيَاطِيَّةِ",
"backup_deleted": م حذف النسخة الاحتياطية", "backup_deleted": َمَّ حَذْفُ النُّسْخَةِ الِاحْتِيَاطِيَّةِ",
"backup_restored": م استعادة النسخة الاحتياطية", "backup_restored": َمَّ اسْتِعَادَةُ النُّسْخَةِ الِاحْتِيَاطِيَّةِ",
"see_all_achievements": رض جميع الإنجازات", "see_all_achievements": َرْضُ جَمِيعِ الإِنْجَازَاتِ",
"sign_in_to_see_achievements": جل الدخول لعرض الإنجازات", "sign_in_to_see_achievements": َجِّلِ الدُّخُولَ لِعَرْضِ الإِنْجَازَاتِ",
"mapping_method_automatic": "تلقائي", "mapping_method_automatic": "آلِيٌّ",
"mapping_method_manual": دوي", "mapping_method_manual": َدَوِيٌّ",
"mapping_method_label": ريقة التعيين", "mapping_method_label": َرِيقَةُ التَّحْدِيدِ",
"files_automatically_mapped": م تعيين الملفات تلقائيًا", "files_automatically_mapped": َمَّ تَحْدِيدُ الْمَلَفَّاتِ تِلْقَائِيًّا",
"no_backups_created": م يتم إنشاء نسخ احتياطية لهذه اللعبة", "no_backups_created": َمْ تُنْشَأْ أَيُّ نُسَخٍ احْتِيَاطِيَّةٍ لِهَذِهِ اللُّعْبَةِ",
"manage_files": دارة الملفات", "manage_files": ِدَارَةُ الْمَلَفَّاتِ",
"loading_save_preview": "جارٍ البحث عن حفظات الألعاب...", "loading_save_preview": َارٍ الْبَحْثُ عَنْ أَلْعَابٍ مَحْفُوظَةٍ...",
"wine_prefix": "بادئة Wine", "wine_prefix": َادِئَةُ Wine",
"wine_prefix_description": "بادئة Wine المستخدمة لتشغيل هذه اللعبة", "wine_prefix_description": َادِئَةُ Wine الْمُسْتَخْدَمَةُ لِتَشْغِيلِ هَذِهِ اللُّعْبَةِ",
"launch_options": يارات التشغيل", "launch_options": ِيَارَاتُ الْإِطْلَاقِ",
"launch_options_description": مكن للمستخدمين المتقدمين إدخال تعديلات على خيارات التشغيل (ميزة تجريبية)", "launch_options_description": ُمْكِنُ لِلْمُسْتَخْدِمِينَ الْمُتَقَدِّمِينَ إِدْخَالُ تَعْدِيلَاتٍ عَلَى خِيَارَاتِ الْإِطْلَاقِ",
"launch_options_placeholder": م يتم تحديد أي معاملات", "launch_options_placeholder": َمْ يُحَدَّدْ أَيُّ مُعَامِلٍ",
"no_download_option_info": "لا توجد معلومات متاحة", "no_download_option_info": َا تَوْجَدُ مَعْلُومَاتٌ مَتَوَفِّرَةٌ",
"backup_deletion_failed": شل حذف النسخة الاحتياطية", "backup_deletion_failed": َشَلَ فِي حَذْفِ النُّسْخَةِ الِاحْتِيَاطِيَّةِ",
"max_number_of_artifacts_reached": م الوصول إلى الحد الأقصى لعدد النسخ الاحتياطية لهذه اللعبة", "max_number_of_artifacts_reached": َمَّ بَلُوغُ الْعَدَدِ الْأَقْصَى لِلنُّسَخِ الِاحْتِيَاطِيَّةِ لِهَذِهِ اللُّعْبَةِ",
"achievements_not_sync": عرف على كيفية مزامنة إنجازاتك", "achievements_not_sync": َعَرَّفْ عَلَى كَيْفِيَّةِ مَزْجِ إِنْجَازَاتِكَ",
"manage_files_description": دارة الملفات التي سيتم نسخها احتياطيًا واستعادتها", "manage_files_description": ِدَارَةُ الْمَلَفَّاتِ الَّتِي سَيَتِمُّ نَسْخُهَا احْتِيَاطِيًّا وَاسْتِعَادَتُهَا",
"select_folder": "حدد المجلد", "select_folder": "تَحْدِيدُ الْمَجَلَّدِ",
"backup_from": سخة احتياطية من {{date}}", "backup_from": ُسْخَةٌ احْتِيَاطِيَّةٌ مِنْ {{date}}",
"custom_backup_location_set": م تعيين موقع نسخ احتياطي مخصص", "custom_backup_location_set": َمَّ تَحْدِيدُ مَوْقِعِ النُّسْخَةِ الِاحْتِيَاطِيَّةِ الْمُخَصَّصِ",
"no_directory_selected": م يتم تحديد مجلد", "no_directory_selected": َمْ يُحَدَّدْ أَيُّ دَلِيلٍ"
"no_write_permission": "لا يمكن التنزيل إلى هذا المجلد. انقر هنا لمعرفة المزيد.",
"reset_achievements": "إعادة تعيين الإنجازات",
"reset_achievements_description": "سيؤدي هذا إلى إعادة تعيين جميع إنجازات {{game}}",
"reset_achievements_title": "هل أنت متأكد؟",
"reset_achievements_success": "تم إعادة تعيين الإنجازات بنجاح",
"reset_achievements_error": "فشل إعادة تعيين الإنجازات"
}, },
"activation": { "activation": {
"title": فعيل Hydra", "title": َفْعِيلُ Hydra",
"installation_id": عرف التثبيت:", "installation_id": ُعَرِّفُ التَّثْبِيتِ:",
"enter_activation_code": دخل رمز التفعيل الخاص بك", "enter_activation_code": َدْخِلْ رَمْزَ التَّفْعِيلِ",
"message": ذا كنت لا تعرف أين تطلب هذا، فلا يجب أن يكون لديك هذا.", "message": ِذَا كُنْتَ لَا تَعْرِفُ أَيْنَ تَطْلُبُ هَذَا، فَلا يَجِبُ أَنْ تَكُونَ لَدَيْكَ.",
"activate": فعيل", "activate": َفْعِيلٌ",
"loading": "جارٍ التحميل..." "loading": َارٍ التَّحْمِيلُ..."
}, },
"downloads": { "downloads": {
"resume": "استئناف", "resume": "اسْتِئْنَافٌ",
"pause": "إيقاف مؤقت", "pause": ِيقَافٌ",
"eta": "الانتهاء {{eta}}", "eta": "الِاكْتِمَالُ {{eta}}",
"paused": علّق", "paused": ُوْقَفٌ",
"verifying": "جارٍ التحقق...", "verifying": َارٍ التَّحَقُّقُ...",
"completed": كتمل", "completed": َكْتُومٌ",
"removed": "غير محمل", "removed": "لَمْ يُنَزَّلْ",
"cancel": لغاء", "cancel": ِلْغَاءٌ",
"filter": صفية الألعاب المحملة", "filter": َصْفِيَةُ الْأَلْعَابِ الْمُنَزَّلَةِ",
"remove": زالة", "remove": ِزَالَةٌ",
"downloading_metadata": "جارٍ تنزيل البيانات الوصفية...", "downloading_metadata": َارٍ تَنْزِيلُ الْبَيَانَاتِ الْوَصْفِيَّةِ...",
"deleting": "جارٍ حذف المثبت...", "deleting": َارٍ حَذْفُ الْمُثَبِّتِ...",
"delete": "إزالة المثبت", "delete": "حَذْفُ الْمُثَبِّتِ",
"delete_modal_title": "هل أنت متأكد؟", "delete_modal_title": "هَلْ أَنْتَ مُتَأَكِّدٌ؟",
"delete_modal_description": يؤدي هذا إلى إزالة جميع ملفات التثبيت من جهازك", "delete_modal_description": َيُؤَدِّي هَذَا إِلَى إِزَالَةِ جَمِيعِ مَلَفَّاتِ التَّثْبِيتِ مِنْ حَاسُوبِكَ",
"install": ثبيت", "install": َثْبِيتٌ",
"download_in_progress": "قيد التقدم", "download_in_progress": "جَارٍ التَّنْفِيذُ",
"queued_downloads": "التنزيلات في قائمة الانتظار", "queued_downloads": "التَّنْزِيلَاتُ فِي الْانْتِظَارِ",
"downloads_completed": كتمل", "downloads_completed": َكْتُومٌ",
"queued": "في قائمة الانتظار", "queued": ِي الْانْتِظَارِ",
"no_downloads_title": ارغ جدًا", "no_downloads_title": َرَاغٌ تَامٌ",
"no_downloads_description": م تقم بتنزيل أي شيء باستخدام Hydra بعد، ولكن لم يفت الأوان للبدء.", "no_downloads_description": َمْ تَقُمْ بِتَنْزِيلِ أَيِّ شَيْءٍ بِاسْتِخْدَامِ Hydra بَعْدُ، لَكِنَّهُ لَيْسَ مُتَأَخِّرًا لِلْبَدْءِ.",
"checking_files": "جارٍ فحص الملفات...", "checking_files": َارٍ التَّحَقُّقُ مِنَ الْمَلَفَّاتِ...",
"seeding": "التوزيع", "seeding": "الْبَذْرُ",
"stop_seeding": "إيقاف التوزيع", "stop_seeding": ِيقَافُ الْبَذْرِ",
"resume_seeding": "استئناف التوزيع", "resume_seeding": "اسْتِئْنَافُ الْبَذْرِ",
"options": دارة" "options": ِدَارَةٌ"
}, },
"settings": { "settings": {
"downloads_path": سار التنزيلات", "downloads_path": َسَارُ التَّنْزِيلَاتِ",
"change": حديث", "change": َحْدِيثٌ",
"notifications": "الإشعارات", "notifications": "الإِشْعَارَاتُ",
"enable_download_notifications": ند اكتمال التنزيل", "enable_download_notifications": ِنْدَ اكْتِمَالِ التَّنْزِيلِ",
"enable_repack_list_notifications": ند إضافة حزمة معاد تعبئتها جديدة", "enable_repack_list_notifications": ِنْدَ إِضَافَةِ إِصْدَارٍ مُعَادٍ تَغْلِيفِهِ جَدِيدٍ",
"real_debrid_api_token_label": مز واجهة برمجة تطبيقات Real-Debrid", "real_debrid_api_token_label": َمْزُ واجهة برمجة التطبيقات Real-Debrid",
"quit_app_instead_hiding": "لا تخفي Hydra عند الإغلاق", "quit_app_instead_hiding": "لا تُخْفِ Hydra عِنْدَ الإِغْلَاقِ",
"launch_with_system": شغيل Hydra مع بدء النظام", "launch_with_system": َشْغِيلُ Hydra عِنْدَ بَدْءِ النِّظَامِ",
"general": "عام", "general": َامٌ",
"behavior": "السلوك", "behavior": "سُلُوكٌ",
"download_sources": صادر التنزيل", "download_sources": َصَادِرُ التَّنْزِيلِ",
"language": "اللغة", "language": "اللُّغَةُ",
"real_debrid_api_token": مز API", "real_debrid_api_token": َمْزُ واجهة برمجة التطبيقات",
"enable_real_debrid": فعيل Real-Debrid", "enable_real_debrid": َمْكِينُ Real-Debrid",
"real_debrid_description": "Real-Debrid هو أداة تنزيل غير مقيدة تتيح لك تنزيل الملفات بسرعة، مقيدة فقط بسرعة الإنترنت لديك.", "real_debrid_description": "Real-Debrid هُوَ مُنَزِّلٌ غَيْرُ مَقْيُودٍ يَتِيحُ لَكَ تَنْزِيلَ الْمَلَفَّاتِ بِسُرْعَةٍ، مَحْدُودٌ فَقَطْ بِسُرْعَةِ الْإِنْتَرْنِتِ لَدَيْكَ.",
"real_debrid_invalid_token": مز API غير صالح", "real_debrid_invalid_token": َمْزُ واجهة برمجة التطبيقات غَيْرُ صَالِحٍ",
"real_debrid_api_token_hint": مكنك الحصول على رمز API الخاص بك <0>هنا</0>", "real_debrid_api_token_hint": ُمْكِنُكَ الْحُصُولُ عَلَى رَمْزِ واجهة برمجة التطبيقات <0>هُنَا</0>",
"real_debrid_free_account_error": "الحساب \"{{username}}\" هو حساب مجاني. يرجى الاشتراك في Real-Debrid", "real_debrid_free_account_error": "الْحِسَابُ \"{{username}}\" هُوَ حِسَابٌ مَجَّانِيٌّ. يَرْجَى الِاشْتِرَاكُ فِي Real-Debrid",
"real_debrid_linked_message": م ربط الحساب \"{{username}}\"", "real_debrid_linked_message": َمَّ رَبْطُ الْحِسَابِ \"{{username}}\"",
"save_changes": فظ التغييرات", "save_changes": ِفْظُ التَّغْيِيرَاتِ",
"changes_saved": م حفظ التغييرات بنجاح", "changes_saved": َمَّ حِفْظُ التَّغْيِيرَاتِ بِنَجَاحٍ",
"download_sources_description": يقوم Hydra بجلب روابط التنزيل من هذه المصادر. يجب أن يكون عنوان URL المصدر رابطًا مباشرًا لملف .json يحتوي على روابط التنزيل.", "download_sources_description": َتَقُومُ Hydra بِجَلْبِ رَوَابِطِ التَّنْزِيلِ مِنْ هَذِهِ الْمَصَادِرِ. يَجِبُ أَنْ يَكُونَ عُنْوَانُ URL لِلْمَصْدَرِ رَابِطًا مُبَاشِرًا إِلَى مِلَفٍّ .json يَحْتَوِي عَلَى رَوَابِطِ التَّنْزِيلِ.",
"validate_download_source": حقق", "validate_download_source": َصْدِيقٌ",
"remove_download_source": زالة", "remove_download_source": ِزَالَةٌ",
"add_download_source": ضافة مصدر", "add_download_source": ِضَافَةُ مَصْدَرٍ",
"download_count_zero": "لا توجد خيارات تنزيل", "download_count_zero": َا تَوْجَدُ خِيَارَاتُ تَنْزِيلٍ",
"download_count_one": "{{countFormatted}} خيار تنزيل", "download_count_one": "{{countFormatted}} خِيَارُ تَنْزِيلٍ",
"download_count_other": "{{countFormatted}} خيارات تنزيل", "download_count_other": "{{countFormatted}} خِيَارَاتُ تَنْزِيلٍ",
"download_source_url": نوان URL لمصدر التنزيل", "download_source_url": ُنْوَانُ مَصْدَرِ التَّنْزِيلِ",
"add_download_source_description": دخل عنوان URL لملف .json", "add_download_source_description": َدْخِلْ عُنْوَانَ URL لِمِلَفٍّ .json",
"download_source_up_to_date": حدث", "download_source_up_to_date": ُحَدَّثٌ",
"download_source_errored": طأ", "download_source_errored": َطَأٌ",
"sync_download_sources": زامنة المصادر", "sync_download_sources": َزْجُ الْمَصَادِرِ",
"removed_download_source": مت إزالة مصدر التنزيل", "removed_download_source": َمَّ إِزَالَةُ مَصْدَرِ التَّنْزِيلِ",
"added_download_source": مت إضافة مصدر التنزيل", "added_download_source": َمَّتْ إِضَافَةُ مَصْدَرِ التَّنْزِيلِ",
"download_sources_synced": مت مزامنة جميع مصادر التنزيل", "download_sources_synced": َمَّ مَزْجُ جَمِيعِ مَصَادِرِ التَّنْزِيلِ",
"insert_valid_json_url": دخل عنوان JSON صالح", "insert_valid_json_url": َدْخِلْ عُنْوَانَ JSON صَالِحًا",
"found_download_option_zero": م يتم العثور على خيارات تنزيل", "found_download_option_zero": َمْ يُعْثَرْ عَلَى خِيَارِ تَنْزِيلٍ",
"found_download_option_one": "تم العثور على {{countFormatted}} خيار تنزيل", "found_download_option_one": "عُثِرَ عَلَى {{countFormatted}} خِيَارِ تَنْزِيلٍ",
"found_download_option_other": "تم العثور على {{countFormatted}} خيارات تنزيل", "found_download_option_other": "عُثِرَ عَلَى {{countFormatted}} خِيَارَاتِ تَنْزِيلٍ",
"import": "استيراد", "import": "اسْتِيرَادٌ",
"public": "عام", "public": َامٌ",
"private": "خاص", "private": َاصٌ",
"friends_only": "الأصدقاء فقط", "friends_only": "الْأَصْدِقَاءُ فَقَطْ",
"privacy": "الخصوصية", "privacy": "الْخُصُوصِيَّةُ",
"profile_visibility": ؤية الملف الشخصي", "profile_visibility": ُؤْيَةُ الْمَلَفِّ الشَّخْصِيِّ",
"profile_visibility_description": "اختر من يمكنه رؤية ملفك الشخصي ومكتبتك", "profile_visibility_description": "اخْتَرْ مَنْ يُمْكِنُهُ رُؤْيَةُ مَلَفِّكَ الشَّخْصِيِّ وَمَكْتَبَتِكَ",
"required_field": "هذا الحقل مطلوب", "required_field": "هَذَا الْحَقْلُ مَطْلُوبٌ",
"source_already_exists": مت إضافة هذا المصدر مسبقًا", "source_already_exists": َمَّتْ إِضَافَةُ هَذَا الْمَصْدَرِ مِنْ قَبْلُ",
"must_be_valid_url": جب أن يكون المصدر عنوان URL صالحًا", "must_be_valid_url": َجِبُ أَنْ يَكُونَ الْمَصْدَرُ عُنْوَانَ URL صَالِحًا",
"blocked_users": "المستخدمون المحظورون", "blocked_users": "الْمُسْتَخْدِمُونَ الْمَحْظُورُونَ",
"user_unblocked": م إلغاء حظر المستخدم", "user_unblocked": َمَّ إِزَالَةُ حَظْرِ الْمُسْتَخْدِمِ",
"enable_achievement_notifications": ند فتح إنجاز", "enable_achievement_notifications": ِنْدَ فَتْحِ إِنْجَازٍ",
"launch_minimized": شغيل Hydra مصغرًا", "launch_minimized": َشْغِيلُ Hydra مُصَغَّرًا",
"disable_nsfw_alert": عطيل تنبيه المحتوى غير اللائق", "disable_nsfw_alert": َعْطِيلُ تَنْبِيهِ الْمُحْتَوَى غَيْرِ اللَّائِقِ",
"seed_after_download_complete": "التوزيع بعد اكتمال التنزيل", "seed_after_download_complete": "الْبَذْرُ بَعْدَ اكْتِمَالِ التَّنْزِيلِ",
"show_hidden_achievement_description": "عرض وصف الإنجازات المخفية قبل فتحها", "show_hidden_achievement_description": "إِظْهَارُ وَصْفِ الإِنْجَازَاتِ الْمَخْفِيَّةِ قَبْلَ فَتْحِهَا"
"account": "الحساب",
"no_users_blocked": "لا يوجد مستخدمون محظورون",
"subscription_active_until": "اشتراك Hydra Cloud نشط حتى {{date}}",
"manage_subscription": "إدارة الاشتراك",
"update_email": "تحديث البريد الإلكتروني",
"update_password": "تحديث كلمة المرور",
"current_email": "البريد الإلكتروني الحالي:",
"no_email_account": "لم تقم بتعيين بريد إلكتروني بعد",
"account_data_updated_successfully": "تم تحديث بيانات الحساب بنجاح",
"renew_subscription": "تجديد اشتراك Hydra Cloud",
"subscription_expired_at": "انتهى اشتراكك في {{date}}",
"no_subscription": "استمتع بـ Hydra بأفضل طريقة ممكنة",
"become_subscriber": "كن مشتركًا في Hydra Cloud",
"subscription_renew_cancelled": "تم تعطيل التجديد التلقائي",
"subscription_renews_on": "سيتم تجديد اشتراكك في {{date}}",
"bill_sent_until": "سيتم إرسال فاتورتك التالية حتى هذا اليوم"
}, },
"notifications": { "notifications": {
"download_complete": "اكتمل التنزيل", "download_complete": "اكْتِمَالُ التَّنْزِيلِ",
"game_ready_to_install": "{{title}} جاهز للتثبيت", "game_ready_to_install": "{{title}} جَاهِزٌ لِلتَّثْبِيتِ",
"repack_list_updated": م تحديث قائمة الحزم المعاد تعبئتها", "repack_list_updated": َمَّ تَحْدِيثُ قَائِمَةِ الإِصْدَارَاتِ الْمُعَادَةِ تَغْلِيفُهَا",
"repack_count_one": "تمت إضافة {{count}} حزمة معاد تعبئتها", "repack_count_one": "{{count}} إِصْدَارٌ مُعَادٌ تَغْلِيفُهُ أُضِيفَ",
"repack_count_other": "تمت إضافة {{count}} حزم معاد تعبئتها", "repack_count_other": "{{count}} إِصْدَارَاتٌ مُعَادَةٌ تَغْلِيفُهَا أُضِيفَتْ",
"new_update_available": "الإصدار {{version}} متوفر", "new_update_available": "الْإِصْدَارُ {{version}} مَتَوَفِّرٌ",
"restart_to_install_update": عد تشغيل Hydra لتثبيت التحديث", "restart_to_install_update": َعِدْ تَشْغِيلَ Hydra لِتَثْبِيتِ التَّحْدِيثِ",
"notification_achievement_unlocked_title": م فتح إنجاز لـ {{game}}", "notification_achievement_unlocked_title": َمَّ فَتْحُ إِنْجَازٍ لِـ {{game}}",
"notification_achievement_unlocked_body": "{{achievement}} و {{count}} آخرين تم فتحهم" "notification_achievement_unlocked_body": "{{achievement}} وَ{{count}} أُخْرَى تَمَّ فَتْحُهَا"
}, },
"system_tray": { "system_tray": {
"open": تح Hydra", "open": َتْحُ Hydra",
"quit": "خروج" "quit": "الْخُرُوجُ"
}, },
"game_card": { "game_card": {
"no_downloads": "لا توجد تنزيلات متاحة" "no_downloads": َا تَوْجَدُ تَنْزِيلَاتٌ مَتَوَفِّرَةٌ"
}, },
"binary_not_found_modal": { "binary_not_found_modal": {
"title": "البرامج غير مثبتة", "title": "الْبَرَامِجُ غَيْرُ مُثَبَّتَةٍ",
"description": م يتم العثور على ملفات تشغيل Wine أو Lutris على نظامك", "description": َمْ يُعْثَرْ عَلَى مَلَفَّاتٍ تَنْفِيذِيَّةٍ لِـ Wine أَوْ Lutris عَلَى نِظَامِكَ",
"instructions": حقق من الطريقة الصحيحة لتثبيت أي منها على توزيعة لينكس الخاصة بك حتى تعمل اللعبة بشكل طبيعي" "instructions": َحَقَّقْ مِنَ الطَّرِيقَةِ الصَّحِيحَةِ لِتَثْبِيتِ أَيٍّ مِنْهُمَا عَلَى تَوْزِيعَةِ Linux لَدَيْكَ لِتَعْمَلَ اللُّعْبَةُ بِشَكْلٍ طَبِيعِيٍّ"
}, },
"modal": { "modal": {
"close": ر الإغلاق" "close": ِرُّ الإِغْلَاقِ"
}, },
"forms": { "forms": {
"toggle_password_visibility": بديل رؤية كلمة المرور" "toggle_password_visibility": َبْدِيلُ رُؤْيَةِ كَلِمَةِ الْمَرُورِ"
}, },
"user_profile": { "user_profile": {
"amount_hours": "{{amount}} ساعات", "amount_hours": "{{amount}} سَاعَاتٌ",
"amount_minutes": "{{amount}} دقائق", "amount_minutes": "{{amount}} دَقَائِقُ",
"last_time_played": "آخر تشغيل {{period}}", "last_time_played": "آخِرُ مَرَّةٍ لُعِبَتْ {{period}}",
"activity": "النشاط الأخير", "activity": "النَّشَاطُ الْأَخِيرُ",
"library": "المكتبة", "library": "الْمَكْتَبَةُ",
"total_play_time": جمالي وقت اللعب", "total_play_time": ِجْمَالِيُّ وَقْتِ اللَّعِبِ",
"no_recent_activity_title": "همم... لا شيء هنا", "no_recent_activity_title": "هَمَمْ... لَا شَيْءَ هُنَا",
"no_recent_activity_description": م تلعب أي ألعاب مؤخرًا. حان الوقت لتغيير ذلك!", "no_recent_activity_description": َمْ تَلْعَبْ أَيَّ أَلْعَابٍ مُؤَخَّرًا. حَانَ الْوَقْتُ لِتَغْيِيرِ ذَلِكَ!",
"display_name": "اسم العرض", "display_name": "اسْمُ الْعَرْضِ",
"saving": "جارٍ الحفظ", "saving": َارٍ الْحِفْظُ",
"save": فظ", "save": ِفْظٌ",
"edit_profile": عديل الملف الشخصي", "edit_profile": َحْرِيرُ الْمَلَفِّ الشَّخْصِيِّ",
"saved_successfully": م الحفظ بنجاح", "saved_successfully": َمَّ الْحِفْظُ بِنَجَاحٍ",
"try_again": "يرجى المحاولة مرة أخرى", "try_again": "الرَّجَاءُ الْمُحَاوَلَةُ مَرَّةً أُخْرَى",
"sign_out_modal_title": "هل أنت متأكد؟", "sign_out_modal_title": "هَلْ أَنْتَ مُتَأَكِّدٌ؟",
"cancel": لغاء", "cancel": ِلْغَاءٌ",
"successfully_signed_out": م تسجيل الخروج بنجاح", "successfully_signed_out": َمَّ تَسْجِيلُ الْخُرُوجِ بِنَجَاحٍ",
"sign_out": سجيل الخروج", "sign_out": َسْجِيلُ الْخُرُوجِ",
"playing_for": "يلعب لمدة {{amount}}", "playing_for": "جَارِي اللَّعِبُ لِمُدَّةِ {{amount}}",
"sign_out_modal_text": كتبتك مرتبطة بحسابك الحالي. عند تسجيل الخروج، لن تكون مكتبتك مرئية بعد الآن، ولن يتم حفظ أي تقدم. هل تتابع تسجيل الخروج؟", "sign_out_modal_text": َكْتَبَتُكَ مُرْتَبِطَةٌ بِحِسَابِكَ الْحَالِيِّ. عِنْدَ تَسْجِيلِ الْخُرُوجِ، لَنْ تَكُونَ مَكْتَبَتُكَ مَرْئِيَّةً بَعْدَ الْآنِ، وَلَنْ يَتِمَّ حِفْظُ أَيِّ تَقَدُّمٍ. هَلْ تُرِيدُ الْمُتَابَعَةَ مَعَ تَسْجِيلِ الْخُرُوجِ؟",
"add_friends": ضافة أصدقاء", "add_friends": ِضَافَةُ الْأَصْدِقَاءِ",
"add": ضافة", "add": ِضَافَةٌ",
"friend_code": مز الصديق", "friend_code": َمْزُ الصَّدِيقِ",
"see_profile": "عرض الملف الشخصي", "see_profile": "رُؤْيَةُ الْمَلَفِّ الشَّخْصِيِّ",
"sending": "جارٍ الإرسال", "sending": َارٍ الْإِرْسَالُ",
"friend_request_sent": م إرسال طلب الصداقة", "friend_request_sent": َمَّ إِرْسَالُ طَلَبِ الصَّدَاقَةِ",
"friends": "الأصدقاء", "friends": "الْأَصْدِقَاءُ",
"friends_list": "قائمة الأصدقاء", "friends_list": َائِمَةُ الْأَصْدِقَاءِ",
"user_not_found": "المستخدم غير موجود", "user_not_found": "الْمُسْتَخْدِمُ غَيْرُ مَوْجُودٍ",
"block_user": ظر المستخدم", "block_user": َظْرُ الْمُسْتَخْدِمِ",
"add_friend": ضافة صديق", "add_friend": ِضَافَةُ صَدِيقٍ",
"request_sent": م إرسال الطلب", "request_sent": َمَّ إِرْسَالُ الطَّلَبِ",
"request_received": م استلام الطلب", "request_received": َمَّ اسْتِقْبَالُ الطَّلَبِ",
"accept_request": بول الطلب", "accept_request": َبُولُ الطَّلَبِ",
"ignore_request": جاهل الطلب", "ignore_request": َجَاهُلُ الطَّلَبِ",
"cancel_request": لغاء الطلب", "cancel_request": ِلْغَاءُ الطَّلَبِ",
"undo_friendship": لغاء الصداقة", "undo_friendship": ِلْغَاءُ الصَّدَاقَةِ",
"request_accepted": م قبول الطلب", "request_accepted": َمَّ قَبُولُ الطَّلَبِ",
"user_blocked_successfully": م حظر المستخدم بنجاح", "user_blocked_successfully": َمَّ حَظْرُ الْمُسْتَخْدِمِ بِنَجَاحٍ",
"user_block_modal_text": يؤدي هذا إلى حظر {{displayName}}", "user_block_modal_text": َيُؤَدِّي هَذَا إِلَى حَظْرِ {{displayName}}",
"blocked_users": "المستخدمون المحظورون", "blocked_users": "الْمُسْتَخْدِمُونَ الْمَحْظُورُونَ",
"unblock": لغاء الحظر", "unblock": ِزَالَةُ الْحَظْرِ",
"no_friends_added": يس لديك أصدقاء مضافون", "no_friends_added": َيْسَ لَدَيْكَ أَصْدِقَاءٌ مُضَافُونَ",
"pending": يد الانتظار", "pending": َيْدُ الْانْتِظَارِ",
"no_pending_invites": يس لديك دعوات معلقة", "no_pending_invites": َيْسَ لَدَيْكَ دَعَوَاتٌ قَيْدُ الْانْتِظَارِ",
"no_blocked_users": يس لديك مستخدمون محظورون", "no_blocked_users": َيْسَ لَدَيْكَ مُسْتَخْدِمُونَ مَحْظُورُونَ",
"friend_code_copied": م نسخ رمز الصديق", "friend_code_copied": َمَّ نَسْخُ رَمْزِ الصَّدِيقِ",
"undo_friendship_modal_text": يؤدي هذا إلى إلغاء صداقتك مع {{displayName}}", "undo_friendship_modal_text": َيُؤَدِّي هَذَا إِلَى إِلْغَاءِ صَدَاقَتِكَ مَعَ {{displayName}}",
"privacy_hint": ضبط من يمكنه رؤية هذا، انتقل إلى <0>الإعدادات</0>", "privacy_hint": ِتَعْدِيلِ مَنْ يُمْكِنُهُ رُؤْيَةُ هَذَا، اذْهَبْ إِلَى <0>الإعْدَادَاتِ</0>",
"locked_profile": "هذا الملف الشخصي خاص", "locked_profile": "هَذَا الْمَلَفُّ الشَّخْصِيُّ خَاصٌّ",
"image_process_failure": شل معالجة الصورة", "image_process_failure": َشَلَ أَثْنَاءَ مُعَالَجَةِ الصُّورَةِ",
"required_field": "هذا الحقل مطلوب", "required_field": "هَذَا الْحَقْلُ مَطْلُوبٌ",
"displayname_min_length": جب أن يكون اسم العرض على الأقل 3 أحرف", "displayname_min_length": َجِبُ أَنْ يَكُونَ اسْمُ الْعَرْضِ عَلَى الْأَقَلِّ 3 أَحْرُفٍ",
"displayname_max_length": جب ألا يتجاوز اسم العرض 50 حرفًا", "displayname_max_length": َجِبُ أَنْ يَكُونَ اسْمُ الْعَرْضِ عَلَى الْأَكْثَرِ 50 حَرْفًا",
"report_profile": "الإبلاغ عن هذا الملف الشخصي", "report_profile": "تَقْرِيرٌ عَنْ هَذَا الْمَلَفِّ الشَّخْصِيِّ",
"report_reason": ماذا تقوم بالإبلاغ عن هذا الملف الشخصي؟", "report_reason": ِمَاذَا تُقَدِّمُ تَقْرِيرًا عَنْ هَذَا الْمَلَفِّ الشَّخْصِيِّ؟",
"report_description": علومات إضافية", "report_description": َعْلُومَاتٌ إِضَافِيَّةٌ",
"report_description_placeholder": علومات إضافية", "report_description_placeholder": َعْلُومَاتٌ إِضَافِيَّةٌ",
"report": "الإبلاغ", "report": "تَقْرِيرٌ",
"report_reason_hate": طاب كراهية", "report_reason_hate": ِطَابُ الْكُرْهِ",
"report_reason_sexual_content": حتوى جنسي", "report_reason_sexual_content": ُحْتَوًى جِنْسِيٌّ",
"report_reason_violence": نف", "report_reason_violence": ُنْفٌ",
"report_reason_spam": "بريد عشوائي", "report_reason_spam": "رَاسِلَةٌ عَشْوَائِيَّةٌ",
"report_reason_other": "أخرى", "report_reason_other": "آخَرُ",
"profile_reported": م الإبلاغ عن الملف الشخصي", "profile_reported": َمَّ تَقْرِيرُ الْمَلَفِّ الشَّخْصِيِّ",
"your_friend_code": مز صديقك:", "your_friend_code": َمْزُ صَدِيقِكَ:",
"upload_banner": "تحميل بانر", "upload_banner": "رَفْعُ لَافِتَةٍ",
"uploading_banner": "جارٍ تحميل البانر...", "uploading_banner": َارٍ رَفْعُ اللَّافِتَةِ...",
"background_image_updated": م تحديث صورة الخلفية", "background_image_updated": َمَّ تَحْدِيثُ صُورَةِ الْخَلْفِيَّةِ",
"stats": "الإحصائيات", "stats": "الإحْصَائِيَّاتُ",
"achievements": "إنجازات", "achievements": "الإِنْجَازَاتُ",
"games": "الألعاب", "games": "الْأَلْعَابُ",
"top_percentile": "ال{{percentile}}% الأعلى", "top_percentile": "الْأَفْضَلُ {{percentile}}%",
"ranking_updated_weekly": "يتم تحديث التصنيف أسبوعيًا", "ranking_updated_weekly": "التَّرْتِيبُ يُحَدَّثُ أُسْبُوعِيًّا",
"playing": "يلعب {{game}}", "playing": "جَارِي اللَّعِبُ {{game}}",
"achievements_unlocked": "الإنجازات المفتوحة", "achievements_unlocked": "الإِنْجَازَاتُ الْمَفْتُوحَةُ",
"earned_points": "النقاط المكتسبة", "earned_points": "النَّقَاطُ الْمَكْسُوبَةُ",
"show_achievements_on_profile": رض إنجازاتك على ملفك الشخصي", "show_achievements_on_profile": َرْضُ إِنْجَازَاتِكَ عَلَى مَلَفِّكَ الشَّخْصِيِّ",
"show_points_on_profile": رض نقاطك المكتسبة على ملفك الشخصي" "show_points_on_profile": َرْضُ النَّقَاطِ الْمَكْسُوبَةِ عَلَى مَلَفِّكَ الشَّخْصِيِّ"
}, },
"achievement": { "achievement": {
"achievement_unlocked": "تم فتح الإنجاز", "achievement_unlocked": "إِنْجَازٌ مَفْتُوحٌ",
"user_achievements": نجازات {{displayName}}", "user_achievements": ِنْجَازَاتُ {{displayName}}",
"your_achievements": نجازاتك", "your_achievements": ِنْجَازَاتُكَ",
"unlocked_at": م الفتح في: {{date}}", "unlocked_at": َمَّ الْفَتْحُ فِي: {{date}}",
"subscription_needed": حتاج إلى اشتراك Hydra Cloud لرؤية هذا المحتوى", "subscription_needed": َحْتَاجُ اشْتِرَاكُ Hydra Cloud لِرُؤْيَةِ هَذَا الْمُحْتَوَى",
"new_achievements_unlocked": م فتح {{achievementCount}} إنجازات جديدة من {{gameCount}} ألعاب", "new_achievements_unlocked": َمَّ فَتْحُ {{achievementCount}} إِنْجَازَاتٍ جَدِيدَةٍ مِنْ {{gameCount}} أَلْعَابٍ",
"achievement_progress": "{{unlockedCount}}/{{totalCount}} إنجازات", "achievement_progress": "{{unlockedCount}}/{{totalCount}} إِنْجَازَاتٍ",
"achievements_unlocked_for_game": م فتح {{achievementCount}} إنجازات جديدة لـ {{gameTitle}}", "achievements_unlocked_for_game": َمَّ فَتْحُ {{achievementCount}} إِنْجَازَاتٍ جَدِيدَةٍ لِـ {{gameTitle}}",
"hidden_achievement_tooltip": "هذا إنجاز مخفي", "hidden_achievement_tooltip": "هَذَا إِنْجَازٌ مَخْفِيٌّ",
"achievement_earn_points": "اكسب {{points}} نقطة مع هذا الإنجاز", "achievement_earn_points": "اكْسِبْ {{points}} نَقَاطًا بِهَذَا الإِنْجَازِ",
"earned_points": "النقاط المكتسبة:", "earned_points": "النَّقَاطُ الْمَكْسُوبَةُ:",
"available_points": "النقاط المتاحة:", "available_points": "النَّقَاطُ الْمُتَوَفِّرَةُ:",
"how_to_earn_achievements_points": يفية كسب نقاط الإنجازات؟" "how_to_earn_achievements_points": َيْفَ تَكْسِبُ نَقَاطَ الإِنْجَازَاتِ؟"
}, },
"hydra_cloud": { "hydra_cloud": {
"subscription_tour_title": "اشتراك Hydra Cloud", "subscription_tour_title": "اشْتِرَاكُ Hydra Cloud",
"subscribe_now": "اشترك الآن", "subscribe_now": "اشْتَرِكِ الْآنَ",
"cloud_saving": فظ سحابي", "cloud_saving": ِفْظٌ سَحَابِيٌّ",
"cloud_achievements": "احفظ إنجازاتك على السحابة", "cloud_achievements": "حِفْظُ إِنْجَازَاتِكَ فِي السَّحَابَةِ",
"animated_profile_picture": "صورة ملف شخصي متحركة", "animated_profile_picture": ُورُ الْمَلَفِّ الشَّخْصِيِّ الْمُتَحَرِّكَةِ",
"premium_support": "دعم ممتاز", "premium_support": "الدَّعْمُ الْمُتَقَدِّمُ",
"show_and_compare_achievements": "اعرض وقارن إنجازاتك مع المستخدمين الآخرين", "show_and_compare_achievements": "عَرْضٌ وَمُقَارَنَةُ إِنْجَازَاتِكَ مَعَ مُسْتَخْدِمِينَ آخَرِينَ",
"animated_profile_banner": "بانر ملف شخصي متحرك", "animated_profile_banner": "لَافِتَةُ الْمَلَفِّ الشَّخْصِيِّ الْمُتَحَرِّكَةِ",
"hydra_cloud": "Hydra Cloud", "hydra_cloud": "Hydra Cloud",
"hydra_cloud_feature_found": قد اكتشفت ميزة Hydra Cloud!", "hydra_cloud_feature_found": َقَدْ اكْتَشَفْتَ مِيزَةً مِنْ Hydra Cloud!",
"learn_more": "معرفة المزيد" "learn_more": "تَعَلَّمْ أَكْثَرَ"
} }
} }

View File

@@ -7,7 +7,7 @@
"featured": "Destaques", "featured": "Destaques",
"hot": "Populares", "hot": "Populares",
"weekly": "📅 Mais baixados da semana", "weekly": "📅 Mais baixados da semana",
"achievements": "🏆 Pra platinar", "achievements": "🏆 Para platinar",
"surprise_me": "Surpreenda-me", "surprise_me": "Surpreenda-me",
"no_results": "Nenhum resultado encontrado", "no_results": "Nenhum resultado encontrado",
"start_typing": "Comece a digitar para pesquisar…" "start_typing": "Comece a digitar para pesquisar…"

View File

@@ -7,8 +7,8 @@
"featured": "Рекомендации", "featured": "Рекомендации",
"surprise_me": "Удиви меня", "surprise_me": "Удиви меня",
"no_results": "Ничего не найдено", "no_results": "Ничего не найдено",
"hot": "Сейчас популярно", "hot": "Сейчас в топе",
"start_typing": "Начинаю вводить текст...", "start_typing": "Начинаю вводить текст для поиска...",
"weekly": "📅 Лучшие игры недели", "weekly": "📅 Лучшие игры недели",
"achievements": "🏆 Игры, в которых нужно победить" "achievements": "🏆 Игры, в которых нужно победить"
}, },
@@ -424,7 +424,7 @@
"subscribe_now": "Подпишитесь прямо сейчас", "subscribe_now": "Подпишитесь прямо сейчас",
"cloud_saving": "Сохранение в облаке", "cloud_saving": "Сохранение в облаке",
"cloud_achievements": "Сохраняйте свои достижения в облаке", "cloud_achievements": "Сохраняйте свои достижения в облаке",
"animated_profile_picture": "Анимированные аватарки", "animated_profile_picture": "Анимированные фотографии профиля",
"premium_support": "Премиальная поддержка", "premium_support": "Премиальная поддержка",
"show_and_compare_achievements": "Показывайте и сравнивайте свои достижения с достижениями других пользователей", "show_and_compare_achievements": "Показывайте и сравнивайте свои достижения с достижениями других пользователей",
"animated_profile_banner": "Анимированный баннер профиля", "animated_profile_banner": "Анимированный баннер профиля",

View File

@@ -0,0 +1,7 @@
import { registerEvent } from "../register-event";
import { WindowManager } from "@main/services";
const openEditorWindow = async (_event: Electron.IpcMainInvokeEvent) =>
WindowManager.openEditorWindow();
registerEvent("openEditorWindow", openEditorWindow);

View File

@@ -49,6 +49,7 @@ import "./user-preferences/authenticate-real-debrid";
import "./download-sources/put-download-source"; import "./download-sources/put-download-source";
import "./auth/sign-out"; import "./auth/sign-out";
import "./auth/open-auth-window"; import "./auth/open-auth-window";
import "./aparence/open-editor-window";
import "./auth/get-session-hash"; import "./auth/get-session-hash";
import "./user/get-user"; import "./user/get-user";
import "./user/get-blocked-users"; import "./user/get-blocked-users";

View File

@@ -190,6 +190,52 @@ export class WindowManager {
} }
} }
public static openEditorWindow() {
if (this.mainWindow) {
const editorWindow = new BrowserWindow({
width: 600,
height: 720,
minWidth: 600,
minHeight: 720,
backgroundColor: "#1c1c1c",
titleBarStyle: process.platform === "linux" ? "default" : "hidden",
...(process.platform === "linux" ? { icon } : {}),
trafficLightPosition: { x: 16, y: 16 },
titleBarOverlay: {
symbolColor: "#DADBE1",
color: "#151515",
height: 34,
},
parent: this.mainWindow,
modal: true,
show: false,
maximizable: true,
resizable: true,
minimizable: true,
webPreferences: {
sandbox: false,
preload: path.join(__dirname, "../preload/index.mjs"),
},
});
editorWindow.removeMenu();
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) {
editorWindow.loadURL(`${process.env["ELECTRON_RENDERER_URL"]}#/editor`);
} else {
editorWindow.loadFile(path.join(__dirname, "../renderer/index.html"), {
hash: "editor",
});
}
editorWindow.once("ready-to-show", () => {
editorWindow.show();
});
if (!app.isPackaged) editorWindow.webContents.openDevTools();
}
}
public static redirect(hash: string) { public static redirect(hash: string) {
if (!this.mainWindow) this.createMainWindow(); if (!this.mainWindow) this.createMainWindow();
this.loadMainWindowURL(hash); this.loadMainWindowURL(hash);

View File

@@ -313,4 +313,7 @@ contextBridge.exposeInMainWorld("electron", {
/* Notifications */ /* Notifications */
publishNewRepacksNotification: (newRepacksCount: number) => publishNewRepacksNotification: (newRepacksCount: number) =>
ipcRenderer.invoke("publishNewRepacksNotification", newRepacksCount), ipcRenderer.invoke("publishNewRepacksNotification", newRepacksCount),
/* Editor */
openEditorWindow: () => ipcRenderer.invoke("openEditorWindow"),
}); });

View File

@@ -0,0 +1,21 @@
$spacing-unit: 8px;
$color-background: #1c1c1c;
$color-dark-background: #151515;
$color-muted: #c0c1c7;
$color-body: #8e919b;
$color-border: rgba(255, 255, 255, 0.15);
$color-success: #1c9749;
$color-danger: #e11d48;
$color-warning: #ffc107;
$opacity-disabled: 0.5;
$opacity-active: 0.7;
$size-body: 14px;
$size-small: 12px;
$z-index-toast: 5;
$z-index-bottom-panel: 3;
$z-index-title-bar: 4;
$z-index-backdrop: 4;

View File

@@ -1,134 +0,0 @@
import {
ComplexStyleRule,
createContainer,
globalStyle,
style,
} from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "./theme.css";
export const appContainer = createContainer();
globalStyle("*", {
boxSizing: "border-box",
});
globalStyle("::-webkit-scrollbar", {
width: "9px",
backgroundColor: vars.color.darkBackground,
});
globalStyle("::-webkit-scrollbar-track", {
backgroundColor: "rgba(255, 255, 255, 0.03)",
});
globalStyle("::-webkit-scrollbar-thumb", {
backgroundColor: "rgba(255, 255, 255, 0.08)",
borderRadius: "24px",
});
globalStyle("::-webkit-scrollbar-thumb:hover", {
backgroundColor: "rgba(255, 255, 255, 0.16)",
});
globalStyle("html, body, #root, main", {
height: "100%",
});
globalStyle("body", {
overflow: "hidden",
userSelect: "none",
fontFamily: "Noto Sans, sans-serif",
fontSize: vars.size.body,
color: vars.color.body,
margin: "0",
});
globalStyle("button", {
padding: "0",
backgroundColor: "transparent",
border: "none",
fontFamily: "inherit",
});
globalStyle("h1, h2, h3, h4, h5, h6, p", {
margin: 0,
});
globalStyle("p", {
lineHeight: "20px",
});
globalStyle("#root, main", {
display: "flex",
});
globalStyle("#root", {
flexDirection: "column",
});
globalStyle("main", {
overflow: "hidden",
});
globalStyle(
"input::-webkit-outer-spin-button, input::-webkit-inner-spin-button",
{
WebkitAppearance: "none",
margin: "0",
}
);
globalStyle("label", {
fontSize: vars.size.body,
});
globalStyle("input[type=number]", {
MozAppearance: "textfield",
});
globalStyle("img", {
WebkitUserDrag: "none",
} as Record<string, string>);
globalStyle("progress[value]", {
WebkitAppearance: "none",
});
export const container = style({
width: "100%",
height: "100%",
overflow: "hidden",
display: "flex",
flexDirection: "column",
containerName: appContainer,
containerType: "inline-size",
});
export const content = style({
overflowY: "auto",
alignItems: "center",
display: "flex",
flexDirection: "column",
position: "relative",
height: "100%",
background: `linear-gradient(0deg, ${vars.color.darkBackground} 50%, ${vars.color.background} 100%)`,
});
export const titleBar = style({
display: "flex",
width: "100%",
height: "35px",
minHeight: "35px",
backgroundColor: vars.color.darkBackground,
alignItems: "center",
padding: `0 ${SPACING_UNIT * 2}px`,
WebkitAppRegion: "drag",
zIndex: "4",
borderBottom: `1px solid ${vars.color.border}`,
} as ComplexStyleRule);
export const cloudText = style({
background: "linear-gradient(270deg, #16B195 50%, #3E62C0 100%)",
backgroundClip: "text",
color: "transparent",
});

136
src/renderer/src/app.scss Normal file
View File

@@ -0,0 +1,136 @@
@use "./scss/variables" as vars;
* {
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 9px;
background-color: vars.$dark-background-color;
}
::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.03);
}
::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.08);
border-radius: 24px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.16);
}
html,
body,
#root,
main {
height: 100%;
}
body {
overflow: hidden;
user-select: none;
font-family: "Noto Sans", sans-serif;
font-size: vars.$body-font-size;
color: vars.$body-color;
margin: 0;
}
button {
padding: 0;
background-color: transparent;
border: none;
font-family: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
p {
line-height: 20px;
}
#root,
main {
display: flex;
}
#root {
flex-direction: column;
}
main {
overflow: hidden;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
label {
font-size: vars.$body-font-size;
}
input[type="number"] {
-moz-appearance: textfield;
}
img {
-webkit-user-drag: none;
}
progress[value] {
-webkit-appearance: none;
}
.app-container {
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.app-container__content {
overflow-y: auto;
align-items: center;
display: flex;
flex-direction: column;
position: relative;
height: 100%;
background: linear-gradient(
0deg,
vars.$dark-background-color 50%,
vars.$background-color 100%
);
}
.app-container__title-bar {
display: flex;
width: 100%;
height: 35px;
min-height: 35px;
background-color: vars.$dark-background-color;
align-items: center;
padding: 0 vars.$spacing-unit * 2;
-webkit-app-region: drag;
z-index: vars.$title-bar-z-index;
border-bottom: 1px solid vars.$border-color;
}
.app-container__cloud-text {
background: linear-gradient(270deg, #16b195 50%, #3e62c0 100%);
background-clip: text;
color: transparent;
}

View File

@@ -12,8 +12,6 @@ import {
useUserDetails, useUserDetails,
} from "@renderer/hooks"; } from "@renderer/hooks";
import * as styles from "./app.css";
import { Outlet, useLocation, useNavigate } from "react-router-dom"; import { Outlet, useLocation, useNavigate } from "react-router-dom";
import { import {
setUserPreferences, setUserPreferences,
@@ -30,6 +28,8 @@ import { downloadSourcesTable } from "./dexie";
import { useSubscription } from "./hooks/use-subscription"; import { useSubscription } from "./hooks/use-subscription";
import { HydraCloudModal } from "./pages/shared-modals/hydra-cloud/hydra-cloud-modal"; import { HydraCloudModal } from "./pages/shared-modals/hydra-cloud/hydra-cloud-modal";
import "./app.scss";
export interface AppProps { export interface AppProps {
children: React.ReactNode; children: React.ReactNode;
} }
@@ -240,11 +240,11 @@ export function App() {
return ( return (
<> <>
{window.electron.platform === "win32" && ( {window.electron.platform === "win32" && (
<div className={styles.titleBar}> <div className="title-bar">
<h4> <h4>
Hydra Hydra
{hasActiveSubscription && ( {hasActiveSubscription && (
<span className={styles.cloudText}> Cloud</span> <span className="title-bar__cloud-text"> Cloud</span>
)} )}
</h4> </h4>
</div> </div>
@@ -275,10 +275,10 @@ export function App() {
<main> <main>
<Sidebar /> <Sidebar />
<article className={styles.container}> <article className="app-container">
<Header /> <Header />
<section ref={contentRef} className={styles.content}> <section ref={contentRef} className="app-container__content">
<Outlet /> <Outlet />
</section> </section>
</article> </article>

View File

@@ -1,14 +1,14 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.profile-avatar { .profile-avatar {
border-radius: 4px; border-radius: 4px;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background-color: globals.$background-color; background-color: vars.$background-color;
border: solid 1px globals.$border-color; border: solid 1px vars.$border-color;
cursor: pointer; cursor: pointer;
color: globals.$muted-color; color: vars.$muted-color;
position: relative; position: relative;
&__image { &__image {

View File

@@ -1,54 +0,0 @@
import { keyframes } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const backdropFadeIn = keyframes({
"0%": { backdropFilter: "blur(0px)", backgroundColor: "rgba(0, 0, 0, 0.5)" },
"100%": {
backdropFilter: "blur(2px)",
backgroundColor: "rgba(0, 0, 0, 0.7)",
},
});
export const backdropFadeOut = keyframes({
"0%": { backdropFilter: "blur(2px)", backgroundColor: "rgba(0, 0, 0, 0.7)" },
"100%": {
backdropFilter: "blur(0px)",
backgroundColor: "rgba(0, 0, 0, 0)",
},
});
export const backdrop = recipe({
base: {
animationName: backdropFadeIn,
animationDuration: "0.4s",
backgroundColor: "rgba(0, 0, 0, 0.7)",
position: "absolute",
width: "100%",
height: "100%",
display: "flex",
justifyContent: "center",
alignItems: "center",
zIndex: vars.zIndex.backdrop,
top: "0",
padding: `${SPACING_UNIT * 3}px`,
backdropFilter: "blur(2px)",
transition: "all ease 0.2s",
},
variants: {
closing: {
true: {
animationName: backdropFadeOut,
backdropFilter: "blur(0px)",
backgroundColor: "rgba(0, 0, 0, 0)",
},
},
windows: {
true: {
// SPACING_UNIT * 3 + title bar spacing
paddingTop: `${SPACING_UNIT * 3 + 35}px`,
},
},
},
});

View File

@@ -0,0 +1,50 @@
@use "../../scss/variables" as vars;
.backdrop {
animation-name: backdrop-fade-in;
animation-duration: 0.4s;
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: vars.$backdrop-z-index;
top: 0;
padding: calc(vars.$spacing-unit * 3);
backdrop-filter: blur(2px);
transition: all ease 0.2s;
&--closing {
animation-name: backdrop-fade-out;
backdrop-filter: blur(0px);
background-color: rgba(0, 0, 0, 0);
}
&--windows {
padding-top: calc(#{vars.$spacing-unit * 3} + 35);
}
}
@keyframes backdrop-fade-in {
0% {
backdrop-filter: blur(0px);
background-color: rgba(0, 0, 0, 0.5);
}
100% {
backdrop-filter: blur(2px);
background-color: rgba(0, 0, 0, 0.7);
}
}
@keyframes backdrop-fade-out {
0% {
backdrop-filter: blur(2px);
background-color: rgba(0, 0, 0, 0.7);
}
100% {
backdrop-filter: blur(0px);
background-color: rgba(0, 0, 0, 0);
}
}

View File

@@ -1,4 +1,5 @@
import * as styles from "./backdrop.css"; import "./backdrop.scss";
import cn from "classnames";
export interface BackdropProps { export interface BackdropProps {
isClosing?: boolean; isClosing?: boolean;
@@ -8,9 +9,9 @@ export interface BackdropProps {
export function Backdrop({ isClosing = false, children }: BackdropProps) { export function Backdrop({ isClosing = false, children }: BackdropProps) {
return ( return (
<div <div
className={styles.backdrop({ className={cn("backdrop", {
closing: isClosing, "backdrop--closing": isClosing,
windows: window.electron.platform === "win32", "backdrop--windows": window.electron.platform === "win32",
})} })}
> >
{children} {children}

View File

@@ -1,10 +1,10 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.badge { .badge {
color: globals.$muted-color; color: vars.$muted-color;
font-size: 10px; font-size: 10px;
padding: calc(globals.$spacing-unit / 2) globals.$spacing-unit; padding: calc(vars.$spacing-unit / 2) vars.$spacing-unit;
border: solid 1px globals.$muted-color; border: solid 1px vars.$muted-color;
border-radius: 4px; border-radius: 4px;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@@ -1,23 +1,23 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.bottom-panel { .bottom-panel {
width: 100%; width: 100%;
border-top: solid 1px globals.$border-color; border-top: solid 1px vars.$border-color;
background-color: globals.$background-color; background-color: vars.$background-color;
padding: calc(globals.$spacing-unit / 2) calc(globals.$spacing-unit * 2); padding: calc(vars.$spacing-unit / 2) calc(vars.$spacing-unit * 2);
display: flex; display: flex;
align-items: center; align-items: center;
transition: all ease 0.2s; transition: all ease 0.2s;
justify-content: space-between; justify-content: space-between;
position: relative; position: relative;
z-index: globals.$bottom-panel-z-index; z-index: vars.$bottom-panel-z-index;
&__downloads-button { &__downloads-button {
color: globals.$body-color; color: vars.$body-color;
border-bottom: solid 1px transparent; border-bottom: solid 1px transparent;
&:hover { &:hover {
border-bottom: solid 1px globals.$body-color; border-bottom: solid 1px vars.$body-color;
cursor: pointer; cursor: pointer;
} }
} }

View File

@@ -1,8 +1,8 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.button { .button {
padding: globals.$spacing-unit globals.$spacing-unit * 2; padding: vars.$spacing-unit vars.$spacing-unit * 2;
background-color: globals.$muted-color; background-color: vars.$muted-color;
border-radius: 8px; border-radius: 8px;
border: solid 1px transparent; border: solid 1px transparent;
transition: all ease 0.2s; transition: all ease 0.2s;
@@ -11,14 +11,14 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: globals.$spacing-unit; gap: vars.$spacing-unit;
&:active { &:active {
opacity: globals.$active-opacity; opacity: vars.$active-opacity;
} }
&:disabled { &:disabled {
opacity: globals.$disabled-opacity; opacity: vars.$disabled-opacity;
cursor: not-allowed; cursor: not-allowed;
} }
@@ -28,14 +28,14 @@
} }
&:disabled { &:disabled {
background-color: globals.$muted-color; background-color: vars.$muted-color;
} }
} }
&--outline { &--outline {
background-color: transparent; background-color: transparent;
border: solid 1px globals.$border-color; border: solid 1px vars.$border-color;
color: globals.$muted-color; color: vars.$muted-color;
&:hover { &:hover {
background-color: rgba(255, 255, 255, 0.1); background-color: rgba(255, 255, 255, 0.1);
@@ -47,14 +47,14 @@
} }
&--dark { &--dark {
background-color: globals.$dark-background-color; background-color: vars.$dark-background-color;
color: globals.$muted-color; color: vars.$muted-color;
} }
&--danger { &--danger {
border-color: transparent; border-color: transparent;
background-color: globals.$danger-color; background-color: vars.$danger-color;
color: globals.$muted-color; color: vars.$muted-color;
&:hover { &:hover {
background-color: #b3203f; background-color: #b3203f;

View File

@@ -1,57 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
import { recipe } from "@vanilla-extract/recipes";
export const checkboxField = style({
display: "flex",
flexDirection: "row",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
cursor: "pointer",
});
export const checkbox = recipe({
base: {
width: "20px",
height: "20px",
borderRadius: "4px",
backgroundColor: vars.color.darkBackground,
display: "flex",
justifyContent: "center",
alignItems: "center",
position: "relative",
transition: "all ease 0.2s",
border: `solid 1px ${vars.color.border}`,
minWidth: "20px",
minHeight: "20px",
color: vars.color.darkBackground,
":hover": {
borderColor: "rgba(255, 255, 255, 0.5)",
},
},
variants: {
checked: {
true: {
backgroundColor: vars.color.muted,
},
},
},
});
export const checkboxInput = style({
width: "100%",
height: "100%",
position: "absolute",
margin: "0",
padding: "0",
opacity: "0",
cursor: "pointer",
});
export const checkboxLabel = style({
cursor: "pointer",
textOverflow: "ellipsis",
overflow: "hidden",
whiteSpace: "nowrap",
});

View File

@@ -0,0 +1,39 @@
@use "../../scss/variables" as vars;
.checkbox-field {
display: flex;
flex-direction: row;
align-items: center;
gap: vars.$spacing-unit;
cursor: pointer;
&__checkbox {
width: 20px;
height: 20px;
border-radius: 4px;
background-color: vars.$dark-background-color;
display: flex;
justify-content: center;
align-items: center;
position: relative;
transition: all ease 0.2s;
border: solid 1px vars.$border-color;
&:hover {
border-color: rgba(255, 255, 255, 0.5);
}
}
&__input {
width: 100%;
height: 100%;
position: absolute;
margin: 0;
padding: 0;
opacity: 0;
cursor: pointer;
}
&__label {
cursor: pointer;
}
}

View File

@@ -1,6 +1,6 @@
import { useId } from "react"; import { useId } from "react";
import * as styles from "./checkbox-field.css";
import { CheckIcon } from "@primer/octicons-react"; import { CheckIcon } from "@primer/octicons-react";
import "./checkbox-field.scss";
export interface CheckboxFieldProps export interface CheckboxFieldProps
extends React.DetailedHTMLProps< extends React.DetailedHTMLProps<
@@ -14,17 +14,19 @@ export function CheckboxField({ label, ...props }: CheckboxFieldProps) {
const id = useId(); const id = useId();
return ( return (
<div className={styles.checkboxField}> <div className="checkbox-field">
<div className={styles.checkbox({ checked: props.checked })}> <div
className={`checkbox-field__checkbox ${props.checked ? "checked" : ""}`}
>
<input <input
id={id} id={id}
type="checkbox" type="checkbox"
className={styles.checkboxInput} className="checkbox-field__input"
{...props} {...props}
/> />
{props.checked && <CheckIcon />} {props.checked && <CheckIcon />}
</div> </div>
<label htmlFor={id} className={styles.checkboxLabel}> <label htmlFor={id} className="checkbox-field__label">
{label} {label}
</label> </label>
</div> </div>

View File

@@ -1,13 +0,0 @@
import { SPACING_UNIT } from "../../theme.css";
import { style } from "@vanilla-extract/css";
export const actions = style({
display: "flex",
alignSelf: "flex-end",
gap: `${SPACING_UNIT * 2}px`,
});
export const descriptionText = style({
fontSize: "16px",
lineHeight: "24px",
});

View File

@@ -0,0 +1,17 @@
@use "../../scss/variables" as vars;
.confirmation-modal {
display: flex;
flex-direction: column;
gap: calc(vars.$spacing-unit * 2);
&__actions {
display: flex;
align-self: flex-end;
gap: calc(vars.$spacing-unit * 2);
}
&__description {
font-size: 16px;
line-height: 24px;
}
}

View File

@@ -1,7 +1,7 @@
import { Button } from "../button/button"; import { Button } from "../button/button";
import { Modal, type ModalProps } from "../modal/modal"; import { Modal, type ModalProps } from "../modal/modal";
import * as styles from "./confirmation-modal.css"; import "./confirmation-modal.scss";
export interface ConfirmationModalProps extends Omit<ModalProps, "children"> { export interface ConfirmationModalProps extends Omit<ModalProps, "children"> {
confirmButtonLabel: string; confirmButtonLabel: string;
@@ -31,10 +31,10 @@ export function ConfirmationModal({
return ( return (
<Modal {...props}> <Modal {...props}>
<div style={{ display: "flex", flexDirection: "column", gap: "16px" }}> <div className="confirmation-modal">
<p className={styles.descriptionText}>{descriptionText}</p> <p className="confirmation-modal__description">{descriptionText}</p>
<div className={styles.actions}> <div className="confirmation-modal__actions">
<Button theme="outline" onClick={handleCancelClick}> <Button theme="outline" onClick={handleCancelClick}>
{cancelButtonLabel} {cancelButtonLabel}
</Button> </Button>

View File

@@ -1,9 +1,9 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.dropdown-menu { .dropdown-menu {
&__content { &__content {
background-color: globals.$dark-background-color; background-color: vars.$dark-background-color;
border: 1px solid globals.$border-color; border: 1px solid vars.$border-color;
border-radius: 6px; border-radius: 6px;
min-width: 200px; min-width: 200px;
flex-direction: column; flex-direction: column;
@@ -20,13 +20,13 @@
padding: 4px 12px; padding: 4px 12px;
font-size: 14px; font-size: 14px;
font-weight: 500; font-weight: 500;
color: globals.$muted-color; color: vars.$muted-color;
} }
&__separator { &__separator {
width: 100%; width: 100%;
height: 1px; height: 1px;
background-color: globals.$border-color; background-color: vars.$border-color;
} }
&__item { &__item {
@@ -49,12 +49,12 @@
} }
&:not(&__item--disabled) &__item:hover { &:not(&__item--disabled) &__item:hover {
background-color: globals.$background-color; background-color: vars.$background-color;
color: globals.$muted-color; color: vars.$muted-color;
} }
&__item:focus { &__item:focus {
background-color: globals.$background-color; background-color: vars.$background-color;
outline: none; outline: none;
} }

View File

@@ -1,106 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
export const card = style({
width: "100%",
height: "180px",
boxShadow: "0px 0px 15px 0px #000000",
overflow: "hidden",
borderRadius: "4px",
transition: "all ease 0.2s",
border: `solid 1px ${vars.color.border}`,
cursor: "pointer",
zIndex: "1",
":active": {
opacity: vars.opacity.active,
},
});
export const backdrop = style({
background: "linear-gradient(0deg, rgba(0, 0, 0, 0.7) 50%, transparent 100%)",
width: "100%",
height: "100%",
display: "flex",
justifyContent: "flex-end",
flexDirection: "column",
position: "relative",
});
export const cover = style({
width: "100%",
height: "100%",
objectFit: "cover",
objectPosition: "center",
position: "absolute",
zIndex: "-1",
transition: "all ease 0.2s",
selectors: {
[`${card}:hover &`]: {
transform: "scale(1.05)",
},
},
});
export const content = style({
color: "#DADBE1",
padding: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px`,
display: "flex",
alignItems: "flex-start",
gap: `${SPACING_UNIT}px`,
flexDirection: "column",
transition: "all ease 0.2s",
transform: "translateY(24px)",
selectors: {
[`${card}:hover &`]: {
transform: "translateY(0px)",
},
},
});
export const title = style({
fontSize: "16px",
fontWeight: "bold",
textAlign: "left",
});
export const downloadOptions = style({
display: "flex",
margin: "0",
padding: "0",
gap: `${SPACING_UNIT}px`,
flexWrap: "wrap",
listStyle: "none",
});
export const specifics = style({
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
justifyContent: "center",
});
export const specificsItem = style({
gap: `${SPACING_UNIT}px`,
display: "flex",
color: vars.color.muted,
fontSize: "12px",
alignItems: "flex-end",
});
export const titleContainer = style({
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
color: vars.color.muted,
});
export const shopIcon = style({
width: "20px",
height: "20px",
minWidth: "20px",
});
export const noDownloadsLabel = style({
color: vars.color.body,
fontWeight: "bold",
});

View File

@@ -0,0 +1,102 @@
@use "../../scss/variables" as vars;
.game-card {
width: 100%;
height: 180px;
box-shadow: 0px 0px 15px 0px #000000;
overflow: hidden;
border-radius: 4px;
transition: all ease 0.2s;
border: solid 1px vars.$border-color;
cursor: pointer;
z-index: 1;
&:active {
opacity: vars.$active-opacity;
}
&__backdrop {
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
width: 100%;
height: 100%;
display: flex;
justify-content: flex-end;
flex-direction: column;
position: relative;
}
&__cover {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
position: absolute;
z-index: -1;
transition: all ease 0.2s;
}
&__content {
color: #dadbe1;
padding: vars.$spacing-unit calc(vars.$spacing-unit * 2);
display: flex;
align-items: flex-start;
gap: vars.$spacing-unit;
flex-direction: column;
transition: all ease 0.2s;
transform: translateY(24px);
}
&__title {
font-size: 16px;
font-weight: bold;
text-align: left;
}
&__download-options {
display: flex;
margin: 0;
padding: 0;
gap: vars.$spacing-unit;
flex-wrap: wrap;
list-style: none;
}
&__specifics {
display: flex;
gap: calc(vars.$spacing-unit * 2);
justify-content: center;
}
&__specifics-item {
gap: vars.$spacing-unit;
display: flex;
color: vars.$muted-color;
font-size: 12px;
align-items: flex-end;
}
&__title-container {
display: flex;
align-items: center;
gap: vars.$spacing-unit;
color: vars.$muted-color;
}
&__shop-icon {
width: 20px;
height: 20px;
min-width: 20px;
}
&__no-download-label {
color: vars.$body-color;
font-weight: bold;
}
&:hover &__cover {
transform: scale(1.05);
}
&:hover &__content {
transform: translateY(0px);
}
}

View File

@@ -3,7 +3,8 @@ import type { GameStats } from "@types";
import SteamLogo from "@renderer/assets/steam-logo.svg?react"; import SteamLogo from "@renderer/assets/steam-logo.svg?react";
import * as styles from "./game-card.css"; 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 { useCallback, useState } from "react"; import { useCallback, useState } from "react";
@@ -19,7 +20,7 @@ export interface GameCardProps
} }
const shopIcon = { const shopIcon = {
steam: <SteamLogo className={styles.shopIcon} />, steam: <SteamLogo className="game-card__shop-icon" />,
}; };
export function GameCard({ game, ...props }: GameCardProps) { export function GameCard({ game, ...props }: GameCardProps) {
@@ -48,25 +49,25 @@ export function GameCard({ game, ...props }: GameCardProps) {
<button <button
{...props} {...props}
type="button" type="button"
className={styles.card} className="game-card"
onMouseEnter={handleHover} onMouseEnter={handleHover}
> >
<div className={styles.backdrop}> <div className="game-card__backdrop">
<img <img
src={steamUrlBuilder.library(game.objectId)} src={steamUrlBuilder.library(game.objectId)}
alt={game.title} alt={game.title}
className={styles.cover} className="game-card__cover"
loading="lazy" loading="lazy"
/> />
<div className={styles.content}> <div className="game-card__content">
<div className={styles.titleContainer}> <div className="game-card__title-container">
{shopIcon[game.shop]} {shopIcon[game.shop]}
<p className={styles.title}>{game.title}</p> <p className="game-card__title">{game.title}</p>
</div> </div>
{uniqueRepackers.length > 0 ? ( {uniqueRepackers.length > 0 ? (
<ul className={styles.downloadOptions}> <ul className="game-card__download-options">
{uniqueRepackers.map((repacker) => ( {uniqueRepackers.map((repacker) => (
<li key={repacker}> <li key={repacker}>
<Badge>{repacker}</Badge> <Badge>{repacker}</Badge>
@@ -74,17 +75,17 @@ export function GameCard({ game, ...props }: GameCardProps) {
))} ))}
</ul> </ul>
) : ( ) : (
<p className={styles.noDownloadsLabel}>{t("no_downloads")}</p> <p className="game-card__no-download-label">{t("no_downloads")}</p>
)} )}
<div className={styles.specifics}> <div className="game-card__specifics">
<div className={styles.specificsItem}> <div className="game-card__specifics-item">
<DownloadIcon /> <DownloadIcon />
<span> <span>
{stats ? numberFormatter.format(stats.downloadCount) : "…"} {stats ? numberFormatter.format(stats.downloadCount) : "…"}
</span> </span>
</div> </div>
<div className={styles.specificsItem}> <div className="game-card__specifics-item">
<PeopleIcon /> <PeopleIcon />
<span> <span>
{stats ? numberFormatter.format(stats?.playerCount) : "…"} {stats ? numberFormatter.format(stats?.playerCount) : "…"}

View File

@@ -0,0 +1,32 @@
@use "../../scss/variables" as vars;
.auto-update-sub-header {
border-bottom: solid 1px vars.$body-color;
padding: calc(vars.$spacing-unit / 2) calc(vars.$spacing-unit * 3);
&__new-version-link {
display: flex;
align-items: center;
gap: vars.$spacing-unit;
color: #8e919b;
font-size: 12px;
}
&__new-version-icon {
color: vars.$success-color;
}
&__new-version-button {
display: flex;
align-items: center;
justify-content: center;
gap: vars.$spacing-unit;
color: vars.$body-color;
font-size: 12px;
&:hover {
text-decoration: underline;
cursor: pointer;
}
}
}

View File

@@ -2,7 +2,7 @@ import { useTranslation } from "react-i18next";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { SyncIcon } from "@primer/octicons-react"; import { SyncIcon } from "@primer/octicons-react";
import { Link } from "../link/link"; import { Link } from "../link/link";
import * as styles from "./header.css"; import "./auto-update-header.scss";
import type { AppUpdaterEvent } from "@types"; import type { AppUpdaterEvent } from "@types";
export const releasesPageUrl = export const releasesPageUrl =
@@ -45,9 +45,15 @@ export function AutoUpdateSubHeader() {
if (!isAutoInstallAvailable) { if (!isAutoInstallAvailable) {
return ( return (
<header className={styles.subheader}> <header className="auto-update-sub-header">
<Link to={releasesPageUrl} className={styles.newVersionLink}> <Link
<SyncIcon className={styles.newVersionIcon} size={12} /> to={releasesPageUrl}
className="auto-update-sub-header__new-version-link"
>
<SyncIcon
className="auto-update-sub-header__new-version-icon"
size={12}
/>
{t("version_available_download", { version: newVersion })} {t("version_available_download", { version: newVersion })}
</Link> </Link>
</header> </header>
@@ -56,13 +62,16 @@ export function AutoUpdateSubHeader() {
if (isReadyToInstall) { if (isReadyToInstall) {
return ( return (
<header className={styles.subheader}> <header className="auto-update-sub-header">
<button <button
type="button" type="button"
className={styles.newVersionButton} className="auto-update-sub-header__new-version-button"
onClick={handleClickInstallUpdate} onClick={handleClickInstallUpdate}
> >
<SyncIcon className={styles.newVersionIcon} size={12} /> <SyncIcon
className="auto-update-sub-header__new-version-icon"
size={12}
/>
{t("version_available_install", { version: newVersion })} {t("version_available_install", { version: newVersion })}
</button> </button>
</header> </header>

View File

@@ -1,182 +0,0 @@
import type { ComplexStyleRule } from "@vanilla-extract/css";
import { keyframes, style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const slideIn = keyframes({
"0%": { transform: "translateX(20px)", opacity: "0" },
"100%": {
transform: "translateX(0)",
opacity: "1",
},
});
export const slideOut = keyframes({
"0%": { transform: "translateX(0px)", opacity: "1" },
"100%": {
transform: "translateX(20px)",
opacity: "0",
},
});
export const header = recipe({
base: {
display: "flex",
justifyContent: "space-between",
alignItems: "center",
gap: `${SPACING_UNIT * 2}px`,
WebkitAppRegion: "drag",
width: "100%",
padding: `${SPACING_UNIT * 2}px ${SPACING_UNIT * 3}px`,
color: vars.color.muted,
borderBottom: `solid 1px ${vars.color.border}`,
backgroundColor: vars.color.darkBackground,
} as ComplexStyleRule,
variants: {
draggingDisabled: {
true: {
WebkitAppRegion: "no-drag",
} as ComplexStyleRule,
},
isWindows: {
true: {
WebkitAppRegion: "no-drag",
} as ComplexStyleRule,
},
},
});
export const search = recipe({
base: {
backgroundColor: vars.color.background,
display: "inline-flex",
transition: "all ease 0.2s",
width: "200px",
alignItems: "center",
borderRadius: "8px",
border: `solid 1px ${vars.color.border}`,
height: "40px",
WebkitAppRegion: "no-drag",
} as ComplexStyleRule,
variants: {
focused: {
true: {
width: "250px",
borderColor: "#DADBE1",
},
false: {
":hover": {
borderColor: "rgba(255, 255, 255, 0.5)",
},
},
},
},
});
export const searchInput = style({
backgroundColor: "transparent",
border: "none",
width: "100%",
height: "100%",
outline: "none",
color: "#DADBE1",
cursor: "default",
fontFamily: "inherit",
textOverflow: "ellipsis",
":focus": {
cursor: "text",
},
});
export const actionButton = style({
color: "inherit",
cursor: "pointer",
transition: "all ease 0.2s",
padding: `${SPACING_UNIT}px`,
":hover": {
color: "#DADBE1",
},
});
export const section = style({
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT * 2}px`,
height: "100%",
overflow: "hidden",
});
export const backButton = recipe({
base: {
color: vars.color.body,
cursor: "pointer",
WebkitAppRegion: "no-drag",
position: "absolute",
transition: "transform ease 0.2s",
animationDuration: "0.2s",
width: "16px",
height: "16px",
display: "flex",
alignItems: "center",
} as ComplexStyleRule,
variants: {
enabled: {
true: {
animationName: slideIn,
},
false: {
opacity: "0",
pointerEvents: "none",
animationName: slideOut,
},
},
},
});
export const title = recipe({
base: {
transition: "all ease 0.2s",
overflow: "hidden",
textOverflow: "ellipsis",
width: "100%",
},
variants: {
hasBackButton: {
true: {
transform: "translateX(28px)",
width: "calc(100% - 28px)",
},
},
},
});
export const subheader = style({
borderBottom: `solid 1px ${vars.color.border}`,
padding: `${SPACING_UNIT / 2}px ${SPACING_UNIT * 3}px`,
});
export const newVersionButton = style({
display: "flex",
alignItems: "center",
justifyContent: "center",
gap: `${SPACING_UNIT}px`,
color: vars.color.body,
fontSize: "12px",
":hover": {
textDecoration: "underline",
cursor: "pointer",
},
});
export const newVersionLink = style({
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
color: "#8e919b",
fontSize: "12px",
});
export const newVersionIcon = style({
color: vars.color.success,
});

View File

@@ -0,0 +1,145 @@
@use "../../scss/variables" as vars;
.header {
display: flex;
justify-content: space-between;
align-items: center;
gap: calc(vars.$spacing-unit * 2);
-webkit-app-region: drag;
width: 100%;
padding: calc(vars.$spacing-unit * 2) calc(vars.$spacing-unit * 3);
color: vars.$muted-color;
border-bottom: solid 1px vars.$border-color;
background-color: vars.$dark-background-color;
&--dragging-disabled {
-webkit-app-region: no-drag;
}
&--is-windows {
-webkit-app-region: no-drag;
}
&__search {
background-color: vars.$background-color;
display: inline-flex;
transition: all ease 0.2s;
width: 200px;
align-items: center;
border-radius: 8px;
border: solid 1px vars.$border-color;
height: 40px;
-webkit-app-region: no-drag;
&:hover {
border-color: rgba(255, 255, 255, 0.5);
}
&--focused {
width: 250px;
border-color: #dadbe1;
}
}
&__search-input {
background-color: transparent;
border: none;
width: 100%;
height: 100%;
outline: none;
color: #dadbe1;
cursor: default;
font-family: inherit;
text-overflow: ellipsis;
&:focus {
cursor: text;
}
}
&__action-button {
color: inherit;
cursor: pointer;
transition: all ease 0.2s;
padding: vars.$spacing-unit;
&:hover {
color: #dadbe1;
}
}
&__section {
display: flex;
align-items: center;
gap: calc(vars.$spacing-unit * 2);
height: 100%;
overflow: hidden;
}
&__back-button {
color: vars.$body-color;
cursor: pointer;
-webkit-app-region: no-drag;
position: absolute;
transition: transform ease 0.2s;
animation-duration: 0.2s;
width: 16px;
height: 16px;
display: flex;
align-items: center;
opacity: 0;
pointer-events: none;
animation-name: slide-out;
&--enabled {
animation: slide-in;
opacity: 1;
pointer-events: all;
}
}
&__title {
transition: all ease 0.2s;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
&--has-back-button {
transform: translateX(28px);
width: calc(100% - 28px);
}
}
&__new-version-link {
display: flex;
align-items: center;
gap: vars.$spacing-unit;
color: vars.$body-color;
font-size: vars.$new-version-font-size;
}
&__new-version-icon {
color: vars.$success-color;
}
}
@keyframes slide-in {
0% {
transform: translateX(20px);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slide-out {
0% {
transform: translateX(0px);
opacity: 1;
}
100% {
transform: translateX(20px);
opacity: 0;
}
}

View File

@@ -5,9 +5,10 @@ import { ArrowLeftIcon, SearchIcon, XIcon } from "@primer/octicons-react";
import { useAppDispatch, useAppSelector } from "@renderer/hooks"; import { useAppDispatch, useAppSelector } from "@renderer/hooks";
import * as styles from "./header.css"; import "./header.scss";
import { AutoUpdateSubHeader } from "./auto-update-sub-header"; import { AutoUpdateSubHeader } from "./auto-update-sub-header";
import { setFilters } from "@renderer/features"; import { setFilters } from "@renderer/features";
import cn from "classnames";
const pathTitle: Record<string, string> = { const pathTitle: Record<string, string> = {
"/": "home", "/": "home",
@@ -75,16 +76,16 @@ export function Header() {
return ( return (
<> <>
<header <header
className={styles.header({ className={cn("header", {
draggingDisabled, "header--dragging-disabled": draggingDisabled,
isWindows: window.electron.platform === "win32", "header--is-windows": window.electron.platform === "win32",
})} })}
> >
<section className={styles.section} style={{ flex: 1 }}> <section className="header__section" style={{ flex: 1 }}>
<button <button
type="button" type="button"
className={styles.backButton({ className={cn("header__back-button", {
enabled: location.key !== "default", "header__back-button--enabled": location.key !== "default",
})} })}
onClick={handleBackButtonClick} onClick={handleBackButtonClick}
disabled={location.key === "default"} disabled={location.key === "default"}
@@ -93,19 +94,23 @@ export function Header() {
</button> </button>
<h3 <h3
className={styles.title({ className={cn("header__title", {
hasBackButton: location.key !== "default", "header__title--has-back-button": location.key !== "default",
})} })}
> >
{title} {title}
</h3> </h3>
</section> </section>
<section className={styles.section}> <section className="header__section">
<div className={styles.search({ focused: isFocused })}> <div
className={cn("header__search", {
"header__search--focused": isFocused,
})}
>
<button <button
type="button" type="button"
className={styles.actionButton} className="header__action-button"
onClick={focusInput} onClick={focusInput}
> >
<SearchIcon /> <SearchIcon />
@@ -117,7 +122,7 @@ export function Header() {
name="search" name="search"
placeholder={t("search")} placeholder={t("search")}
value={searchValue} value={searchValue}
className={styles.searchInput} className="header__search-input"
onChange={(event) => handleSearch(event.target.value)} onChange={(event) => handleSearch(event.target.value)}
onFocus={() => setIsFocused(true)} onFocus={() => setIsFocused(true)}
onBlur={handleBlur} onBlur={handleBlur}
@@ -127,7 +132,7 @@ export function Header() {
<button <button
type="button" type="button"
onClick={() => dispatch(setFilters({ title: "" }))} onClick={() => dispatch(setFilters({ title: "" }))}
className={styles.actionButton} className="header__action-button"
> >
<XIcon /> <XIcon />
</button> </button>

View File

@@ -1,60 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
export const hero = style({
width: "100%",
height: "280px",
minHeight: "280px",
maxHeight: "280px",
borderRadius: "4px",
color: "#DADBE1",
overflow: "hidden",
boxShadow: "0px 0px 15px 0px #000000",
cursor: "pointer",
border: `solid 1px ${vars.color.border}`,
zIndex: "1",
});
export const heroMedia = style({
objectFit: "cover",
objectPosition: "center",
position: "absolute",
zIndex: "-1",
width: "100%",
height: "100%",
transition: "all ease 0.2s",
imageRendering: "revert",
selectors: {
[`${hero}:hover &`]: {
transform: "scale(1.02)",
},
},
});
export const backdrop = style({
width: "100%",
height: "100%",
background: "linear-gradient(0deg, rgba(0, 0, 0, 0.8) 25%, transparent 100%)",
position: "relative",
display: "flex",
overflow: "hidden",
});
export const description = style({
maxWidth: "700px",
color: vars.color.muted,
textAlign: "left",
lineHeight: "20px",
marginTop: `${SPACING_UNIT * 2}px`,
});
export const content = style({
width: "100%",
height: "100%",
padding: `${SPACING_UNIT * 4}px ${SPACING_UNIT * 3}px`,
gap: `${SPACING_UNIT * 2}px`,
display: "flex",
flexDirection: "column",
justifyContent: "flex-end",
});

View File

@@ -0,0 +1,57 @@
@use "../../scss/variables" as vars;
.hero {
width: 100%;
height: 280px;
min-height: 280px;
max-height: 280px;
border-radius: 4px;
color: #dadbe1;
overflow: hidden;
box-shadow: 0px 0px 15px 0px #000000;
cursor: pointer;
border: solid 1px vars.$border-color;
z-index: 1;
&__media {
object-fit: cover;
object-position: center;
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
transition: all ease 0.2s;
image-rendering: revert;
&:hover {
transform: scale(1.02);
}
}
&__backdrop {
width: 100%;
height: 100%;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 25%, transparent 100%);
position: relative;
display: flex;
overflow: hidden;
}
&__description {
max-width: 700px;
color: vars.$muted-color;
text-align: left;
line-height: 20px;
margin-top: vars.$spacing-unit * 2;
}
&__content {
width: 100%;
height: 100%;
padding: vars.$spacing-unit * 4 vars.$spacing-unit * 3;
gap: vars.$spacing-unit * 2;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
}

View File

@@ -1,9 +1,9 @@
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
import * as styles from "./hero.css";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import type { TrendingGame } from "@types"; import type { TrendingGame } from "@types";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import Skeleton from "react-loading-skeleton"; import Skeleton from "react-loading-skeleton";
import "./hero.scss";
export function Hero() { export function Hero() {
const [featuredGameDetails, setFeaturedGameDetails] = useState< const [featuredGameDetails, setFeaturedGameDetails] = useState<
@@ -29,7 +29,7 @@ export function Hero() {
}, [i18n.language]); }, [i18n.language]);
if (isLoading) { if (isLoading) {
return <Skeleton className={styles.hero} />; return <Skeleton className="hero" />;
} }
if (featuredGameDetails?.length) { if (featuredGameDetails?.length) {
@@ -37,17 +37,17 @@ export function Hero() {
<button <button
type="button" type="button"
onClick={() => navigate(game.uri)} onClick={() => navigate(game.uri)}
className={styles.hero} className="hero"
key={index} key={index}
> >
<div className={styles.backdrop}> <div className="hero__backdrop">
<img <img
src={game.background} src={game.background}
alt={game.description} alt={game.description}
className={styles.heroMedia} className="hero__media"
/> />
<div className={styles.content}> <div className="hero__content">
{game.logo && ( {game.logo && (
<img <img
src={game.logo} src={game.logo}
@@ -56,7 +56,7 @@ export function Hero() {
loading="eager" loading="eager"
/> />
)} )}
<p className={styles.description}>{game.description}</p> <p className="hero__description">{game.description}</p>
</div> </div>
</div> </div>
</button> </button>

View File

@@ -1,9 +0,0 @@
import { style } from "@vanilla-extract/css";
export const link = style({
textDecoration: "none",
color: "#C0C1C7",
":hover": {
textDecoration: "underline",
},
});

View File

@@ -0,0 +1,10 @@
@use "../../scss/variables" as vars;
.link {
text-decoration: none;
color: vars.$muted-color;
&:hover {
text-decoration: underline;
}
}

View File

@@ -1,6 +1,6 @@
import { Link as ReactRouterDomLink, LinkProps } from "react-router-dom"; import { Link as ReactRouterDomLink, LinkProps } from "react-router-dom";
import cn from "classnames"; import cn from "classnames";
import * as styles from "./link.css"; import "./link.scss";
export function Link({ children, to, className, ...props }: LinkProps) { export function Link({ children, to, className, ...props }: LinkProps) {
const openExternal = (event: React.MouseEvent) => { const openExternal = (event: React.MouseEvent) => {
@@ -12,7 +12,7 @@ export function Link({ children, to, className, ...props }: LinkProps) {
return ( return (
<a <a
href={to} href={to}
className={cn(styles.link, className)} className={cn("link", className)}
onClick={openExternal} onClick={openExternal}
{...props} {...props}
> >
@@ -22,11 +22,7 @@ export function Link({ children, to, className, ...props }: LinkProps) {
} }
return ( return (
<ReactRouterDomLink <ReactRouterDomLink className={cn("link", className)} to={to} {...props}>
className={cn(styles.link, className)}
to={to}
{...props}
>
{children} {children}
</ReactRouterDomLink> </ReactRouterDomLink>
); );

View File

@@ -1,78 +0,0 @@
import { keyframes, style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const scaleFadeIn = keyframes({
"0%": { opacity: "0", scale: "0.5" },
"100%": {
opacity: "1",
scale: "1",
},
});
export const scaleFadeOut = keyframes({
"0%": { opacity: "1", scale: "1" },
"100%": {
opacity: "0",
scale: "0.5",
},
});
export const modal = recipe({
base: {
animation: `${scaleFadeIn} 0.2s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running`,
backgroundColor: vars.color.background,
borderRadius: "4px",
minWidth: "400px",
maxWidth: "600px",
color: vars.color.body,
maxHeight: "100%",
border: `solid 1px ${vars.color.border}`,
overflow: "hidden",
display: "flex",
flexDirection: "column",
},
variants: {
closing: {
true: {
animationName: scaleFadeOut,
opacity: "0",
},
},
large: {
true: {
width: "800px",
maxWidth: "800px",
},
},
},
});
export const modalContent = style({
height: "100%",
overflow: "auto",
padding: `${SPACING_UNIT * 3}px ${SPACING_UNIT * 2}px`,
});
export const modalHeader = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
padding: `${SPACING_UNIT * 2}px`,
borderBottom: `solid 1px ${vars.color.border}`,
justifyContent: "space-between",
alignItems: "center",
});
export const closeModalButton = style({
cursor: "pointer",
transition: "all ease 0.2s",
alignSelf: "flex-start",
":hover": {
opacity: "0.75",
},
});
export const closeModalButtonIcon = style({
color: vars.color.body,
});

View File

@@ -0,0 +1,77 @@
@use "../../scss/variables" as vars;
.modal {
animation: scale-fade-in 0.2s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none
running;
background-color: vars.$background-color;
border-radius: 4px;
min-width: 400px;
max-width: 600px;
color: vars.$body-color;
max-height: 100%;
border: solid 1px vars.$border-color;
overflow: hidden;
display: flex;
flex-direction: column;
&__closing {
animation-name: scale-fade-out;
opacity: 0;
}
&__large {
width: 800px;
max-width: 800px;
}
&__content {
height: 100%;
overflow: auto;
padding: calc(vars.$spacing-unit * 3) calc(vars.$spacing-unit * 2);
}
&__header {
display: flex;
gap: vars.$spacing-unit;
padding: calc(vars.$spacing-unit * 2);
border-bottom: solid 1px vars.$border-color;
justify-content: space-between;
align-items: center;
}
&__close-button {
cursor: pointer;
transition: all ease 0.2s;
align-self: flex-start;
&:hover {
opacity: 0.75;
}
}
&__close-button-icon {
color: vars.$body-color;
}
}
@keyframes scale-fade-in {
0% {
opacity: 0;
scale: 0.5;
}
100% {
opacity: 1;
scale: 1;
}
}
@keyframes scale-fade-out {
0% {
opacity: 1;
scale: 1;
}
100% {
opacity: 0;
scale: 0.5;
}
}

View File

@@ -2,10 +2,11 @@ import { useCallback, useEffect, useRef, useState } from "react";
import { createPortal } from "react-dom"; import { createPortal } from "react-dom";
import { XIcon } from "@primer/octicons-react"; import { XIcon } from "@primer/octicons-react";
import * as styles from "./modal.css"; import "./modal.scss";
import { Backdrop } from "../backdrop/backdrop"; import { Backdrop } from "../backdrop/backdrop";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import cn from "classnames";
export interface ModalProps { export interface ModalProps {
visible: boolean; visible: boolean;
@@ -108,14 +109,17 @@ export function Modal({
return createPortal( return createPortal(
<Backdrop isClosing={isClosing}> <Backdrop isClosing={isClosing}>
<div <div
className={styles.modal({ closing: isClosing, large })} className={cn("modal", {
modal__closing: isClosing,
modal__large: large,
})}
role="dialog" role="dialog"
aria-labelledby={title} aria-labelledby={title}
aria-describedby={description} aria-describedby={description}
ref={modalContentRef} ref={modalContentRef}
data-hydra-dialog data-hydra-dialog
> >
<div className={styles.modalHeader}> <div className="modal__header">
<div style={{ display: "flex", gap: 4, flexDirection: "column" }}> <div style={{ display: "flex", gap: 4, flexDirection: "column" }}>
<h3>{title}</h3> <h3>{title}</h3>
{description && <p>{description}</p>} {description && <p>{description}</p>}
@@ -124,13 +128,13 @@ export function Modal({
<button <button
type="button" type="button"
onClick={handleCloseClick} onClick={handleCloseClick}
className={styles.closeModalButton} className="modal__close-button"
aria-label={t("close")} aria-label={t("close")}
> >
<XIcon className={styles.closeModalButtonIcon} size={24} /> <XIcon className="modal__close-button-icon" size={24} />
</button> </button>
</div> </div>
<div className={styles.modalContent}>{children}</div> <div className="modal__content">{children}</div>
</div> </div>
</Backdrop>, </Backdrop>,
document.body document.body

View File

@@ -1,59 +0,0 @@
import { style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const select = recipe({
base: {
display: "inline-flex",
transition: "all ease 0.2s",
width: "fit-content",
alignItems: "center",
borderRadius: "8px",
border: `1px solid ${vars.color.border}`,
height: "40px",
minHeight: "40px",
},
variants: {
focused: {
true: {
borderColor: "#DADBE1",
},
false: {
":hover": {
borderColor: "rgba(255, 255, 255, 0.5)",
},
},
},
theme: {
primary: {
backgroundColor: vars.color.darkBackground,
},
dark: {
backgroundColor: vars.color.background,
},
},
},
});
export const option = style({
backgroundColor: vars.color.darkBackground,
borderRight: "4px solid",
borderColor: "transparent",
borderRadius: "8px",
width: "fit-content",
height: "100%",
outline: "none",
color: "#DADBE1",
cursor: "default",
fontFamily: "inherit",
fontSize: vars.size.body,
textOverflow: "ellipsis",
padding: `${SPACING_UNIT}px`,
});
export const label = style({
marginBottom: `${SPACING_UNIT}px`,
display: "block",
color: vars.color.body,
});

View File

@@ -0,0 +1,49 @@
@use "../../scss/variables" as vars;
.select-field {
display: inline-flex;
transition: all ease 0.2s;
width: fit-content;
align-items: center;
border-radius: 8px;
border: 1px solid vars.$border-color;
height: 40px;
min-height: 40px;
&:hover {
border-color: rgba(255, 255, 255, 0.5);
}
&__focused {
border-color: #dadbe1;
}
&__primary {
background-color: vars.$dark-background-color;
}
&__dark {
background-color: vars.$background-color;
}
&__option {
background-color: vars.$dark-background-color;
border-right: 4px solid;
border-color: transparent;
border-radius: 8px;
width: fit-content;
height: 100%;
outline: none;
color: #dadbe1;
cursor: default;
font-family: inherit;
font-size: vars.$body-font-size;
text-overflow: ellipsis;
padding: vars.$spacing-unit;
}
&__label {
margin-bottom: vars.$spacing-unit;
display: block;
color: vars.$body-color;
}
}

View File

@@ -1,13 +1,13 @@
import { useId, useState } from "react"; import { useId, useState } from "react";
import type { RecipeVariants } from "@vanilla-extract/recipes"; import "./select-field.scss";
import * as styles from "./select-field.css"; import cn from "classnames";
export interface SelectProps export interface SelectProps
extends React.DetailedHTMLProps< extends React.DetailedHTMLProps<
React.SelectHTMLAttributes<HTMLSelectElement>, React.SelectHTMLAttributes<HTMLSelectElement>,
HTMLSelectElement HTMLSelectElement
> { > {
theme?: NonNullable<RecipeVariants<typeof styles.select>>["theme"]; theme?: "primary" | "dark";
label?: string; label?: string;
options?: { key: string; value: string; label: string }[]; options?: { key: string; value: string; label: string }[];
} }
@@ -25,16 +25,20 @@ export function SelectField({
return ( return (
<div style={{ flex: 1 }}> <div style={{ flex: 1 }}>
{label && ( {label && (
<label htmlFor={id} className={styles.label}> <label htmlFor={id} className="select-field__label">
{label} {label}
</label> </label>
)} )}
<div className={styles.select({ focused: isFocused, theme })}> <div
className={cn("select-field", `select-field--${theme}`, {
"select-field__focused": isFocused,
})}
>
<select <select
id={id} id={id}
value={value} value={value}
className={styles.option} className="select-field__option"
onFocus={() => setIsFocused(true)} onFocus={() => setIsFocused(true)}
onBlur={() => setIsFocused(false)} onBlur={() => setIsFocused(false)}
onChange={onChange} onChange={onChange}

View File

@@ -1,79 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
export const profileContainer = style({
position: "relative",
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
padding: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px`,
});
export const profileButton = style({
display: "flex",
cursor: "pointer",
transition: "all ease 0.1s",
color: vars.color.muted,
width: "100%",
overflow: "hidden",
borderRadius: "4px",
padding: `${SPACING_UNIT}px ${SPACING_UNIT}px`,
":hover": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
},
});
export const profileButtonContent = style({
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT + SPACING_UNIT / 2}px`,
width: "100%",
});
export const profileButtonInformation = style({
display: "flex",
flexDirection: "column",
alignItems: "flex-start",
flex: "1",
minWidth: 0,
});
export const profileButtonTitle = style({
fontWeight: "bold",
fontSize: vars.size.body,
width: "100%",
textAlign: "left",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
});
export const friendsButton = style({
color: vars.color.muted,
cursor: "pointer",
borderRadius: "50%",
width: "40px",
minWidth: "40px",
minHeight: "40px",
height: "40px",
backgroundColor: vars.color.background,
position: "relative",
transition: "all ease 0.3s",
":hover": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
},
});
export const friendsButtonBadge = style({
backgroundColor: vars.color.success,
display: "flex",
justifyContent: "center",
alignItems: "center",
width: "20px",
height: "20px",
borderRadius: "50%",
position: "absolute",
top: "-5px",
right: "-5px",
});

View File

@@ -0,0 +1,79 @@
@use "../../scss/variables" as vars;
.sidebar-profile {
position: relative;
display: flex;
align-items: center;
gap: vars.$spacing-unit;
padding: vars.$spacing-unit vars.$spacing-unit * 2;
&__button {
display: flex;
cursor: pointer;
transition: all ease 0.1s;
color: vars.$muted-color;
width: 100%;
overflow: hidden;
border-radius: 4px;
padding: vars.$spacing-unit vars.$spacing-unit;
&:hover {
background-color: rgba(255, 255, 255, 0.15);
}
}
&__button-content {
display: flex;
align-items: center;
gap: calc(vars.$spacing-unit + vars.$spacing-unit / 2);
width: 100%;
}
&__button-information {
display: flex;
flex-direction: column;
align-items: flex-start;
flex: 1;
min-width: 0;
}
&__button-title {
font-weight: bold;
font-size: 14px;
width: 100%;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
&__friends-button {
color: vars.$muted-color;
cursor: pointer;
border-radius: 50%;
width: 40px;
min-width: 40px;
min-height: 40px;
height: 40px;
background-color: vars.$background-color;
position: relative;
transition: all ease 0.3s;
&:hover {
background-color: rgba(255, 255, 255, 0.15);
}
}
&__friends-button-badge {
background-color: vars.$success-color;
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
border-radius: 50%;
position: absolute;
top: -5px;
right: -5px;
}
}

View File

@@ -1,6 +1,5 @@
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
import { PeopleIcon } from "@primer/octicons-react"; import { PeopleIcon } from "@primer/octicons-react";
import * as styles from "./sidebar-profile.css";
import { useAppSelector, useUserDetails } from "@renderer/hooks"; import { useAppSelector, useUserDetails } from "@renderer/hooks";
import { useEffect, useMemo } from "react"; import { useEffect, useMemo } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
@@ -8,6 +7,7 @@ import { UserFriendModalTab } from "@renderer/pages/shared-modals/user-friend-mo
import SteamLogo from "@renderer/assets/steam-logo.svg?react"; import SteamLogo from "@renderer/assets/steam-logo.svg?react";
import { Avatar } from "../avatar/avatar"; import { Avatar } from "../avatar/avatar";
import { AuthPage } from "@shared"; import { AuthPage } from "@shared";
import "./sidebar-profile.scss";
const LONG_POLLING_INTERVAL = 120_000; const LONG_POLLING_INTERVAL = 120_000;
@@ -50,14 +50,14 @@ export function SidebarProfile() {
return ( return (
<button <button
type="button" type="button"
className={styles.friendsButton} className="sidebar-profile__friends-button"
onClick={() => onClick={() =>
showFriendsModal(UserFriendModalTab.AddFriend, userDetails.id) showFriendsModal(UserFriendModalTab.AddFriend, userDetails.id)
} }
title={t("friends")} title={t("friends")}
> >
{friendRequestCount > 0 && ( {friendRequestCount > 0 && (
<small className={styles.friendsButtonBadge}> <small className="sidebar-profile__friends-button-badge">
{friendRequestCount > 99 ? "99+" : friendRequestCount} {friendRequestCount > 99 ? "99+" : friendRequestCount}
</small> </small>
)} )}
@@ -85,21 +85,21 @@ export function SidebarProfile() {
}; };
return ( return (
<div className={styles.profileContainer}> <div className="sidebar-profile">
<button <button
type="button" type="button"
className={styles.profileButton} className="sidebar-profile__button"
onClick={handleProfileClick} onClick={handleProfileClick}
> >
<div className={styles.profileButtonContent}> <div className="sidebar-profile__button-content">
<Avatar <Avatar
size={35} size={35}
src={userDetails?.profileImageUrl} src={userDetails?.profileImageUrl}
alt={userDetails?.displayName} alt={userDetails?.displayName}
/> />
<div className={styles.profileButtonInformation}> <div className="sidebar-profile__button-information">
<p className={styles.profileButtonTitle}> <p className="sidebar-profile__button-title">
{userDetails ? userDetails.displayName : t("sign_in")} {userDetails ? userDetails.displayName : t("sign_in")}
</p> </p>

View File

@@ -1,152 +0,0 @@
import { style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const sidebar = recipe({
base: {
backgroundColor: vars.color.darkBackground,
color: vars.color.muted,
flexDirection: "column",
display: "flex",
transition: "opacity ease 0.2s",
borderRight: `solid 1px ${vars.color.border}`,
position: "relative",
overflow: "hidden",
justifyContent: "space-between",
},
variants: {
resizing: {
true: {
opacity: vars.opacity.active,
pointerEvents: "none",
},
},
darwin: {
true: {
paddingTop: `${SPACING_UNIT * 6}px`,
},
false: {
paddingTop: `${SPACING_UNIT}px`,
},
},
},
});
export const content = style({
display: "flex",
flexDirection: "column",
padding: `${SPACING_UNIT * 2}px`,
gap: `${SPACING_UNIT * 2}px`,
width: "100%",
overflow: "auto",
});
export const handle = style({
width: "5px",
height: "100%",
cursor: "col-resize",
position: "absolute",
right: "0",
});
export const menu = style({
listStyle: "none",
padding: "0",
margin: "0",
gap: `${SPACING_UNIT / 2}px`,
display: "flex",
flexDirection: "column",
overflow: "hidden",
});
export const menuItem = recipe({
base: {
transition: "all ease 0.1s",
cursor: "pointer",
textWrap: "nowrap",
display: "flex",
color: vars.color.muted,
borderRadius: "4px",
":hover": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
},
},
variants: {
active: {
true: {
backgroundColor: "rgba(255, 255, 255, 0.1)",
},
},
muted: {
true: {
opacity: vars.opacity.disabled,
":hover": {
opacity: "1",
},
},
},
},
});
export const menuItemButton = style({
color: "inherit",
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
cursor: "pointer",
overflow: "hidden",
width: "100%",
padding: `9px ${SPACING_UNIT}px`,
});
export const menuItemButtonLabel = style({
textOverflow: "ellipsis",
overflow: "hidden",
});
export const gameIcon = style({
width: "20px",
height: "20px",
minWidth: "20px",
minHeight: "20px",
borderRadius: "4px",
backgroundSize: "cover",
});
export const sectionTitle = style({
textTransform: "uppercase",
fontWeight: "bold",
});
export const section = style({
gap: `${SPACING_UNIT * 2}px`,
display: "flex",
flexDirection: "column",
paddingBottom: `${SPACING_UNIT}px`,
});
export const helpButton = style({
color: vars.color.muted,
padding: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px`,
gap: "9px",
display: "flex",
alignItems: "center",
cursor: "pointer",
borderTop: `solid 1px ${vars.color.border}`,
transition: "background-color ease 0.1s",
":hover": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
},
});
export const helpButtonIcon = style({
background: "linear-gradient(0deg, #16B195 50%, #3E62C0 100%)",
width: "24px",
height: "24px",
display: "flex",
alignItems: "center",
justifyContent: "center",
color: "#fff",
borderRadius: "50%",
});

View File

@@ -0,0 +1,136 @@
@use "../../scss/variables" as vars;
.sidebar {
background-color: vars.$dark-background-color;
color: vars.$muted-color;
flex-direction: column;
display: flex;
transition: opacity ease 0.2s;
border-right: solid 1px vars.$border-color;
position: relative;
overflow: hidden;
padding-top: vars.$spacing-unit;
&__resizing {
opacity: vars.$active-opacity;
pointer-events: none;
}
&__darwin {
padding-top: calc(vars.$spacing-unit * 6);
}
&__content {
display: flex;
flex-direction: column;
padding: calc(vars.$spacing-unit * 2);
gap: calc(vars.$spacing-unit * 2);
width: 100%;
overflow: auto;
}
&__handle {
width: 5px;
height: 100%;
cursor: col-resize;
position: absolute;
right: 0;
}
&__menu {
list-style: none;
padding: 0;
margin: 0;
gap: calc(vars.$spacing-unit / 2);
display: flex;
flex-direction: column;
overflow: hidden;
}
&__menu-item {
transition: all ease 0.1s;
cursor: pointer;
text-wrap: nowrap;
display: flex;
color: vars.$muted-color;
border-radius: 4px;
&:hover {
background-color: rgba(255, 255, 255, 0.15);
}
&--active {
background-color: rgba(255, 255, 255, 0.1);
}
&--muted {
opacity: vars.$disabled-opacity;
&:hover {
opacity: 1;
}
}
}
&__menu-item-button {
color: inherit;
display: flex;
align-items: center;
gap: vars.$spacing-unit;
cursor: pointer;
overflow: hidden;
width: 100%;
padding: 9px vars.$spacing-unit;
}
&__menu-item-button-label {
text-overflow: ellipsis;
overflow: hidden;
}
&__game-icon {
width: 20px;
height: 20px;
min-width: 20px;
min-height: 20px;
border-radius: 4px;
background-size: cover;
}
&__section-title {
text-transform: uppercase;
font-weight: bold;
}
&__section {
gap: calc(vars.$spacing-unit * 2);
display: flex;
flex-direction: column;
padding-bottom: vars.$spacing-unit;
}
&__help-button {
color: vars.$muted-color;
padding: vars.$spacing-unit calc(vars.$spacing-unit * 2);
gap: 9px;
display: flex;
align-items: center;
cursor: pointer;
border-top: solid 1px vars.$border-color;
transition: background-color ease 0.1s;
&:hover {
background-color: rgba(255, 255, 255, 0.15);
}
}
&__help-button-icon {
background: linear-gradient(0deg, #16b195 50%, #3e62c0 100%);
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
border-radius: 50%;
}
}

View File

@@ -14,12 +14,14 @@ import {
import { routes } from "./routes"; import { routes } from "./routes";
import * as styles from "./sidebar.css"; import "./sidebar.scss";
import { buildGameDetailsPath } from "@renderer/helpers"; import { buildGameDetailsPath } from "@renderer/helpers";
import SteamLogo from "@renderer/assets/steam-logo.svg?react"; import SteamLogo from "@renderer/assets/steam-logo.svg?react";
import { SidebarProfile } from "./sidebar-profile"; import { SidebarProfile } from "./sidebar-profile";
import { sortBy } from "lodash-es"; import { sortBy } from "lodash-es";
import cn from "classnames";
import { CommentDiscussionIcon } from "@primer/octicons-react"; import { CommentDiscussionIcon } from "@primer/octicons-react";
const SIDEBAR_MIN_WIDTH = 200; const SIDEBAR_MIN_WIDTH = 200;
@@ -168,9 +170,9 @@ export function Sidebar() {
return ( return (
<aside <aside
ref={sidebarRef} ref={sidebarRef}
className={styles.sidebar({ className={cn("sidebar", {
resizing: isResizing, sidebar__resizing: isResizing,
darwin: window.electron.platform === "darwin", sidebar__darwin: window.electron.platform === "darwin",
})} })}
style={{ style={{
width: sidebarWidth, width: sidebarWidth,
@@ -183,19 +185,19 @@ export function Sidebar() {
> >
<SidebarProfile /> <SidebarProfile />
<div className={styles.content}> <div className="sidebar__content">
<section className={styles.section}> <section className="sidebar__section">
<ul className={styles.menu}> <ul className="sidebar__menu">
{routes.map(({ nameKey, path, render }) => ( {routes.map(({ nameKey, path, render }) => (
<li <li
key={nameKey} key={nameKey}
className={styles.menuItem({ className={cn("sidebar__menu-item", {
active: location.pathname === path, "sidebar__menu-item--active": location.pathname === path,
})} })}
> >
<button <button
type="button" type="button"
className={styles.menuItemButton} className="sidebar__menu-item-button"
onClick={() => handleSidebarItemClick(path)} onClick={() => handleSidebarItemClick(path)}
> >
{render()} {render()}
@@ -206,8 +208,8 @@ export function Sidebar() {
</ul> </ul>
</section> </section>
<section className={styles.section}> <section className="sidebar__section">
<small className={styles.sectionTitle}>{t("my_library")}</small> <small className="sidebar__section-title">{t("my_library")}</small>
<TextField <TextField
ref={filterRef} ref={filterRef}
@@ -216,34 +218,34 @@ export function Sidebar() {
theme="dark" theme="dark"
/> />
<ul className={styles.menu}> <ul className="sidebar__menu">
{filteredLibrary.map((game) => ( {filteredLibrary.map((game) => (
<li <li
key={game.id} key={game.id}
className={styles.menuItem({ className={cn("sidebar__menu-item", {
active: "sidebar__menu-item--active":
location.pathname === location.pathname ===
`/game/${game.shop}/${game.objectID}`, `/game/${game.shop}/${game.objectID}`,
muted: game.status === "removed", "sidebar__menu-item--muted": game.status === "removed",
})} })}
> >
<button <button
type="button" type="button"
className={styles.menuItemButton} className="sidebar__menu-item-button"
onClick={(event) => handleSidebarGameClick(event, game)} onClick={(event) => handleSidebarGameClick(event, game)}
> >
{game.iconUrl ? ( {game.iconUrl ? (
<img <img
className={styles.gameIcon} className="sidebar__game-icon"
src={game.iconUrl} src={game.iconUrl}
alt={game.title} alt={game.title}
loading="lazy" loading="lazy"
/> />
) : ( ) : (
<SteamLogo className={styles.gameIcon} /> <SteamLogo className="sidebar__game-icon" />
)} )}
<span className={styles.menuItemButtonLabel}> <span className="sidebar__menu-item-button-label">
{getGameTitle(game)} {getGameTitle(game)}
</span> </span>
</button> </button>
@@ -257,10 +259,10 @@ export function Sidebar() {
{hasActiveSubscription && ( {hasActiveSubscription && (
<button <button
type="button" type="button"
className={styles.helpButton} className="sidebar__help-button"
data-open-support-chat data-open-support-chat
> >
<div className={styles.helpButtonIcon}> <div className="sidebar__help-button-icon">
<CommentDiscussionIcon size={14} /> <CommentDiscussionIcon size={14} />
</div> </div>
<span>{t("need_help")}</span> <span>{t("need_help")}</span>
@@ -269,7 +271,7 @@ export function Sidebar() {
<button <button
type="button" type="button"
className={styles.handle} className="sidebar__handle"
onMouseDown={handleMouseDown} onMouseDown={handleMouseDown}
/> />
</aside> </aside>

View File

@@ -1,89 +0,0 @@
import { style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const textFieldContainer = style({
flex: "1",
gap: `${SPACING_UNIT}px`,
display: "flex",
flexDirection: "column",
});
export const textField = recipe({
base: {
display: "inline-flex",
transition: "all ease 0.2s",
width: "100%",
alignItems: "center",
borderRadius: "8px",
border: `solid 1px ${vars.color.border}`,
height: "40px",
minHeight: "40px",
},
variants: {
theme: {
primary: {
backgroundColor: vars.color.darkBackground,
},
dark: {
backgroundColor: vars.color.background,
},
},
hasError: {
true: {
borderColor: vars.color.danger,
},
},
focused: {
true: {
borderColor: "#DADBE1",
},
false: {
":hover": {
borderColor: "rgba(255, 255, 255, 0.5)",
},
},
},
},
});
export const textFieldInput = recipe({
base: {
backgroundColor: "transparent",
border: "none",
width: "100%",
height: "100%",
outline: "none",
color: "#DADBE1",
cursor: "default",
fontFamily: "inherit",
textOverflow: "ellipsis",
padding: `${SPACING_UNIT}px`,
":focus": {
cursor: "text",
},
},
variants: {
readOnly: {
true: {
textOverflow: "inherit",
},
},
},
});
export const togglePasswordButton = style({
cursor: "pointer",
color: vars.color.muted,
padding: `${SPACING_UNIT}px`,
});
export const textFieldWrapper = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
});
export const errorLabel = style({
color: vars.color.danger,
});

View File

@@ -0,0 +1,75 @@
@use "../../scss/variables" as vars;
.text-field-container {
flex: 1;
gap: vars.$spacing-unit;
display: flex;
flex-direction: column;
}
.text-field {
display: inline-flex;
transition: all ease 0.2s;
width: 100%;
align-items: center;
border-radius: 8px;
border: solid 1px vars.$border-color;
height: 40px;
min-height: 40px;
&__primary {
background-color: vars.$dark-background-color;
}
&__dark {
background-color: vars.$background-color;
}
&__has-error {
border-color: vars.$danger-color;
}
&--focused {
border-color: vars.$search-border-color-focused;
}
&:not(&--focused):hover {
border-color: vars.$search-border-color-hover;
}
&__input {
background-color: transparent;
border: none;
width: 100%;
height: 100%;
outline: none;
color: vars.$search-input-color;
cursor: default;
font-family: inherit;
text-overflow: ellipsis;
padding: vars.$spacing-unit;
&:focus {
cursor: text;
}
&__read-only {
text-overflow: inherit;
}
}
&__toggle-password-button {
cursor: pointer;
color: vars.$muted-color;
padding: vars.$spacing-unit;
}
&__wrapper {
display: flex;
gap: vars.$spacing-unit;
}
&__error-label {
color: vars.$danger-color;
}
}

View File

@@ -1,16 +1,16 @@
import React, { useId, useMemo, useState } from "react"; import React, { useId, useMemo, useState } from "react";
import type { RecipeVariants } from "@vanilla-extract/recipes";
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 * as styles from "./text-field.css"; import "./text-field.scss";
export interface TextFieldProps export interface TextFieldProps
extends React.DetailedHTMLProps< extends React.DetailedHTMLProps<
React.InputHTMLAttributes<HTMLInputElement>, React.InputHTMLAttributes<HTMLInputElement>,
HTMLInputElement HTMLInputElement
> { > {
theme?: NonNullable<RecipeVariants<typeof styles.textField>>["theme"]; theme?: "primary" | "dark";
label?: string | React.ReactNode; label?: string | React.ReactNode;
hint?: string | React.ReactNode; hint?: string | React.ReactNode;
textFieldProps?: React.DetailedHTMLProps< textFieldProps?: React.DetailedHTMLProps<
@@ -41,9 +41,7 @@ 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";
@@ -54,7 +52,12 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
}, [props.type, isPasswordVisible]); }, [props.type, isPasswordVisible]);
const hintContent = useMemo(() => { const hintContent = useMemo(() => {
if (error) return <small className={styles.errorLabel}>{error}</small>; if (error && typeof error === "object" && "message" in error)
return (
<small className="text-field__error-label">
{error.message as string}
</small>
);
if (hint) return <small>{hint}</small>; if (hint) return <small>{hint}</small>;
return null; return null;
@@ -73,22 +76,23 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
const hasError = !!error; const hasError = !!error;
return ( return (
<div className={styles.textFieldContainer} {...containerProps}> <div className="text-field-container" {...containerProps}>
{label && <label htmlFor={id}>{label}</label>} {label && <label htmlFor={id}>{label}</label>}
<div className={styles.textFieldWrapper}> <div className="text-field__wrapper">
<div <div
className={styles.textField({ className={cn("text-field", `text-field__${theme}`, {
theme, "text-field__has-error": hasError,
hasError, "text-field--focused": isFocused,
focused: isFocused,
})} })}
{...textFieldProps} {...textFieldProps}
> >
<input <input
ref={ref} ref={ref}
id={id} id={id}
className={styles.textFieldInput({ readOnly: props.readOnly })} className={cn("text-field__input", {
"text-field__input__read-only": props.readOnly,
})}
{...props} {...props}
onFocus={handleFocus} onFocus={handleFocus}
onBlur={handleBlur} onBlur={handleBlur}
@@ -98,7 +102,7 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
{showPasswordToggleButton && ( {showPasswordToggleButton && (
<button <button
type="button" type="button"
className={styles.togglePasswordButton} className="text-field__toggle-password-button"
onClick={() => setIsPasswordVisible(!isPasswordVisible)} onClick={() => setIsPasswordVisible(!isPasswordVisible)}
aria-label={t("toggle_password_visibility")} aria-label={t("toggle_password_visibility")}
> >
@@ -120,4 +124,4 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
} }
); );
TextField.displayName = "TextField"; TextField.displayName = "TextField";

View File

@@ -1,87 +0,0 @@
import { keyframes, style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
import { recipe } from "@vanilla-extract/recipes";
const TOAST_HEIGHT = 80;
export const slideIn = keyframes({
"0%": { transform: `translateY(${TOAST_HEIGHT + SPACING_UNIT * 2}px)` },
"100%": { transform: "translateY(0)" },
});
export const slideOut = keyframes({
"0%": { transform: `translateY(0)` },
"100%": { transform: `translateY(${TOAST_HEIGHT + SPACING_UNIT * 2}px)` },
});
export const toast = recipe({
base: {
animationDuration: "0.2s",
animationTimingFunction: "ease-in-out",
maxHeight: TOAST_HEIGHT,
position: "fixed",
backgroundColor: vars.color.background,
borderRadius: "4px",
border: `solid 1px ${vars.color.border}`,
right: `${SPACING_UNIT * 2}px`,
/* Bottom panel height + 16px */
bottom: `${26 + SPACING_UNIT * 2}px`,
overflow: "hidden",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
zIndex: vars.zIndex.toast,
maxWidth: "500px",
},
variants: {
closing: {
true: {
animationName: slideOut,
transform: `translateY(${TOAST_HEIGHT + SPACING_UNIT * 2}px)`,
},
false: {
animationName: slideIn,
transform: `translateY(0)`,
},
},
},
});
export const toastContent = style({
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
padding: `${SPACING_UNIT * 2}px ${SPACING_UNIT * 2}px`,
justifyContent: "center",
alignItems: "center",
});
export const progress = style({
width: "100%",
height: "5px",
"::-webkit-progress-bar": {
backgroundColor: vars.color.darkBackground,
},
"::-webkit-progress-value": {
backgroundColor: vars.color.muted,
},
});
export const closeButton = style({
color: vars.color.body,
cursor: "pointer",
padding: "0",
margin: "0",
});
export const successIcon = style({
color: vars.color.success,
});
export const errorIcon = style({
color: vars.color.danger,
});
export const warningIcon = style({
color: vars.color.warning,
});

View File

@@ -0,0 +1,92 @@
@use "../../scss/variables" as vars;
@keyframes slideIn {
0% {
transform: translateY(96px);
}
100% {
transform: translateY(0);
}
}
@keyframes slideOut {
0% {
transform: translateY(0);
}
100% {
transform: translateY(96px);
}
}
.toast {
animation-duration: 0.2s;
animation-timing-function: ease-in-out;
max-height: 80px;
position: fixed;
background-color: vars.$background-color;
border-radius: 4px;
border: solid 1px vars.$border-color;
right: vars.$spacing-unit * 2;
bottom: 42px;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: vars.$toast-z-index;
max-width: 500px;
&--closing {
animation-name: slideOut;
transform: translateY(96px);
}
&--opening {
animation-name: slideIn;
transform: translateY(0);
}
&__content {
display: flex;
gap: vars.$spacing-unit * 2;
padding: vars.$spacing-unit * 2;
justify-content: center;
align-items: center;
}
&__progress {
width: 100%;
height: 5px;
&::-webkit-progress-bar {
background-color: vars.$dark-background-color;
}
&::-webkit-progress-value {
background-color: vars.$muted-color;
}
}
&__close-button {
color: vars.$body-color;
cursor: pointer;
padding: 0;
margin: 0;
}
&__icon-container {
display: flex;
gap: var(--spacing-unit);
}
&__success-icon {
color: vars.$success-color;
}
&__error-icon {
color: vars.$danger-color;
}
&__warning-icon {
color: vars.$warning-color;
}
}

View File

@@ -6,8 +6,8 @@ import {
XIcon, XIcon,
} from "@primer/octicons-react"; } from "@primer/octicons-react";
import * as styles from "./toast.css"; import "./toast.scss";
import { SPACING_UNIT } from "@renderer/theme.css"; import cn from "classnames";
export interface ToastProps { export interface ToastProps {
visible: boolean; visible: boolean;
@@ -77,22 +77,28 @@ export function Toast({ visible, message, type, onClose }: ToastProps) {
if (!visible) return null; if (!visible) return null;
return ( return (
<div className={styles.toast({ closing: isClosing })}> <div
<div className={styles.toastContent}> className={cn("toast", {
<div style={{ display: "flex", gap: `${SPACING_UNIT}px` }}> toast__closing: isClosing,
})}
>
<div className="toast__content">
<div className="toast__icon-container">
{type === "success" && ( {type === "success" && (
<CheckCircleFillIcon className={styles.successIcon} /> <CheckCircleFillIcon className="toast__success-icon" />
)} )}
{type === "error" && <XCircleFillIcon className={styles.errorIcon} />} {type === "error" && (
<XCircleFillIcon className="toast__error-icon" />
)}
{type === "warning" && <AlertIcon className={styles.warningIcon} />} {type === "warning" && <AlertIcon className="toast__warning-icon" />}
<span style={{ fontWeight: "bold" }}>{message}</span> <span style={{ fontWeight: "bold" }}>{message}</span>
</div> </div>
<button <button
type="button" type="button"
className={styles.closeButton} className="toast__close-button"
onClick={startAnimateClosing} onClick={startAnimateClosing}
aria-label="Close toast" aria-label="Close toast"
> >
@@ -100,7 +106,7 @@ export function Toast({ visible, message, type, onClose }: ToastProps) {
</button> </button>
</div> </div>
<progress className={styles.progress} value={progress} max={100} /> <progress className="toast__progress" value={progress} max={100} />
</div> </div>
); );
} }

View File

@@ -260,6 +260,9 @@ declare global {
/* Notifications */ /* Notifications */
publishNewRepacksNotification: (newRepacksCount: number) => Promise<void>; publishNewRepacksNotification: (newRepacksCount: number) => Promise<void>;
/* Editor */
openEditorWindow: () => Promise<void>;
} }
interface Window { interface Window {

View File

@@ -30,6 +30,7 @@ const Downloads = React.lazy(() => import("./pages/downloads/downloads"));
const Settings = React.lazy(() => import("./pages/settings/settings")); const Settings = React.lazy(() => import("./pages/settings/settings"));
const Catalogue = React.lazy(() => import("./pages/catalogue/catalogue")); const Catalogue = React.lazy(() => import("./pages/catalogue/catalogue"));
const Profile = React.lazy(() => import("./pages/profile/profile")); const Profile = React.lazy(() => import("./pages/profile/profile"));
const Editor = React.lazy(() => import("./pages/editor/editor"));
const Achievements = React.lazy( const Achievements = React.lazy(
() => import("./pages/achievements/achievements") () => import("./pages/achievements/achievements")
); );
@@ -104,6 +105,11 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
element={<SuspenseWrapper Component={Achievements} />} element={<SuspenseWrapper Component={Achievements} />}
/> />
</Route> </Route>
<Route
path="/editor"
element={<SuspenseWrapper Component={Editor} />}
/>
</Routes> </Routes>
</HashRouter> </HashRouter>
</Provider> </Provider>

View File

@@ -1,11 +1,12 @@
import { useDate } from "@renderer/hooks"; import { useDate } from "@renderer/hooks";
import type { UserAchievement } from "@types"; import type { UserAchievement } from "@types";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import * as styles from "./achievements.css";
import { EyeClosedIcon } from "@primer/octicons-react"; import { EyeClosedIcon } from "@primer/octicons-react";
import HydraIcon from "@renderer/assets/icons/hydra.svg?react"; import HydraIcon from "@renderer/assets/icons/hydra.svg?react";
import { useSubscription } from "@renderer/hooks/use-subscription"; import { useSubscription } from "@renderer/hooks/use-subscription";
import { vars } from "@renderer/theme.css"; import classNames from "classnames";
import "./achievements.scss";
import "../../scss/_variables.scss";
interface AchievementListProps { interface AchievementListProps {
achievements: UserAchievement[]; achievements: UserAchievement[];
@@ -17,16 +18,16 @@ export function AchievementList({ achievements }: AchievementListProps) {
const { formatDateTime } = useDate(); const { formatDateTime } = useDate();
return ( return (
<ul className={styles.list}> <ul className="achievements__list">
{achievements.map((achievement) => ( {achievements.map((achievement) => (
<li <li
key={achievement.name} key={achievement.name}
className={styles.listItem} className="achievements__list-item"
style={{ display: "flex" }} style={{ display: "flex" }}
> >
<img <img
className={styles.listItemImage({ className={classNames("achievements__list-item-image", {
unlocked: achievement.unlocked, "achievements__list-item-image--unlocked": achievement.unlocked,
})} })}
src={achievement.icon} src={achievement.icon}
alt={achievement.displayName} alt={achievement.displayName}
@@ -66,7 +67,7 @@ export function AchievementList({ achievements }: AchievementListProps) {
alignItems: "center", alignItems: "center",
gap: "4px", gap: "4px",
cursor: "pointer", cursor: "pointer",
color: vars.color.warning, color: "var(--warning-color)",
}} }}
title={t("achievement_earn_points", { title={t("achievement_earn_points", {
points: "???", points: "???",

View File

@@ -1,71 +0,0 @@
import { style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
import { SPACING_UNIT, vars } from "../../theme.css";
export const panel = style({
width: "100%",
padding: `${SPACING_UNIT * 2}px ${SPACING_UNIT * 3}px`,
backgroundColor: vars.color.background,
display: "flex",
flexDirection: "column",
alignItems: "start",
justifyContent: "space-between",
borderBottom: `solid 1px ${vars.color.border}`,
});
export const content = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
justifyContent: "center",
});
export const actions = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
});
export const downloadDetailsRow = style({
gap: `${SPACING_UNIT}px`,
display: "flex",
color: vars.color.body,
alignItems: "center",
});
export const downloadsLink = style({
color: vars.color.body,
textDecoration: "underline",
});
export const progressBar = recipe({
base: {
position: "absolute",
bottom: "0",
left: "0",
width: "100%",
height: "3px",
transition: "all ease 0.2s",
"::-webkit-progress-bar": {
backgroundColor: "transparent",
},
"::-webkit-progress-value": {
backgroundColor: vars.color.muted,
},
},
variants: {
disabled: {
true: {
opacity: vars.opacity.disabled,
},
},
},
});
export const link = style({
textAlign: "start",
color: vars.color.body,
":hover": {
textDecoration: "underline",
cursor: "pointer",
},
});

View File

@@ -0,0 +1,66 @@
@use "../../scss/variables" as vars;
.achievement-panel {
width: 100%;
padding: #{vars.$spacing-unit * 2} #{vars.$spacing-unit * 3};
background-color: vars.$background-color;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
border-bottom: solid 1px vars.$border-color;
&__content {
display: flex;
gap: vars.$spacing-unit;
justify-content: center;
}
&__actions {
display: flex;
gap: vars.$spacing-unit;
}
&__download-details-row {
gap: vars.$spacing-unit;
display: flex;
color: vars.$body-color;
align-items: center;
}
&__downloads-link {
color: vars.$body-color;
text-decoration: underline;
}
&__progress-bar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
transition: all ease 0.2s;
&::-webkit-progress-bar {
background-color: transparent;
}
&::-webkit-progress-value {
background-color: vars.$muted-color;
}
&--disabled {
opacity: vars.$disabled-opacity;
}
}
&__link {
text-align: start;
color: vars.$body-color;
&:hover {
text-decoration: underline;
cursor: pointer;
}
}
}

View File

@@ -3,8 +3,8 @@ import HydraIcon from "@renderer/assets/icons/hydra.svg?react";
import { UserAchievement } from "@types"; import { UserAchievement } from "@types";
import { useSubscription } from "@renderer/hooks/use-subscription"; import { useSubscription } from "@renderer/hooks/use-subscription";
import { useUserDetails } from "@renderer/hooks"; import { useUserDetails } from "@renderer/hooks";
import { vars } from "@renderer/theme.css";
import * as styles from "./achievement-panel.css"; import "./achievement-panel.scss";
export interface AchievementPanelProps { export interface AchievementPanelProps {
achievements: UserAchievement[]; achievements: UserAchievement[];
@@ -28,17 +28,17 @@ export function AchievementPanel({ achievements }: AchievementPanelProps) {
if (!hasActiveSubscription) { if (!hasActiveSubscription) {
return ( return (
<div className={styles.panel}> <div className="achievement-panel">
<div className={styles.content}> <div className="achievement-panel__content">
{t("earned_points")} <HydraIcon width={20} height={20} /> {t("earned_points")} <HydraIcon width={20} height={20} />
??? / ??? ??? / ???
</div> </div>
<button <button
type="button" type="button"
onClick={() => showHydraCloudModal("achievements-points")} onClick={() => showHydraCloudModal("achievements-points")}
className={styles.link} className="achievement-panel__link"
> >
<small style={{ color: vars.color.warning }}> <small style={{ color: "#ffc107" }}>
{t("how_to_earn_achievements_points")} {t("how_to_earn_achievements_points")}
</small> </small>
</button> </button>
@@ -47,8 +47,8 @@ export function AchievementPanel({ achievements }: AchievementPanelProps) {
} }
return ( return (
<div className={styles.panel}> <div className="achievement-panel">
<div className={styles.content}> <div className="achievement-panel__content">
{t("earned_points")} <HydraIcon width={20} height={20} /> {t("earned_points")} <HydraIcon width={20} height={20} />
{achievementsPointsEarnedSum} / {achievementsPointsTotal} {achievementsPointsEarnedSum} / {achievementsPointsTotal}
</div> </div>

View File

@@ -8,18 +8,19 @@ import {
formatDownloadProgress, formatDownloadProgress,
} from "@renderer/helpers"; } from "@renderer/helpers";
import { LockIcon, PersonIcon, TrophyIcon } from "@primer/octicons-react"; import { LockIcon, PersonIcon, TrophyIcon } from "@primer/octicons-react";
import { SPACING_UNIT, vars } from "@renderer/theme.css";
import { gameDetailsContext } from "@renderer/context"; import { gameDetailsContext } from "@renderer/context";
import type { ComparedAchievements } from "@types"; import type { ComparedAchievements } from "@types";
import { average } from "color.js"; import { average } from "color.js";
import Color from "color"; import Color from "color";
import { Link } from "@renderer/components"; import { Link } from "@renderer/components";
import { ComparedAchievementList } from "./compared-achievement-list"; import { ComparedAchievementList } from "./compared-achievement-list";
import * as styles from "./achievements.css";
import { AchievementList } from "./achievement-list"; import { AchievementList } from "./achievement-list";
import { AchievementPanel } from "./achievement-panel"; import { AchievementPanel } from "./achievement-panel";
import { ComparedAchievementPanel } from "./compared-achievement-panel"; import { ComparedAchievementPanel } from "./compared-achievement-panel";
import { useSubscription } from "@renderer/hooks/use-subscription"; import { useSubscription } from "@renderer/hooks/use-subscription";
import classNames from "classnames";
import "./achievements.scss";
import "../../scss/_variables.scss";
interface UserInfo { interface UserInfo {
id: string; id: string;
@@ -48,10 +49,10 @@ function AchievementSummary({ user, isComparison }: AchievementSummaryProps) {
user: Pick<UserInfo, "profileImageUrl" | "displayName"> user: Pick<UserInfo, "profileImageUrl" | "displayName">
) => { ) => {
return ( return (
<div className={styles.profileAvatar}> <div className="achievements__profile-avatar">
{user.profileImageUrl ? ( {user.profileImageUrl ? (
<img <img
className={styles.profileAvatar} className="achievements__profile-avatar"
src={user.profileImageUrl} src={user.profileImageUrl}
alt={user.displayName} alt={user.displayName}
/> />
@@ -64,97 +65,38 @@ function AchievementSummary({ user, isComparison }: AchievementSummaryProps) {
if (isComparison && userDetails?.id == user.id && !hasActiveSubscription) { if (isComparison && userDetails?.id == user.id && !hasActiveSubscription) {
return ( return (
<div <div className="achievements__summary achievements__summary--locked">
style={{ <div className="achievements__summary-overlay">
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
alignItems: "center",
position: "relative",
padding: `${SPACING_UNIT}px`,
}}
>
<div
style={{
position: "absolute",
zIndex: 2,
inset: 0,
width: "100%",
height: "100%",
background: "rgba(0, 0, 0, 0.7)",
display: "flex",
alignItems: "center",
flexDirection: "row",
gap: `${SPACING_UNIT}px`,
borderRadius: "4px",
justifyContent: "center",
}}
>
<LockIcon size={24} /> <LockIcon size={24} />
<h3> <h3>
<button <button
className={styles.subscriptionRequiredButton} className="achievements__subscription-required-button"
onClick={() => showHydraCloudModal("achievements")} onClick={() => showHydraCloudModal("achievements")}
> >
{t("subscription_needed")} {t("subscription_needed")}
</button> </button>
</h3> </h3>
</div> </div>
<div <div className="achievements__summary-content achievements__summary-content--blurred">
style={{
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
alignItems: "center",
height: "62px",
position: "relative",
filter: "blur(4px)",
}}
>
{getProfileImage(user)} {getProfileImage(user)}
<h1 style={{ marginBottom: "8px" }}>{user.displayName}</h1> <h1 className="achievements__summary-title">{user.displayName}</h1>
</div> </div>
</div> </div>
); );
} }
return ( return (
<div <div className="achievements__summary">
style={{
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
alignItems: "center",
padding: `${SPACING_UNIT}px`,
}}
>
{getProfileImage(user)} {getProfileImage(user)}
<div <div className="achievements__summary-details">
style={{ <h1 className="achievements__summary-title">{user.displayName}</h1>
display: "flex", <div className="achievements__summary-stats">
flexDirection: "column", <div className="achievements__summary-count">
width: "100%",
}}
>
<h1 style={{ marginBottom: "8px" }}>{user.displayName}</h1>
<div
style={{
display: "flex",
justifyContent: "space-between",
marginBottom: 8,
color: vars.color.muted,
}}
>
<div
style={{
display: "flex",
alignItems: "center",
gap: 8,
}}
>
<TrophyIcon size={13} /> <TrophyIcon size={13} />
<span> <span>
{user.unlockedAchievementCount} / {user.totalAchievementCount} {user.unlockedAchievementCount} / {user.totalAchievementCount}
</span> </span>
</div> </div>
<span> <span>
{formatDownloadProgress( {formatDownloadProgress(
user.unlockedAchievementCount / user.totalAchievementCount user.unlockedAchievementCount / user.totalAchievementCount
@@ -164,7 +106,7 @@ function AchievementSummary({ user, isComparison }: AchievementSummaryProps) {
<progress <progress
max={1} max={1}
value={user.unlockedAchievementCount / user.totalAchievementCount} value={user.unlockedAchievementCount / user.totalAchievementCount}
className={styles.achievementsProgressBar} className="achievements__progress-bar"
/> />
</div> </div>
</div> </div>
@@ -201,9 +143,10 @@ export function AchievementsContent({
setGameColor(backgroundColor); setGameColor(backgroundColor);
}; };
const HERO_HEIGHT = 150;
const onScroll: React.UIEventHandler<HTMLElement> = (event) => { const onScroll: React.UIEventHandler<HTMLElement> = (event) => {
const heroHeight = heroRef.current?.clientHeight ?? styles.HERO_HEIGHT; const heroHeight = heroRef.current?.clientHeight ?? HERO_HEIGHT;
const scrollY = (event.target as HTMLDivElement).scrollTop; const scrollY = (event.target as HTMLDivElement).scrollTop;
if (scrollY >= heroHeight && !isHeaderStuck) { if (scrollY >= heroHeight && !isHeaderStuck) {
@@ -219,10 +162,10 @@ export function AchievementsContent({
user: Pick<UserInfo, "profileImageUrl" | "displayName"> user: Pick<UserInfo, "profileImageUrl" | "displayName">
) => { ) => {
return ( return (
<div className={styles.profileAvatarSmall}> <div className="achievements__profile-avatar-small">
{user.profileImageUrl ? ( {user.profileImageUrl ? (
<img <img
className={styles.profileAvatarSmall} className="achievements__profile-avatar-small"
src={user.profileImageUrl} src={user.profileImageUrl}
alt={user.displayName} alt={user.displayName}
/> />
@@ -236,10 +179,10 @@ export function AchievementsContent({
if (!objectId || !shop || !gameTitle || !userDetails) return null; if (!objectId || !shop || !gameTitle || !userDetails) return null;
return ( return (
<div className={styles.wrapper}> <div className="achievements__wrapper">
<img <img
src={steamUrlBuilder.libraryHero(objectId)} src={steamUrlBuilder.libraryHero(objectId)}
style={{ display: "none" }} className="achievements__hidden-image"
alt={gameTitle} alt={gameTitle}
onLoad={handleHeroLoad} onLoad={handleHeroLoad}
/> />
@@ -247,38 +190,29 @@ export function AchievementsContent({
<section <section
ref={containerRef} ref={containerRef}
onScroll={onScroll} onScroll={onScroll}
className={styles.container} className="achievements__container"
> >
<div <div
className="achievements__gradient-background"
style={{ style={{
display: "flex", background: `linear-gradient(0deg, #1c1c1c 0%, ${gameColor} 100%)`,
flexDirection: "column",
background: `linear-gradient(0deg, ${vars.color.darkBackground} 0%, ${gameColor} 100%)`,
}} }}
> >
<div ref={heroRef} className={styles.hero}> <div ref={heroRef} className="achievements__hero">
<div className={styles.heroContent}> <div className="achievements__hero-content">
<Link <Link
to={buildGameDetailsPath({ shop, objectId, title: gameTitle })} to={buildGameDetailsPath({ shop, objectId, title: gameTitle })}
> >
<img <img
src={steamUrlBuilder.logo(objectId)} src={steamUrlBuilder.logo(objectId)}
className={styles.gameLogo} className="achievements__game-logo"
alt={gameTitle} alt={gameTitle}
/> />
</Link> </Link>
</div> </div>
</div> </div>
<div <div className="achievements__summary-container">
style={{
display: "flex",
flexDirection: "column",
width: "100%",
gap: `${SPACING_UNIT}px`,
padding: `${SPACING_UNIT}px`,
}}
>
<AchievementSummary <AchievementSummary
user={{ user={{
...userDetails, ...userDetails,
@@ -298,24 +232,24 @@ export function AchievementsContent({
</div> </div>
{otherUser && ( {otherUser && (
<div className={styles.tableHeader({ stuck: isHeaderStuck })}> <div
className={classNames("achievements__table-header", {
"achievements__table-header--stuck": isHeaderStuck,
})}
>
<div <div
style={{ className={classNames("achievements__grid-container", {
display: "grid", "achievements__grid-container--no-subscription":
gridTemplateColumns: hasActiveSubscription !hasActiveSubscription,
? "3fr 1fr 1fr" })}
: "3fr 2fr",
gap: `${SPACING_UNIT * 2}px`,
padding: `${SPACING_UNIT}px ${SPACING_UNIT * 3}px`,
}}
> >
<div></div> <div></div>
{hasActiveSubscription && ( {hasActiveSubscription && (
<div style={{ display: "flex", justifyContent: "center" }}> <div className="achievements__profile-center">
{getProfileImage({ ...userDetails })} {getProfileImage({ ...userDetails })}
</div> </div>
)} )}
<div style={{ display: "flex", justifyContent: "center" }}> <div className="achievements__profile-center">
{getProfileImage(otherUser)} {getProfileImage(otherUser)}
</div> </div>
</div> </div>

View File

@@ -1,13 +1,13 @@
import Skeleton from "react-loading-skeleton"; import Skeleton from "react-loading-skeleton";
import * as styles from "./achievements.css"; import "./achievements.scss";
export function AchievementsSkeleton() { export function AchievementsSkeleton() {
return ( return (
<div className={styles.container}> <div className="achievements__container">
<div className={styles.hero}> <div className="achievements__hero">
<Skeleton className={styles.heroImageSkeleton} /> <Skeleton className="achievements__hero-image-skeleton" />
</div> </div>
<div className={styles.heroPanelSkeleton}></div> <div className="achievements__hero-panel-skeleton"></div>
</div> </div>
); );
} }

View File

@@ -1,197 +0,0 @@
import { SPACING_UNIT, vars } from "../../theme.css";
import { style } from "@vanilla-extract/css";
import { recipe } from "@vanilla-extract/recipes";
export const HERO_HEIGHT = 150;
const LOGO_HEIGHT = 100;
const LOGO_MAX_WIDTH = 200;
export const wrapper = style({
display: "flex",
flexDirection: "column",
overflow: "hidden",
width: "100%",
height: "100%",
transition: "all ease 0.3s",
});
export const hero = style({
width: "100%",
height: `${HERO_HEIGHT}px`,
minHeight: `${HERO_HEIGHT}px`,
display: "flex",
flexDirection: "column",
position: "relative",
transition: "all ease 0.2s",
});
export const heroContent = style({
padding: `${SPACING_UNIT * 2}px`,
width: "100%",
display: "flex",
justifyContent: "space-between",
alignItems: "center",
});
export const gameLogo = style({
width: LOGO_MAX_WIDTH,
height: LOGO_HEIGHT,
objectFit: "contain",
transition: "all ease 0.2s",
":hover": {
transform: "scale(1.05)",
},
});
export const container = style({
width: "100%",
height: "100%",
display: "flex",
flexDirection: "column",
overflow: "auto",
zIndex: "1",
});
export const tableHeader = recipe({
base: {
width: "100%",
backgroundColor: vars.color.darkBackground,
transition: "all ease 0.2s",
borderBottom: `solid 1px ${vars.color.border}`,
position: "sticky",
top: "0",
zIndex: "1",
},
variants: {
stuck: {
true: {
boxShadow: "0px 0px 15px 0px rgba(0, 0, 0, 0.8)",
},
},
},
});
export const list = style({
listStyle: "none",
margin: "0",
display: "flex",
flexDirection: "column",
gap: `${SPACING_UNIT * 2}px`,
padding: `${SPACING_UNIT * 2}px`,
width: "100%",
backgroundColor: vars.color.background,
});
export const listItem = style({
transition: "all ease 0.1s",
color: vars.color.muted,
width: "100%",
overflow: "hidden",
borderRadius: "4px",
padding: `${SPACING_UNIT}px ${SPACING_UNIT}px`,
gap: `${SPACING_UNIT * 2}px`,
alignItems: "center",
textAlign: "left",
":hover": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
textDecoration: "none",
},
});
export const listItemImage = recipe({
base: {
width: "54px",
height: "54px",
borderRadius: "4px",
objectFit: "cover",
},
variants: {
unlocked: {
false: {
filter: "grayscale(100%)",
},
},
},
});
export const achievementsProgressBar = style({
width: "100%",
height: "8px",
transition: "all ease 0.2s",
"::-webkit-progress-bar": {
backgroundColor: "rgba(255, 255, 255, 0.15)",
borderRadius: "4px",
},
"::-webkit-progress-value": {
backgroundColor: vars.color.muted,
borderRadius: "4px",
},
});
export const heroLogoBackdrop = style({
width: "100%",
height: "100%",
position: "absolute",
display: "flex",
flexDirection: "column",
justifyContent: "flex-end",
});
export const heroImageSkeleton = style({
height: "150px",
});
export const heroPanelSkeleton = style({
width: "100%",
padding: `${SPACING_UNIT * 2}px ${SPACING_UNIT * 2}px`,
display: "flex",
alignItems: "center",
backgroundColor: vars.color.background,
height: "72px",
borderBottom: `solid 1px ${vars.color.border}`,
});
export const listItemSkeleton = style({
width: "100%",
overflow: "hidden",
borderRadius: "4px",
padding: `${SPACING_UNIT}px ${SPACING_UNIT}px`,
gap: `${SPACING_UNIT * 2}px`,
});
export const profileAvatar = style({
height: "54px",
width: "54px",
borderRadius: "4px",
display: "flex",
justifyContent: "center",
alignItems: "center",
backgroundColor: vars.color.background,
position: "relative",
objectFit: "cover",
});
export const profileAvatarSmall = style({
height: "32px",
width: "32px",
borderRadius: "4px",
display: "flex",
justifyContent: "center",
alignItems: "center",
backgroundColor: vars.color.background,
position: "relative",
objectFit: "cover",
});
export const subscriptionRequiredButton = style({
textDecoration: "none",
display: "flex",
justifyContent: "center",
width: "100%",
gap: `${SPACING_UNIT / 2}px`,
color: vars.color.body,
cursor: "pointer",
":hover": {
textDecoration: "underline",
},
});

View File

@@ -0,0 +1,188 @@
@use "../../scss/variables" as vars;
.achievements {
&__wrapper {
display: flex;
flex-direction: column;
overflow: hidden;
width: 100%;
height: 100%;
transition: all ease 0.3s;
}
&__hero {
width: 100%;
height: vars.$hero-sub-height;
min-height: vars.$hero-sub-height;
display: flex;
flex-direction: column;
position: relative;
transition: all ease 0.2s;
}
&__hero-content {
padding: #{vars.$spacing-unit * 2};
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
&__game-logo {
width: vars.$logo-max-width;
height: vars.$logo-height;
object-fit: contain;
transition: all ease 0.2s;
&:hover {
transform: scale(1.05);
}
}
&__container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
overflow: auto;
z-index: 1;
}
&__table-header {
width: 100%;
background-color: vars.$dark-background-color;
transition: all ease 0.2s;
border-bottom: solid 1px vars.$border-color;
position: sticky;
top: 0;
z-index: 1;
&--stuck {
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
}
}
&__list {
list-style: none;
margin: 0;
display: flex;
flex-direction: column;
gap: #{vars.$spacing-unit * 2};
padding: #{vars.$spacing-unit * 2};
width: 100%;
background-color: vars.$background-color;
}
&__list-item {
transition: all ease 0.1s;
color: vars.$muted-color;
width: 100%;
overflow: hidden;
border-radius: 4px;
padding: vars.$spacing-unit;
gap: #{vars.$spacing-unit * 2};
align-items: center;
text-align: left;
&:hover {
background-color: rgba(255, 255, 255, 0.15);
text-decoration: none;
}
}
&__list-item-image {
width: 54px;
height: 54px;
border-radius: 4px;
object-fit: cover;
&--unlocked {
filter: grayscale(100%);
}
}
&__achievements-progress-bar {
width: 100%;
height: 8px;
transition: all ease 0.2s;
&::-webkit-progress-bar {
background-color: rgba(255, 255, 255, 0.15);
border-radius: 4px;
}
&::-webkit-progress-value {
background-color: vars.$muted-color;
border-radius: 4px;
}
}
&__hero-logo-backdrop {
width: 100%;
height: 100%;
position: absolute;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
&__hero-image-skeleton {
height: 150px;
}
&__hero-panel-skeleton {
width: 100%;
padding: #{vars.$spacing-unit * 2};
display: flex;
align-items: center;
background-color: vars.$background-color;
height: 72px;
border-bottom: solid 1px vars.$border-color;
}
&__list-item-skeleton {
width: 100%;
overflow: hidden;
border-radius: 4px;
padding: vars.$spacing-unit;
gap: #{vars.$spacing-unit * 2};
}
&__profile-avatar {
height: 54px;
width: 54px;
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
background-color: vars.$background-color;
position: relative;
object-fit: cover;
}
&__profile-avatar-small {
height: 32px;
width: 32px;
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
background-color: vars.$background-color;
position: relative;
object-fit: cover;
}
&__subscription-required-button {
text-decoration: none;
display: flex;
justify-content: center;
width: 100%;
gap: calc(vars.$spacing-unit / 2);
color: vars.$body-color;
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}

View File

@@ -3,7 +3,8 @@ import { useAppDispatch, useUserDetails } from "@renderer/hooks";
import type { ComparedAchievements, GameShop } from "@types"; import type { ComparedAchievements, GameShop } from "@types";
import { useEffect, useMemo, useState } from "react"; import { useEffect, useMemo, useState } from "react";
import { useSearchParams } from "react-router-dom"; import { useSearchParams } from "react-router-dom";
import { vars } from "@renderer/theme.css";
import "./achievements.scss";
import { import {
GameDetailsContextConsumer, GameDetailsContextConsumer,
GameDetailsContextProvider, GameDetailsContextProvider,
@@ -75,10 +76,7 @@ export default function Achievements() {
(otherUserId && comparedAchievements === null); (otherUserId && comparedAchievements === null);
return ( return (
<SkeletonTheme <SkeletonTheme baseColor="var(--background-color)" highlightColor="#444">
baseColor={vars.color.background}
highlightColor="#444"
>
{showSkeleton ? ( {showSkeleton ? (
<AchievementsSkeleton /> <AchievementsSkeleton />
) : ( ) : (

View File

@@ -1,13 +1,14 @@
import type { ComparedAchievements } from "@types"; import type { ComparedAchievements } from "@types";
import * as styles from "./achievements.css";
import { import {
CheckCircleIcon, CheckCircleIcon,
EyeClosedIcon, EyeClosedIcon,
LockIcon, LockIcon,
} from "@primer/octicons-react"; } from "@primer/octicons-react";
import { useDate } from "@renderer/hooks"; import { useDate } from "@renderer/hooks";
import { SPACING_UNIT } from "@renderer/theme.css";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import classNames from "classnames";
import "./achievements.scss";
import "../../scss/_variables.scss";
export interface ComparedAchievementListProps { export interface ComparedAchievementListProps {
achievements: ComparedAchievements; achievements: ComparedAchievements;
@@ -20,11 +21,11 @@ export function ComparedAchievementList({
const { formatDateTime } = useDate(); const { formatDateTime } = useDate();
return ( return (
<ul className={styles.list}> <ul className="achievements__list">
{achievements.achievements.map((achievement, index) => ( {achievements.achievements.map((achievement, index) => (
<li <li
key={index} key={index}
className={styles.listItem} className="achievements__list-item"
style={{ style={{
display: "grid", display: "grid",
gridTemplateColumns: achievement.ownerStat gridTemplateColumns: achievement.ownerStat
@@ -37,12 +38,14 @@ export function ComparedAchievementList({
display: "flex", display: "flex",
flexDirection: "row", flexDirection: "row",
alignItems: "center", alignItems: "center",
gap: `${SPACING_UNIT}px`, gap: `var(--spacing-unit)`,
}} }}
> >
<img <img
className={styles.listItemImage({ className={classNames("achievements__list-item-image", {
unlocked: true, "achievements__list-item-image--unlocked":
achievement.ownerStat?.unlocked ||
achievement.targetStat.unlocked,
})} })}
src={achievement.icon} src={achievement.icon}
alt={achievement.displayName} alt={achievement.displayName}
@@ -71,7 +74,7 @@ export function ComparedAchievementList({
whiteSpace: "nowrap", whiteSpace: "nowrap",
display: "flex", display: "flex",
flexDirection: "row", flexDirection: "row",
gap: `${SPACING_UNIT}px`, gap: `var(--spacing-unit)`,
justifyContent: "center", justifyContent: "center",
}} }}
title={formatDateTime(achievement.ownerStat.unlockTime!)} title={formatDateTime(achievement.ownerStat.unlockTime!)}
@@ -82,7 +85,7 @@ export function ComparedAchievementList({
<div <div
style={{ style={{
display: "flex", display: "flex",
padding: `${SPACING_UNIT}px`, padding: `var(--spacing-unit)`,
justifyContent: "center", justifyContent: "center",
}} }}
> >
@@ -97,7 +100,7 @@ export function ComparedAchievementList({
whiteSpace: "nowrap", whiteSpace: "nowrap",
display: "flex", display: "flex",
flexDirection: "row", flexDirection: "row",
gap: `${SPACING_UNIT}px`, gap: `var(--spacing-unit)`,
justifyContent: "center", justifyContent: "center",
}} }}
title={formatDateTime(achievement.targetStat.unlockTime!)} title={formatDateTime(achievement.targetStat.unlockTime!)}
@@ -108,7 +111,7 @@ export function ComparedAchievementList({
<div <div
style={{ style={{
display: "flex", display: "flex",
padding: `${SPACING_UNIT}px`, padding: `var(--spacing-unit)`,
justifyContent: "center", justifyContent: "center",
}} }}
> >

View File

@@ -1,10 +1,12 @@
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import * as styles from "./achievement-panel.css";
import HydraIcon from "@renderer/assets/icons/hydra.svg?react"; import HydraIcon from "@renderer/assets/icons/hydra.svg?react";
import { ComparedAchievements } from "@types"; import { ComparedAchievements } from "@types";
import { SPACING_UNIT } from "@renderer/theme.css";
import { useUserDetails } from "@renderer/hooks"; import { useUserDetails } from "@renderer/hooks";
import classNames from "classnames";
import "./achievement-panel.scss";
import "../../scss/_variables.scss";
export interface ComparedAchievementPanelProps { export interface ComparedAchievementPanelProps {
achievements: ComparedAchievements; achievements: ComparedAchievements;
@@ -18,24 +20,24 @@ export function ComparedAchievementPanel({
return ( return (
<div <div
className={styles.panel} className={classNames("achievement-panel", {
style={{ "achievement-panel--subscribed": hasActiveSubscription,
display: "grid", })}
gridTemplateColumns: hasActiveSubscription ? "3fr 1fr 1fr" : "3fr 2fr",
gap: `${SPACING_UNIT * 2}px`,
}}
> >
<div style={{ display: "flex", gap: `${SPACING_UNIT}px` }}> <div className="achievement-panel__points">
{t("available_points")} <HydraIcon width={20} height={20} />{" "} {t("available_points")}
<HydraIcon width={20} height={20} />
{achievements.achievementsPointsTotal} {achievements.achievementsPointsTotal}
</div> </div>
{hasActiveSubscription && ( {hasActiveSubscription && (
<div className={styles.content}> <div className="achievement-panel__content">
<HydraIcon width={20} height={20} /> <HydraIcon width={20} height={20} />
{achievements.owner.achievementsPointsEarnedSum ?? 0} {achievements.owner.achievementsPointsEarnedSum ?? 0}
</div> </div>
)} )}
<div className={styles.content}>
<div className="achievement-panel__content">
<HydraIcon width={20} height={20} /> <HydraIcon width={20} height={20} />
{achievements.target.achievementsPointsEarnedSum} {achievements.target.achievementsPointsEarnedSum}
</div> </div>

View File

@@ -1,10 +1,10 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.catalogue { .catalogue {
overflow-y: auto; overflow-y: auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: calc(globals.$spacing-unit * 2); gap: calc(vars.$spacing-unit * 2);
width: 100%; width: 100%;
padding: 16px; padding: 16px;
scroll-behavior: smooth; scroll-behavior: smooth;
@@ -13,10 +13,16 @@
width: 270px; width: 270px;
min-width: 270px; min-width: 270px;
max-width: 270px; max-width: 270px;
background-color: globals.$dark-background-color; background-color: vars.$dark-background-color;
border-radius: 4px; border-radius: 4px;
padding: 16px; padding: 16px;
border: 1px solid globals.$border-color; border: 1px solid vars.$border-color;
align-self: flex-start; align-self: flex-start;
} }
&__header {
display: flex;
gap: calc(var(--spacing-unit) * 2);
justify-content: space-between;
}
} }

View File

@@ -9,8 +9,8 @@ import {
import { useEffect, useMemo, useRef, useState } from "react"; import { useEffect, useMemo, useRef, useState } from "react";
import "./catalogue.scss"; import "./catalogue.scss";
import "../../scss/_variables.scss";
import { SPACING_UNIT, vars } from "@renderer/theme.css";
import { downloadSourcesTable } from "@renderer/dexie"; import { downloadSourcesTable } from "@renderer/dexie";
import { FilterSection } from "./filter-section"; import { FilterSection } from "./filter-section";
import { setFilters, setPage } from "@renderer/features"; import { setFilters, setPage } from "@renderer/features";
@@ -270,13 +270,7 @@ export default function Catalogue() {
</div> </div>
</div> </div>
<div <div className="catalogue__header">
style={{
display: "flex",
gap: SPACING_UNIT * 2,
justifyContent: "space-between",
}}
>
<div <div
style={{ style={{
display: "flex", display: "flex",
@@ -287,8 +281,8 @@ export default function Catalogue() {
> >
{isLoading ? ( {isLoading ? (
<SkeletonTheme <SkeletonTheme
baseColor={vars.color.darkBackground} baseColor="var(--dark-background-color)"
highlightColor={vars.color.background} highlightColor="var(--background-color)"
> >
{Array.from({ length: PAGE_SIZE }).map((_, i) => ( {Array.from({ length: PAGE_SIZE }).map((_, i) => (
<Skeleton <Skeleton
@@ -296,7 +290,7 @@ export default function Catalogue() {
style={{ style={{
height: 105, height: 105,
borderRadius: 4, borderRadius: 4,
border: `solid 1px ${vars.color.border}`, border: `solid 1px var(--border-color)`,
}} }}
/> />
))} ))}

View File

@@ -1,5 +1,5 @@
import { vars } from "@renderer/theme.css";
import { XIcon } from "@primer/octicons-react"; import { XIcon } from "@primer/octicons-react";
import "../../scss/_variables.scss";
interface FilterItemProps { interface FilterItemProps {
filter: string; filter: string;
@@ -13,11 +13,11 @@ export function FilterItem({ filter, orbColor, onRemove }: FilterItemProps) {
style={{ style={{
display: "flex", display: "flex",
alignItems: "center", alignItems: "center",
color: vars.color.body, color: "var(--body-color)",
backgroundColor: vars.color.darkBackground, backgroundColor: "var(--dark-background-color",
padding: "6px 12px", padding: "6px 12px",
borderRadius: 4, borderRadius: 4,
border: `solid 1px ${vars.color.border}`, border: `solid 1px var(--border-color)`,
fontSize: 12, fontSize: 12,
}} }}
> >
@@ -35,7 +35,7 @@ export function FilterItem({ filter, orbColor, onRemove }: FilterItemProps) {
type="button" type="button"
onClick={onRemove} onClick={onRemove}
style={{ style={{
color: vars.color.body, color: "var(--body-color)",
marginLeft: 4, marginLeft: 4,
display: "flex", display: "flex",
alignItems: "center", alignItems: "center",

View File

@@ -3,8 +3,8 @@ import { useFormat } from "@renderer/hooks";
import { useCallback, useMemo, useState } from "react"; import { useCallback, useMemo, useState } from "react";
import List from "rc-virtual-list"; import List from "rc-virtual-list";
import { vars } from "@renderer/theme.css";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import "../../scss/_variables.scss";
export interface FilterSectionProps { export interface FilterSectionProps {
title: string; title: string;
@@ -80,7 +80,7 @@ export function FilterSection({
fontSize: 12, fontSize: 12,
marginBottom: 12, marginBottom: 12,
display: "block", display: "block",
color: vars.color.body, color: "var(--body-color)",
cursor: "pointer", cursor: "pointer",
textDecoration: "underline", textDecoration: "underline",
}} }}

View File

@@ -1,7 +1,7 @@
@use "../../scss/globals.scss"; @use "../../scss/variables" as vars;
.game-item { .game-item {
background-color: globals.$dark-background-color; background-color: vars.$dark-background-color;
width: 100%; width: 100%;
color: #fff; color: #fff;
display: flex; display: flex;
@@ -9,9 +9,9 @@
overflow: hidden; overflow: hidden;
position: relative; position: relative;
border-radius: 4px; border-radius: 4px;
border: 1px solid globals.$border-color; border: 1px solid vars.$border-color;
cursor: pointer; cursor: pointer;
gap: calc(globals.$spacing-unit * 2); gap: calc(vars.$spacing-unit * 2);
transition: all ease 0.2s; transition: all ease 0.2s;
&:hover { &:hover {
@@ -22,7 +22,7 @@
width: 200px; width: 200px;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
border-right: 1px solid globals.$border-color; border-right: 1px solid vars.$border-color;
} }
&__details { &__details {
@@ -30,11 +30,11 @@
flex-direction: column; flex-direction: column;
align-items: flex-start; align-items: flex-start;
gap: 4px; gap: 4px;
padding: calc(globals.$spacing-unit * 2) 0; padding: calc(vars.$spacing-unit * 2) 0;
} }
&__genres { &__genres {
color: globals.$body-color; color: vars.$body-color;
font-size: 12px; font-size: 12px;
text-align: left; text-align: left;
margin-bottom: 4px; margin-bottom: 4px;
@@ -42,7 +42,7 @@
&__repackers { &__repackers {
display: flex; display: flex;
gap: globals.$spacing-unit; gap: vars.$spacing-unit;
flex-wrap: wrap; flex-wrap: wrap;
} }
} }

View File

@@ -1,11 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT } from "../../theme.css";
export const deleteActionsButtonsCtn = style({
display: "flex",
width: "100%",
justifyContent: "end",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
});

View File

@@ -0,0 +1,11 @@
@use "../../scss/variables" as vars;
.delete-game-modal {
&__actions-buttons-ctn {
display: flex;
width: 100%;
justify-content: end;
align-items: center;
gap: vars.$spacing-unit;
}
}

View File

@@ -2,7 +2,7 @@ import { useTranslation } from "react-i18next";
import { Button, Modal } from "@renderer/components"; import { Button, Modal } from "@renderer/components";
import * as styles from "./delete-game-modal.css"; import "./delete-game-modal.scss";
interface DeleteGameModalProps { interface DeleteGameModalProps {
visible: boolean; visible: boolean;
@@ -29,7 +29,7 @@ export function DeleteGameModal({
description={t("delete_modal_description")} description={t("delete_modal_description")}
onClose={onClose} onClose={onClose}
> >
<div className={styles.deleteActionsButtonsCtn}> <div className="delete-game-modal__actions-buttons-ctn">
<Button onClick={handleDeleteGame} theme="outline"> <Button onClick={handleDeleteGame} theme="outline">
{t("delete")} {t("delete")}
</Button> </Button>

View File

@@ -1,109 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../theme.css";
export const downloadTitleWrapper = style({
display: "flex",
alignItems: "center",
marginBottom: `${SPACING_UNIT}px`,
gap: `${SPACING_UNIT}px`,
});
export const downloadTitle = style({
fontWeight: "bold",
cursor: "pointer",
color: vars.color.body,
textAlign: "left",
fontSize: "16px",
display: "block",
":hover": {
textDecoration: "underline",
},
});
export const downloads = style({
width: "100%",
gap: `${SPACING_UNIT * 2}px`,
display: "flex",
flexDirection: "column",
margin: "0",
padding: "0",
marginTop: `${SPACING_UNIT}px`,
});
export const downloadCover = style({
width: "280px",
minWidth: "280px",
height: "auto",
borderRight: `solid 1px ${vars.color.border}`,
position: "relative",
zIndex: "1",
});
export const downloadCoverContent = style({
width: "100%",
height: "100%",
padding: `${SPACING_UNIT}px`,
display: "flex",
alignItems: "flex-end",
justifyContent: "flex-end",
});
export const downloadCoverBackdrop = style({
width: "100%",
height: "100%",
background: "linear-gradient(0deg, rgba(0, 0, 0, 0.8) 5%, transparent 100%)",
display: "flex",
overflow: "hidden",
zIndex: "1",
});
export const downloadCoverImage = style({
width: "100%",
height: "100%",
position: "absolute",
zIndex: "-1",
});
export const download = style({
width: "100%",
backgroundColor: vars.color.background,
display: "flex",
borderRadius: "8px",
border: `solid 1px ${vars.color.border}`,
overflow: "hidden",
boxShadow: "0px 0px 5px 0px #000000",
transition: "all ease 0.2s",
height: "140px",
minHeight: "140px",
maxHeight: "140px",
});
export const downloadDetails = style({
display: "flex",
flexDirection: "column",
flex: "1",
justifyContent: "center",
gap: `${SPACING_UNIT / 2}px`,
fontSize: "14px",
});
export const downloadRightContent = style({
display: "flex",
padding: `${SPACING_UNIT * 2}px`,
flex: "1",
gap: `${SPACING_UNIT}px`,
background: "linear-gradient(90deg, transparent 20%, rgb(0 0 0 / 20%) 100%)",
});
export const downloadActions = style({
display: "flex",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
});
export const downloadGroup = style({
display: "flex",
flexDirection: "column",
gap: `${SPACING_UNIT * 2}px`,
});

View File

@@ -0,0 +1,117 @@
@use "../../scss/variables" as vars;
.download-group {
&__title-wrapper {
display: flex;
align-items: center;
margin-bottom: vars.$spacing-unit;
gap: vars.$spacing-unit;
}
&__title {
font-weight: bold;
cursor: pointer;
color: vars.$body-color;
text-align: left;
font-size: 16px;
display: block;
&:hover {
text-decoration: underline;
}
}
&__downloads-group {
display: flex;
align-items: center;
justify-content: space-between;
gap: vars.$spacing-unit * 2;
}
&__downloads {
width: 100%;
gap: #{vars.$spacing-unit * 2};
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
margin-top: vars.$spacing-unit;
}
&__cover {
width: 280px;
min-width: 280px;
height: auto;
border-right: solid 1px vars.$border-color;
position: relative;
z-index: 1;
}
&__cover-content {
width: 100%;
height: 100%;
padding: vars.$spacing-unit;
display: flex;
align-items: flex-end;
justify-content: flex-end;
}
&__cover-backdrop {
width: 100%;
height: 100%;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 5%, transparent 100%);
display: flex;
overflow: hidden;
z-index: 1;
}
&__cover-image {
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
}
&__download {
width: 100%;
background-color: vars.$background-color;
display: flex;
border-radius: 8px;
border: solid 1px vars.$border-color;
overflow: hidden;
box-shadow: 0px 0px 5px 0px #000000;
transition: all ease 0.2s;
height: 140px;
min-height: 140px;
max-height: 140px;
}
&__details {
display: flex;
flex-direction: column;
flex: 1;
justify-content: center;
gap: calc(vars.$spacing-unit / 2);
font-size: 14px;
}
&__right-content {
display: flex;
padding: #{vars.$spacing-unit * 2};
flex: 1;
gap: vars.$spacing-unit;
background: linear-gradient(90deg, transparent 20%, rgb(0 0 0 / 20%) 100%);
}
&__actions {
display: flex;
align-items: center;
gap: vars.$spacing-unit;
}
&__group {
display: flex;
flex-direction: column;
gap: #{vars.$spacing-unit * 2};
}
}

View File

@@ -12,9 +12,10 @@ import { Downloader, formatBytes, steamUrlBuilder } from "@shared";
import { DOWNLOADER_NAME } from "@renderer/constants"; import { DOWNLOADER_NAME } from "@renderer/constants";
import { useAppSelector, useDownload } from "@renderer/hooks"; import { useAppSelector, useDownload } from "@renderer/hooks";
import * as styles from "./download-group.css"; import "./download-group.scss";
import "../../scss/_variables.scss";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { SPACING_UNIT, vars } from "@renderer/theme.css";
import { useMemo } from "react"; import { useMemo } from "react";
import { import {
DropdownMenu, DropdownMenu,
@@ -238,54 +239,47 @@ export function DownloadGroup({
if (!library.length) return null; if (!library.length) return null;
return ( return (
<div className={styles.downloadGroup}> <div className="download-group">
<div <div className="download-group__downloads-group">
style={{
display: "flex",
alignItems: "center",
justifyContent: "space-between",
gap: `${SPACING_UNIT * 2}px`,
}}
>
<h2>{title}</h2> <h2>{title}</h2>
<div <div
style={{ style={{
flex: 1, flex: 1,
backgroundColor: vars.color.border, backgroundColor: "var(--border-color)",
height: "1px", height: "1px",
}} }}
/> />
<h3 style={{ fontWeight: "400" }}>{library.length}</h3> <h3 style={{ fontWeight: "400" }}>{library.length}</h3>
</div> </div>
<ul className={styles.downloads}> <ul className="download-group__downloads">
{library.map((game) => { {library.map((game) => {
return ( return (
<li <li
key={game.id} key={game.id}
className={styles.download} className="download-group__download"
style={{ position: "relative" }} style={{ position: "relative" }}
> >
<div className={styles.downloadCover}> <div className="download-group__cover">
<div className={styles.downloadCoverBackdrop}> <div className="download-group__cover-backdrop">
<img <img
src={steamUrlBuilder.library(game.objectID)} src={steamUrlBuilder.library(game.objectID)}
className={styles.downloadCoverImage} className="download-group__cover-image"
alt={game.title} alt={game.title}
/> />
<div className={styles.downloadCoverContent}> <div className="download-group__cover-content">
<Badge>{DOWNLOADER_NAME[game.downloader]}</Badge> <Badge>{DOWNLOADER_NAME[game.downloader]}</Badge>
</div> </div>
</div> </div>
</div> </div>
<div className={styles.downloadRightContent}> <div className="download-group__right-content">
<div className={styles.downloadDetails}> <div className="download-group__details">
<div className={styles.downloadTitleWrapper}> <div className="download-group__title-wrapper">
<button <button
type="button" type="button"
className={styles.downloadTitle} className="download-group__title"
onClick={() => onClick={() =>
navigate( navigate(
buildGameDetailsPath({ buildGameDetailsPath({

View File

@@ -1,37 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT } from "../../theme.css";
export const downloadsContainer = style({
display: "flex",
padding: `${SPACING_UNIT * 3}px`,
flexDirection: "column",
width: "100%",
});
export const downloadGroups = style({
display: "flex",
gap: `${SPACING_UNIT * 3}px`,
flexDirection: "column",
});
export const arrowIcon = style({
width: "60px",
height: "60px",
borderRadius: "50%",
backgroundColor: "rgba(255, 255, 255, 0.06)",
display: "flex",
alignItems: "center",
justifyContent: "center",
marginBottom: `${SPACING_UNIT * 2}px`,
});
export const noDownloads = style({
display: "flex",
width: "100%",
height: "100%",
justifyContent: "center",
alignItems: "center",
flexDirection: "column",
gap: `${SPACING_UNIT}px`,
});

View File

@@ -0,0 +1,37 @@
@use "../../scss/variables" as vars;
.downloads {
&__container {
display: flex;
padding: #{vars.$spacing-unit * 3};
flex-direction: column;
width: 100%;
}
&__groups {
display: flex;
gap: #{vars.$spacing-unit * 3};
flex-direction: column;
}
&__arrow-icon {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.06);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: #{vars.$spacing-unit * 2};
}
&__no-downloads {
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
gap: vars.$spacing-unit;
}
}

View File

@@ -4,13 +4,15 @@ import { useDownload, useLibrary } from "@renderer/hooks";
import { useEffect, useMemo, useRef, useState } from "react"; import { useEffect, useMemo, useRef, useState } from "react";
import { BinaryNotFoundModal } from "../shared-modals/binary-not-found-modal"; import { BinaryNotFoundModal } from "../shared-modals/binary-not-found-modal";
import * as styles from "./downloads.css";
import { DeleteGameModal } from "./delete-game-modal"; import { DeleteGameModal } from "./delete-game-modal";
import { DownloadGroup } from "./download-group"; import { DownloadGroup } from "./download-group";
import type { LibraryGame, SeedingStatus } from "@types"; import type { LibraryGame, SeedingStatus } from "@types";
import { orderBy } from "lodash-es"; import { orderBy } from "lodash-es";
import { ArrowDownIcon } from "@primer/octicons-react"; import { ArrowDownIcon } from "@primer/octicons-react";
import "./downloads.scss";
export default function Downloads() { export default function Downloads() {
const { library, updateLibrary } = useLibrary(); const { library, updateLibrary } = useLibrary();
@@ -121,8 +123,8 @@ export default function Downloads() {
/> />
{hasItemsInLibrary ? ( {hasItemsInLibrary ? (
<section className={styles.downloadsContainer}> <section className="downloads__container">
<div className={styles.downloadGroups}> <div className="downloads__groups">
{downloadGroups.map((group) => ( {downloadGroups.map((group) => (
<DownloadGroup <DownloadGroup
key={group.title} key={group.title}
@@ -136,8 +138,8 @@ export default function Downloads() {
</div> </div>
</section> </section>
) : ( ) : (
<div className={styles.noDownloads}> <div className="downloads__no-downloads">
<div className={styles.arrowIcon}> <div className="downloads__arrow-icon">
<ArrowDownIcon size={24} /> <ArrowDownIcon size={24} />
</div> </div>
<h2>{t("no_downloads_title")}</h2> <h2>{t("no_downloads_title")}</h2>

View File

@@ -0,0 +1,18 @@
@use "../../scss/variables" as vars;
.editor-header {
width: 100%;
height: 36px;
background-color: vars.$dark-background-color;
display: flex;
align-items: center;
justify-content: start;
padding: 0 calc(vars.$spacing-unit * 2);
-webkit-app-region: drag;
}
.editor-header-title {
font-size: 7px;
font-weight: 500;
color: vars.$body-color;
}

View File

@@ -0,0 +1,34 @@
import { useEffect } from "react";
import { SkeletonTheme } from "react-loading-skeleton";
import "./editor.scss";
import "../../scss/_variables.scss";
export default function Editor() {
useEffect(() => {
console.log("spectre");
}, []);
return (
<SkeletonTheme baseColor="var(--background-color)" highlightColor="#444">
<div className="editor-header">
<div className="editor-header-title">
<h1>CSS Editor</h1>
</div>
</div>
<div
className="editor"
style={{
height: "100%",
width: "100%",
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
}}
>
<p>spectre</p>
</div>
</SkeletonTheme>
);
}

View File

@@ -1,27 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../../theme.css";
export const mappingMethods = style({
display: "grid",
gap: `${SPACING_UNIT}px`,
gridTemplateColumns: "repeat(2, 1fr)",
});
export const fileList = style({
listStyle: "none",
margin: "0",
padding: "0",
display: "flex",
flexDirection: "column",
gap: `${SPACING_UNIT}px`,
marginTop: `${SPACING_UNIT * 2}px`,
});
export const fileItem = style({
flex: 1,
color: vars.color.muted,
textDecoration: "underline",
display: "flex",
cursor: "pointer",
});

View File

@@ -0,0 +1,27 @@
@use "../../scss/variables" as vars;
.cloud-sync-files-modal {
&__mapping-methods {
display: grid;
gap: vars.$spacing-unit;
grid-template-columns: repeat(2, 1fr);
}
&__file-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: vars.$spacing-unit;
margin-top: #{vars.$spacing-unit * 2};
}
&__file-item {
flex: 1;
color: vars.$muted-color;
text-decoration: underline;
display: flex;
cursor: pointer;
}
}

View File

@@ -4,7 +4,6 @@ import { cloudSyncContext, gameDetailsContext } from "@renderer/context";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { CheckCircleFillIcon, FileDirectoryIcon } from "@primer/octicons-react"; import { CheckCircleFillIcon, FileDirectoryIcon } from "@primer/octicons-react";
import * as styles from "./cloud-sync-files-modal.css";
import { formatBytes } from "@shared"; import { formatBytes } from "@shared";
import { useToast } from "@renderer/hooks"; import { useToast } from "@renderer/hooks";
import { useForm } from "react-hook-form"; import { useForm } from "react-hook-form";
@@ -99,7 +98,7 @@ export function CloudSyncFilesModal({
<div style={{ display: "flex", flexDirection: "column", gap: 8 }}> <div style={{ display: "flex", flexDirection: "column", gap: 8 }}>
<span style={{ marginBottom: 8 }}>{t("mapping_method_label")}</span> <span style={{ marginBottom: 8 }}>{t("mapping_method_label")}</span>
<div className={styles.mappingMethods}> <div className="clound-sync-files-modal__mapping-methods">
{Object.values(FileMappingMethod).map((mappingMethod) => ( {Object.values(FileMappingMethod).map((mappingMethod) => (
<Button <Button
key={mappingMethod} key={mappingMethod}
@@ -142,11 +141,11 @@ export function CloudSyncFilesModal({
/> />
)} )}
<ul className={styles.fileList}> <ul className="cloud-sync-files-modal__files-list">
{files.map((file) => ( {files.map((file) => (
<li key={file.path} style={{ display: "flex" }}> <li key={file.path} style={{ display: "flex" }}>
<button <button
className={styles.fileItem} className="cloud-sync-files-modal__file-item"
onClick={() => window.electron.showItemInFolder(file.path)} onClick={() => window.electron.showItemInFolder(file.path)}
> >
{file.path.split("/").at(-1)} {file.path.split("/").at(-1)}

View File

@@ -1,65 +0,0 @@
import { keyframes, style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../../theme.css";
export const rotate = keyframes({
"0%": { transform: "rotate(0deg)" },
"100%": {
transform: "rotate(360deg)",
},
});
export const artifacts = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
flexDirection: "column",
listStyle: "none",
margin: "0",
padding: "0",
});
export const artifactButton = style({
display: "flex",
textAlign: "left",
flexDirection: "row",
alignItems: "center",
gap: `${SPACING_UNIT}px`,
color: vars.color.body,
padding: `${SPACING_UNIT * 2}px`,
backgroundColor: vars.color.darkBackground,
border: `1px solid ${vars.color.border}`,
borderRadius: "4px",
justifyContent: "space-between",
});
export const syncIcon = style({
animationName: rotate,
animationDuration: "1s",
animationIterationCount: "infinite",
animationTimingFunction: "linear",
});
export const progress = style({
width: "100%",
height: "5px",
"::-webkit-progress-bar": {
backgroundColor: vars.color.darkBackground,
},
"::-webkit-progress-value": {
backgroundColor: vars.color.muted,
},
});
export const manageFilesButton = style({
margin: "0",
padding: "0",
alignSelf: "flex-start",
fontSize: 14,
cursor: "pointer",
textDecoration: "underline",
color: vars.color.body,
":disabled": {
cursor: "not-allowed",
opacity: vars.opacity.disabled,
},
});

View File

@@ -0,0 +1,70 @@
@use "../../../scss/variables" as vars;
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.cloud-sync-modal {
&__artifacts {
display: flex;
gap: vars.$spacing-unit;
flex-direction: column;
list-style: none;
margin: 0;
padding: 0;
}
&__artifact-button {
display: flex;
text-align: left;
flex-direction: row;
align-items: center;
gap: vars.$spacing-unit;
color: vars.$body-color;
padding: #{vars.$spacing-unit * 2};
background-color: vars.$dark-background-color;
border: 1px solid vars.$border-color;
border-radius: 4px;
justify-content: space-between;
}
&__sync-icon {
animation-name: rotate;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
&__progress {
width: 100%;
height: 5px;
&::-webkit-progress-bar {
background-color: vars.$dark-background-color;
}
&::-webkit-progress-value {
background-color: vars.$muted-color;
}
}
&__manage-files-button {
margin: 0;
padding: 0;
align-self: flex-start;
font-size: 14px;
cursor: pointer;
text-decoration: underline;
color: vars.$body-color;
&:disabled {
cursor: not-allowed;
opacity: vars.$disabled-opacity;
}
}
}

View File

@@ -2,7 +2,6 @@ import { Button, Modal, ModalProps } from "@renderer/components";
import { useContext, useEffect, useMemo, useState } from "react"; import { useContext, useEffect, useMemo, useState } from "react";
import { cloudSyncContext, gameDetailsContext } from "@renderer/context"; import { cloudSyncContext, gameDetailsContext } from "@renderer/context";
import * as styles from "./cloud-sync-modal.css";
import { formatBytes } from "@shared"; import { formatBytes } from "@shared";
import { format } from "date-fns"; import { format } from "date-fns";
import { import {
@@ -18,7 +17,9 @@ import { useAppSelector, useToast } from "@renderer/hooks";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { AxiosProgressEvent } from "axios"; import { AxiosProgressEvent } from "axios";
import { formatDownloadProgress } from "@renderer/helpers"; import { formatDownloadProgress } from "@renderer/helpers";
import { SPACING_UNIT } from "@renderer/theme.css";
import "./cloud-sync-modal.scss";
import "../../../scss/_variables.scss";
export interface CloudSyncModalProps export interface CloudSyncModalProps
extends Omit<ModalProps, "children" | "title"> {} extends Omit<ModalProps, "children" | "title"> {}
@@ -95,7 +96,7 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
if (uploadingBackup) { if (uploadingBackup) {
return ( return (
<span style={{ display: "flex", alignItems: "center", gap: 8 }}> <span style={{ display: "flex", alignItems: "center", gap: 8 }}>
<SyncIcon className={styles.syncIcon} /> <SyncIcon className="clound-sync-modal__sync-icon" />
{t("uploading_backup")} {t("uploading_backup")}
</span> </span>
); );
@@ -104,7 +105,7 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
if (restoringBackup) { if (restoringBackup) {
return ( return (
<span style={{ display: "flex", alignItems: "center", gap: 8 }}> <span style={{ display: "flex", alignItems: "center", gap: 8 }}>
<SyncIcon className={styles.syncIcon} /> <SyncIcon className="clound-sync-modal__sync-icon" />
{t("restoring_backup", { {t("restoring_backup", {
progress: formatDownloadProgress( progress: formatDownloadProgress(
backupDownloadProgress?.progress ?? 0 backupDownloadProgress?.progress ?? 0
@@ -117,7 +118,7 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
if (loadingPreview) { if (loadingPreview) {
return ( return (
<span style={{ display: "flex", alignItems: "center", gap: 8 }}> <span style={{ display: "flex", alignItems: "center", gap: 8 }}>
<SyncIcon className={styles.syncIcon} /> <SyncIcon className="clound-sync-modal__sync-icon" />
{t("loading_save_preview")} {t("loading_save_preview")}
</span> </span>
); );
@@ -171,7 +172,7 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
<button <button
type="button" type="button"
className={styles.manageFilesButton} className="clound-sync-modal__manage-files-button"
onClick={() => setShowCloudSyncFilesModal(true)} onClick={() => setShowCloudSyncFilesModal(true)}
disabled={disableActions} disabled={disableActions}
> >
@@ -199,7 +200,7 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
marginBottom: 16, marginBottom: 16,
display: "flex", display: "flex",
alignItems: "center", alignItems: "center",
gap: SPACING_UNIT, gap: "var(--spacing-unit)",
}} }}
> >
<h2>{t("backups")}</h2> <h2>{t("backups")}</h2>
@@ -210,9 +211,9 @@ export function CloudSyncModal({ visible, onClose }: CloudSyncModalProps) {
</div> </div>
{artifacts.length > 0 ? ( {artifacts.length > 0 ? (
<ul className={styles.artifacts}> <ul className="clound-sync-modal__artifacts">
{artifacts.map((artifact) => ( {artifacts.map((artifact) => (
<li key={artifact.id} className={styles.artifactButton}> <li key={artifact.id} className="cloud-sync-modal__artifact-button">
<div style={{ display: "flex", flexDirection: "column", gap: 4 }}> <div style={{ display: "flex", flexDirection: "column", gap: 4 }}>
<div <div
style={{ style={{

View File

@@ -1,19 +0,0 @@
import { style } from "@vanilla-extract/css";
import { SPACING_UNIT, vars } from "../../../theme.css";
export const descriptionHeader = style({
width: "100%",
padding: `${SPACING_UNIT * 2}px ${SPACING_UNIT * 2}px`,
display: "flex",
justifyContent: "space-between",
alignItems: "center",
backgroundColor: vars.color.background,
height: "72px",
});
export const descriptionHeaderInfo = style({
display: "flex",
gap: `${SPACING_UNIT}px`,
flexDirection: "column",
});

View File

@@ -0,0 +1,17 @@
@use "../../../scss/variables" as vars;
.description-header {
width: 100%;
padding: #{vars.$spacing-unit * 2};
display: flex;
justify-content: space-between;
align-items: center;
background-color: vars.$background-color;
height: 72px;
&__info {
display: flex;
gap: vars.$spacing-unit;
flex-direction: column;
}
}

View File

@@ -1,6 +1,5 @@
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import * as styles from "./description-header.css";
import { useContext } from "react"; import { useContext } from "react";
import { gameDetailsContext } from "@renderer/context"; import { gameDetailsContext } from "@renderer/context";
@@ -12,8 +11,8 @@ export function DescriptionHeader() {
if (!shopDetails) return null; if (!shopDetails) return null;
return ( return (
<div className={styles.descriptionHeader}> <div className="description-header">
<section className={styles.descriptionHeaderInfo}> <section className="description-header__info">
<p> <p>
{t("release_date", { {t("release_date", {
date: shopDetails?.release_date.date, date: shopDetails?.release_date.date,

Some files were not shown because too many files have changed in this diff Show More