-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
51 lines (44 loc) · 1.39 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Importation des modules
const { app, ipcMain, BrowserWindow } = require("electron");
const path = require("path");
const { Client, Authenticator } = require("minecraft-launcher-core");
// Variables globales
let mainWindow;
// Création de la fenêtre principale
function createWindow() {
mainWindow = new BrowserWindow({
title: "Lanceur MC",
icon: path.join(__dirname, "/asset/logo.png"),
width: 800,
height: 600,
frame: false,
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false,
preload: path.join(__dirname, "preload.js")
},
});
mainWindow.loadURL(path.join(__dirname, "index.html"));
}
// Quand l'application est chargée, afficher la fenêtre
app.whenReady().then(() => {
createWindow();
app.on("activate", function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow();
});
});
// Si toutes les fenêtres sont fermées, quitter l'application
app.on("window-all-closed", function () {
if (process.platform !== "darwin") app.quit();
});
// Quand un utilisateur tente de se connecter
ipcMain.on("login", (evt, data) => {
Authenticator.getAuth(data.user, data.pass)
.then((e) => {
mainWindow.loadURL(path.join(__dirname, "app.html"));
})
.catch(() => {
evt.sender.send("err", "Erreur de connexion");
});
});