Compare commits

..

No commits in common. "756ae1be582e31f48a4676213b3d1ca3005d0bc6" and "1adb1b7dec69f1fa82971f4f75e95cfef78c4dbf" have entirely different histories.

9 changed files with 61 additions and 149 deletions

42
main.js
View File

@ -18,11 +18,7 @@ function isDev() {
function registerIPCPipes() {
ipcMain.handle("ezpplauncher:login", async (e, args) => {
const timeout = new AbortController();
const timeoutId = setTimeout(() => timeout.abort(), 8000);
try {
const fetchResult = await fetch("https://ez-pp.farm/login/check", {
signal: timeout.signal,
method: "POST",
body: JSON.stringify({
username: args.username,
@ -33,8 +29,6 @@ function registerIPCPipes() {
},
});
clearTimeout(timeoutId);
if (fetchResult.ok) {
const result = await fetchResult.json();
if ("user" in result) {
@ -50,12 +44,6 @@ function registerIPCPipes() {
code: 500,
message: "Something went wrong while logging you in.",
};
} catch (err) {
return {
code: 500,
message: "Something went wrong while logging you in.",
};
}
});
ipcMain.handle("ezpplauncher:autologin", async (e) => {
@ -66,11 +54,7 @@ function registerIPCPipes() {
if (username == undefined || password == undefined) {
return { code: 200, message: "No autologin" };
}
const timeout = new AbortController();
const timeoutId = setTimeout(() => timeout.abort(), 8000);
try {
const fetchResult = await fetch("https://ez-pp.farm/login/check", {
signal: timeout.signal,
method: "POST",
body: JSON.stringify({
username: username,
@ -81,8 +65,6 @@ function registerIPCPipes() {
},
});
clearTimeout(timeoutId);
if (fetchResult.ok) {
const result = await fetchResult.json();
return result;
@ -91,12 +73,6 @@ function registerIPCPipes() {
code: 500,
message: "Something went wrong while logging you in.",
};
} catch (err) {
return {
code: 500,
message: "Something went wrong while logging you in.",
};
}
});
ipcMain.handle("ezpplauncher:guestlogin", (e) => {
@ -111,24 +87,6 @@ function registerIPCPipes() {
config.remove("guest");
return true;
});
ipcMain.handle("ezpplauncher:launch", async (e) => {
mainWindow.webContents.send("ezpplauncher:launchstatus", {
status: "Checking osu! directory...",
});
await new Promise((res) => setTimeout(res, 1500));
mainWindow.webContents.send("ezpplauncher:launchstatus", {
status: "Checking for osu! updates...",
});
mainWindow.webContents.send("ezpplauncher:launchprogress", {
progress: 0,
});
await new Promise((res) => setTimeout(res, 1500));
mainWindow.webContents.send("ezpplauncher:launchprogress", {
progress: 100,
});
return true;
});
}
function createWindow() {

View File

@ -36,19 +36,3 @@ window.addEventListener("logout", async (e) => {
window.addEventListener("guest-login", async (e) => {
await ipcRenderer.invoke("ezpplauncher:guestlogin");
});
window.addEventListener("launch", async (e) => {
await ipcRenderer.invoke("ezpplauncher:launch");
});
ipcRenderer.addListener("ezpplauncher:launchstatus", (e, args) => {
window.dispatchEvent(
new CustomEvent("launchStatusUpdate", { detail: args }),
);
});
ipcRenderer.addListener("ezpplauncher:launchprogress", (e, args) => {
window.dispatchEvent(
new CustomEvent("launchProgressUpdate", { detail: args }),
);
});

View File

@ -4,20 +4,19 @@
Dropdown,
DropdownItem,
DropdownHeader,
DropdownDivider,
DropdownDivider
} from "flowbite-svelte";
import {
ArrowRightFromBracketSolid,
ArrowRightToBracketSolid,
UserSettingsSolid,
UserSettingsSolid
} from "flowbite-svelte-icons";
import ezppLogo from "../public/favicon.png";
import {
currentPage,
currentUser,
launching,
launchPercentage,
launchStatus,
launchStatus
} from "./storage/localStore";
import { Page } from "./consts/pages";
import Login from "./pages/Login.svelte";
@ -41,16 +40,9 @@
};
window.addEventListener("launchStatusUpdate", (e) => {
console.log((e as CustomEvent).detail);
const status = (e as CustomEvent).detail.status;
const status = (e as CustomEvent).detail;
launchStatus.set(status);
});
window.addEventListener("launchProgressUpdate", (e) => {
console.log((e as CustomEvent).detail);
const progress = (e as CustomEvent).detail.progress;
launchPercentage.set(progress);
});
</script>
<Toaster></Toaster>

View File

@ -54,10 +54,6 @@ html .cet-titlebar .cet-control-icon svg {
}
}
.animatedProgress div {
transition: width 0.35s cubic-bezier(0.65, -0.02, 0.31, 1.01);
}
@keyframes progress-loading {
50% {
background-position-x: -115%;

View File

@ -2,10 +2,9 @@
import { cubicOut } from "svelte/easing";
import { tweened } from "svelte/motion";
import { twMerge, twJoin } from "tailwind-merge";
import { clamp } from "../util/mathUtil";
export let progress: number = 45;
export let precision = 2;
export let progress: string | number | undefined | null = "45";
export let precision = 0;
export let tweenDuration = 400;
export let animate = false;
export let size = "h-2.5";
@ -13,10 +12,10 @@
export let labelOutside = "";
export let easing = cubicOut;
export let color = "primary";
export let indeterminate = false;
export let labelInsideClass =
"text-primary-100 text-xs font-medium text-center p-0.5 leading-none rounded-full";
export let divClass = "w-full bg-gray-200 rounded-full dark:bg-gray-700";
export let indeterminate = progress == null;
const barColors: Record<string, string> = {
primary: "bg-primary-600",
@ -29,14 +28,15 @@
indigo: "bg-indigo-600 dark:bg-indigo-500",
};
let _progress = tweened(0, {
duration: tweenDuration,
const _progress = tweened(0, {
duration: animate && !indeterminate ? tweenDuration : 0,
easing,
});
$: {
progress = clamp(Number(progress), 0, 100);
_progress.set(progress);
if (!indeterminate) {
_progress.set(Number(progress));
}
}
</script>
@ -49,9 +49,7 @@
>{labelOutside}</span
>
<span class="text-sm font-medium text-blue-700 dark:text-white"
>{animate
? $_progress.toFixed(precision)
: progress.toFixed(precision)}%</span
>{progress}%</span
>
</div>
{/if}
@ -61,9 +59,9 @@
{#if !indeterminate}
<div
class={twJoin(labelInsideClass, barColors[color])}
style="width: {animate ? $_progress : progress}%"
style="width: {$_progress}%"
>
{animate ? $_progress.toFixed(precision) : progress.toFixed(precision)}%
{$_progress.toFixed(precision)}%
</div>
{:else}
<div
@ -77,7 +75,7 @@
{:else if !indeterminate}
<div
class={twJoin(barColors[color], size, "rounded-full")}
style="width: {animate ? $_progress : progress}%"
style="width: {$_progress}%"
/>
{:else}
<div

View File

@ -1,12 +1,7 @@
<script lang="ts">
import { Button, Checkbox } from "flowbite-svelte";
import Progressbar from "../lib/Progressbar.svelte";
import {
launching,
patch,
launchStatus,
launchPercentage,
} from "./../storage/localStore";
import { launching, patch, launchStatus } from "./../storage/localStore";
let progressbarFix = true;
setTimeout(() => {
@ -15,8 +10,7 @@
const launch = () => {
launching.set(true);
window.dispatchEvent(new CustomEvent("launch"));
};
}
</script>
<main
@ -32,7 +26,7 @@
? ''
: 'active:scale-95 '}transition-transform duration-75"
disabled={$launching}
on:click={launch}>Launch</Button
on:click={() => launching.set(!$launching)}>Launch</Button
>
<Checkbox
disabled={$launching}
@ -46,12 +40,10 @@
>
<Progressbar
animate={true}
progress={$launchPercentage}
indeterminate={$launchPercentage == -1}
progress={null}
labelInside={true}
size="h-3"
class=""
labelInsideClass="bg-primary-600 drop-shadow-xl text-gray-100 text-base font-medium text-center p-1 leading-none rounded-full !text-[0.7rem] !leading-[0.45]"
labelInsideClass="bg-primary-600 drop-shadow-xl text-gray-100 text-base font-medium text-center p-1 leading-none rounded-full"
/>
<p class="m-0 p-0 dark:text-gray-400 font-light">{$launchStatus}</p>
</div>

View File

@ -142,9 +142,7 @@
{/if}
</Button>
</Input>
<Checkbox bind:checked={saveCredentials} disabled={loading}
>Save credentials</Checkbox
>
<Checkbox bind:checked={saveCredentials}>Save credentials</Checkbox>
<div class="flex flex-col justify-center items-center gap-5 mt-1">
<Button
class="dark:active:!bg-gray-900 active:scale-95 transition-transform duration-75"

View File

@ -1,3 +0,0 @@
export const clamp = (val: number, min: number, max: number) => {
return val <= min ? min : val >= max ? max : val;
};

View File

@ -21,9 +21,6 @@ const config = {
fadeIn: "fadeIn 1s ease forwards",
fadeOut: "fadeOut 1s ease forwards",
},
transitionProperty: {
'width': 'width',
},
colors: {
// flowbite-svelte
primary: {