2023-05-31 17:03:11 +00:00
|
|
|
const { ipcRenderer, shell } = require('electron');
|
2023-06-02 10:22:28 +00:00
|
|
|
const { Titlebar, TitlebarColor } = require('custom-electron-titlebar');
|
2022-10-16 21:16:05 +00:00
|
|
|
const appInfo = require('../appInfo');
|
2022-10-17 23:46:04 +00:00
|
|
|
let currentPage = "loading";
|
|
|
|
let loggedIn = false;
|
2022-10-17 14:37:12 +00:00
|
|
|
|
2022-10-16 13:54:29 +00:00
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
2023-06-02 10:22:28 +00:00
|
|
|
const titlebar = new Titlebar({
|
|
|
|
backgroundColor: TitlebarColor.fromHex("#24283B"),
|
|
|
|
itemBackgroundColor: TitlebarColor.fromHex("#121212"),
|
|
|
|
menu: null,
|
|
|
|
enableMnemonics: false,
|
|
|
|
maximizable: false,
|
|
|
|
});
|
2022-10-16 13:54:29 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
titlebar.updateTitle(`${appInfo.appName} ${appInfo.appVersion}`);
|
2022-10-16 13:54:29 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
const $ = require('jquery');
|
|
|
|
const Swal = require('sweetalert2');
|
2022-10-17 10:47:47 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
$('#account-action').on('click', () => {
|
|
|
|
if (!loggedIn) {
|
|
|
|
changePage('login');
|
|
|
|
} else {
|
|
|
|
$('#welcome-text').text(`Nice to see you!`);
|
|
|
|
$('#account-action').text('Click to login');
|
|
|
|
$('.user-image').css('background-image', `url(https://a.ez-pp.farm/0)`)
|
|
|
|
loggedIn = false;
|
|
|
|
ipcRenderer.send("perform-logout");
|
|
|
|
Swal.fire({
|
|
|
|
title: 'See ya soon!',
|
|
|
|
text: "Successfully logged out!",
|
|
|
|
icon: 'success',
|
|
|
|
confirmButtonText: 'Okay'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2022-10-16 20:44:56 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
$('#action-cancel').on('click', () => {
|
|
|
|
if (!loggedIn) {
|
|
|
|
changePage('launch');
|
|
|
|
}
|
|
|
|
});
|
2022-10-16 20:44:56 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
let currentState;
|
|
|
|
$("#launch-btn").on('click', async () => {
|
|
|
|
switch (currentState) {
|
|
|
|
case "up-to-date":
|
|
|
|
$("#launch-btn").attr('disabled', true);
|
|
|
|
$('#launch-btn').html('Launching...');
|
2023-11-24 06:26:42 +00:00
|
|
|
const result = await ipcRenderer.invoke("launch", { patch: $('#enablePatching').is(':checked') });
|
2023-06-02 10:22:28 +00:00
|
|
|
if (!result) {
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: "Something went wrong while launching!",
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Okay'
|
|
|
|
});
|
|
|
|
$("#launch-btn").attr('disabled', false);
|
|
|
|
$('#launch-btn').html('Launch');
|
|
|
|
} else {
|
|
|
|
$("#launch-btn").attr('disabled', true);
|
|
|
|
$('#launch-btn').html('Running...');
|
2022-10-17 23:46:04 +00:00
|
|
|
}
|
2023-06-02 10:22:28 +00:00
|
|
|
break;
|
|
|
|
case "update-available":
|
|
|
|
$("#launch-btn").attr('disabled', true);
|
|
|
|
$('#launch-btn').html('Updating...');
|
|
|
|
ipcRenderer.send("do-update");
|
|
|
|
break;
|
|
|
|
case "missing-folder":
|
2022-10-17 23:46:04 +00:00
|
|
|
const responseData = await ipcRenderer.invoke('set-osu-dir');
|
|
|
|
if (!responseData)
|
2023-06-02 10:22:28 +00:00
|
|
|
return;
|
2022-10-17 23:46:04 +00:00
|
|
|
if (responseData.validOsuDir) {
|
2023-06-02 10:22:28 +00:00
|
|
|
Swal.fire({
|
|
|
|
title: 'Success!',
|
|
|
|
text: 'osu! folder set.',
|
|
|
|
icon: 'success',
|
|
|
|
confirmButtonText: 'Cool'
|
|
|
|
})
|
|
|
|
$('#currentOsuPath').text(responseData.folderPath);
|
|
|
|
ipcRenderer.send("do-update-check");
|
2022-10-16 16:42:04 +00:00
|
|
|
} else {
|
2023-06-02 10:22:28 +00:00
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: 'The selected folder is not a osu! directory.',
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Oops.. my bad!'
|
|
|
|
})
|
2022-10-16 16:42:04 +00:00
|
|
|
}
|
2023-06-02 10:22:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2022-10-16 19:13:30 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
$("#action-login").on('click', async () => {
|
|
|
|
const username = $('#login-username').val();
|
|
|
|
const password = $('#login-password').val();
|
|
|
|
$("#action-login").attr('disabled', true);
|
|
|
|
$("#action-cancel").attr('disabled', true);
|
|
|
|
const responseData = await ipcRenderer.invoke('perform-login', { username, password });
|
|
|
|
$("#action-login").attr('disabled', false);
|
|
|
|
$("#action-cancel").attr('disabled', false);
|
|
|
|
if (!responseData)
|
|
|
|
return;
|
|
|
|
if (responseData.code != 200) {
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: responseData.message,
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Oops.. my bad!'
|
|
|
|
})
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$('#login-username').val("");
|
|
|
|
$('#login-password').val("");
|
|
|
|
$('#welcome-text').text(`Welcome back, ${responseData.user.name}!`);
|
|
|
|
$('#account-action').text('Not you?');
|
|
|
|
$('.user-image').css('background-image', `url(https://a.ez-pp.farm/${responseData.user.id})`);
|
|
|
|
loggedIn = true;
|
|
|
|
changePage('launch');
|
|
|
|
})
|
2022-10-17 23:46:04 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
$("#change-folder-btn").on('click', async () => {
|
|
|
|
const responseData = await ipcRenderer.invoke('set-osu-dir');
|
|
|
|
if (!responseData)
|
|
|
|
return;
|
|
|
|
if (responseData.validOsuDir) {
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Success!',
|
|
|
|
text: 'osu! folder set.',
|
|
|
|
icon: 'success',
|
|
|
|
confirmButtonText: 'Cool'
|
|
|
|
})
|
|
|
|
$('#currentOsuPath').text(responseData.folderPath);
|
|
|
|
ipcRenderer.send("do-update-check");
|
|
|
|
} else {
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: 'The selected folder is not a osu! directory.',
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Oops.. my bad!'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
2023-05-31 17:03:11 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
ipcRenderer.on('config_update', (event, data) => {
|
|
|
|
if (data.osuPath) {
|
|
|
|
$('#currentOsuPath').text(data.osuPath);
|
|
|
|
}
|
|
|
|
})
|
2022-10-17 14:37:12 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
ipcRenderer.on('launcher_update', async (event, data) => {
|
|
|
|
const res = await Swal.fire({
|
|
|
|
title: 'Update available!',
|
|
|
|
text: `Version ${data.version} has been released!`,
|
|
|
|
icon: 'info',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: 'Download',
|
|
|
|
cancelButtonText: 'Remind me later',
|
|
|
|
});
|
|
|
|
if (res.isConfirmed) {
|
|
|
|
shell.openExternal(data.url);
|
|
|
|
}
|
|
|
|
})
|
2022-10-16 20:21:02 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
ipcRenderer.on('account_update', (event, data) => {
|
|
|
|
switch (data.type) {
|
|
|
|
case "login-failed":
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: data.message,
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Okay'
|
2022-10-17 14:37:12 +00:00
|
|
|
});
|
2023-06-02 10:22:28 +00:00
|
|
|
changePage("launch");
|
|
|
|
break;
|
|
|
|
case "not-loggedin":
|
|
|
|
changePage("launch");
|
|
|
|
break;
|
|
|
|
case "loggedin":
|
|
|
|
changePage("launch");
|
|
|
|
$('#welcome-text').text(`Welcome back, ${data.user.name}!`);
|
|
|
|
$('#account-action').text('Not you?');
|
|
|
|
$('.user-image').css('background-image', `url(https://a.ez-pp.farm/${data.user.id})`);
|
|
|
|
loggedIn = true;
|
|
|
|
break;
|
2022-10-17 10:47:47 +00:00
|
|
|
}
|
2023-06-02 10:22:28 +00:00
|
|
|
})
|
|
|
|
|
2023-06-02 12:13:09 +00:00
|
|
|
ipcRenderer.on('alert_message', async (event, path) => {
|
|
|
|
const res = await Swal.fire({
|
|
|
|
title: 'Hey!',
|
|
|
|
html: `<p class="text-white">Detected a osu! installation at</p><span class="quotetext">${path}</span><p class="text-white">Is this correct?</p>`,
|
|
|
|
icon: 'info',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: 'Yes',
|
|
|
|
cancelButtonText: 'No',
|
|
|
|
});
|
|
|
|
if (res.isConfirmed) {
|
|
|
|
$('#currentOsuPath').text(path);
|
|
|
|
ipcRenderer.send('alert_response', path);
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Success!',
|
|
|
|
text: 'osu! folder set.',
|
|
|
|
icon: 'success',
|
|
|
|
confirmButtonText: 'Cool'
|
|
|
|
})
|
|
|
|
ipcRenderer.send("do-update-check");
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
ipcRenderer.on('status_update', (event, status) => {
|
|
|
|
switch (status.type) {
|
|
|
|
case "up-to-date":
|
|
|
|
$("#launch-btn").attr('disabled', false);
|
|
|
|
$('#launch-btn').html('Launch');
|
|
|
|
currentState = status.type;
|
|
|
|
break;
|
|
|
|
case "update-available":
|
|
|
|
$("#launch-btn").attr('disabled', false);
|
|
|
|
$('#launch-btn').html('Update');
|
|
|
|
currentState = status.type;
|
|
|
|
break;
|
|
|
|
case "missing-folder":
|
|
|
|
$("#launch-btn").attr('disabled', false);
|
|
|
|
$('#launch-btn').html('set your osu! folder');
|
|
|
|
currentState = status.type;
|
|
|
|
break;
|
|
|
|
case "error":
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: status.message,
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Okay'
|
|
|
|
});
|
|
|
|
ipcRenderer.send("do-update-check");
|
|
|
|
break;
|
|
|
|
case "info":
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Info!',
|
|
|
|
text: status.message,
|
|
|
|
icon: 'info',
|
|
|
|
confirmButtonText: 'Okay'
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "package-issue":
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Uh oh!',
|
|
|
|
text: status.message,
|
|
|
|
icon: 'error',
|
|
|
|
confirmButtonText: 'Okay'
|
|
|
|
});
|
|
|
|
$("#launch-btn").attr('disabled', true);
|
|
|
|
$('#launch-btn').html('missing packages');
|
|
|
|
break;
|
|
|
|
case "update-complete":
|
|
|
|
Swal.fire({
|
|
|
|
title: 'Yaaay!',
|
|
|
|
text: "Your osu! client has been successfully updated!",
|
|
|
|
icon: 'success',
|
|
|
|
confirmButtonText: 'Thanks :3'
|
|
|
|
});
|
|
|
|
ipcRenderer.send("do-update-check");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
function changePage(page) {
|
|
|
|
$(`#${currentPage}-page`).fadeOut(50, "swing", () => {
|
|
|
|
$(`#${page}-page`).fadeIn(350);
|
|
|
|
});
|
|
|
|
currentPage = page;
|
|
|
|
}
|
2022-10-17 10:47:47 +00:00
|
|
|
|
2023-06-02 10:22:28 +00:00
|
|
|
// workaround for the dark theme
|
|
|
|
$('head').append($('<link href="../assets/sweetalert2.dark.css" rel="stylesheet" />'));
|
2022-10-16 13:54:29 +00:00
|
|
|
})
|