EZPPLauncher/preload/preload.js

192 lines
6.6 KiB
JavaScript
Raw Normal View History

2022-10-16 13:54:29 +00:00
const { ipcRenderer } = require('electron');
const { Titlebar, Color } = require('custom-electron-titlebar');
2022-10-16 21:16:05 +00:00
const appInfo = require('../appInfo');
2022-10-16 13:54:29 +00:00
let titlebar;
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', () => {
titlebar = new Titlebar({
backgroundColor: Color.fromHex("#303030"),
itemBackgroundColor: Color.fromHex("#121212"),
menu: null,
maximizable: false
});
2022-10-16 21:16:05 +00:00
titlebar.updateTitle(`${appInfo.appName} ${appInfo.appVersion}`);
2022-10-16 13:54:29 +00:00
const $ = require('jquery');
const axios = require('axios').default;
2022-10-16 19:31:05 +00:00
const Swal = require('sweetalert2');
2022-10-16 13:54:29 +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-img').prop('src', `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'
});
}
});
$('#action-cancel').on('click', () => {
if (!loggedIn) {
changePage('launch');
}
});
2022-10-16 20:44:56 +00:00
let currentState;
2022-10-16 20:44:56 +00:00
$("#launch-btn").on('click', async () => {
switch (currentState) {
case "up-to-date":
2022-10-16 21:10:07 +00:00
$("#launch-btn").attr('disabled', true);
$('#launch-btn').html('Launching...');
const result = await ipcRenderer.invoke("launch");
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-16 20:44:56 +00:00
break;
case "update-available":
$("#launch-btn").attr('disabled', true);
$('#launch-btn').html('Updating...');
ipcRenderer.send("do-update");
break;
}
});
$("#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)
2022-10-16 14:47:43 +00:00
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-img').prop('src', `https://a.ez-pp.farm/${responseData.user.id}`);
loggedIn = true;
changePage('launch');
})
$("#change-folder-btn").on('click', async () => {
const responseData = await ipcRenderer.invoke('set-osu-dir');
if (!responseData)
return;
if (responseData.validOsuDir) {
2022-10-16 19:31:05 +00:00
Swal.fire({
title: 'Success!',
2022-10-16 20:21:02 +00:00
text: 'osu! folder set.',
2022-10-16 19:31:05 +00:00
icon: 'success',
confirmButtonText: 'Cool'
})
$('#currentOsuPath').text(responseData.folderPath);
2022-10-16 20:44:56 +00:00
ipcRenderer.send("do-update-check");
2022-10-16 16:42:04 +00:00
} else {
2022-10-16 19:31:05 +00:00
Swal.fire({
title: 'Uh oh!',
2022-10-16 20:21:02 +00:00
text: 'The selected folder is not a osu! directory.',
2022-10-16 19:31:05 +00:00
icon: 'error',
2022-10-16 20:21:02 +00:00
confirmButtonText: 'Oops.. my bad!'
2022-10-16 19:31:05 +00:00
})
2022-10-16 16:42:04 +00:00
}
2022-10-16 13:54:29 +00:00
});
2022-10-16 19:13:30 +00:00
ipcRenderer.on('config_update', (event, data) => {
if (data.osuPath) {
$('#currentOsuPath').text(data.osuPath);
}
})
2022-10-17 14:37:12 +00:00
ipcRenderer.on('account_update', (event, data) => {
switch (data.type) {
case "not-loggedin":
changePage("launch");
break;
case "loggedin":
changePage("launch");
$('#welcome-text').text(`Welcome back, ${data.user.name}!`);
$('#account-action').text('Not you?');
$('#user-img').prop('src', `https://a.ez-pp.farm/${data.user.id}`)
loggedIn = true;
break;
2022-10-17 14:37:12 +00:00
}
})
2022-10-16 19:13:30 +00:00
ipcRenderer.on('status_update', (event, status) => {
2022-10-16 20:44:56 +00:00
currentState = status.type;
2022-10-16 19:13:30 +00:00
switch (status.type) {
case "up-to-date":
$("#launch-btn").attr('disabled', false);
$('#launch-btn').html('Launch');
break;
case "update-available":
$("#launch-btn").attr('disabled', false);
$('#launch-btn').html('Update');
break;
2022-10-16 20:21:02 +00:00
case "missing-folder":
$("#launch-btn").attr('disabled', true);
$('#launch-btn').html('set your osu! folder');
2022-10-16 20:44:56 +00:00
break;
case "error":
Swal.fire({
title: 'Uh oh!',
text: status.message,
icon: 'error',
confirmButtonText: 'Okay'
});
ipcRenderer.send("do-update-check");
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;
2022-10-16 19:13:30 +00:00
}
})
2022-10-16 20:21:02 +00:00
function changePage(page) {
$(`#${currentPage}-page`).fadeOut(50, "swing", () => {
2022-10-17 14:37:12 +00:00
$(`#${page}-page`).fadeIn(350);
});
currentPage = page;
}
2022-10-16 20:21:02 +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
})