mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-04-04 07:45:14 +03:00
Several changes
- added template settings html file - removed excess code from the entry file - fixed windows loading - added proper main window title - added settings button events - also `index.ts` now works through `promisify()` - added `Launcher.showSettings()` method - fixed `promisify()` issues related to `callAtOnce` property
This commit is contained in:
parent
843196e0e1
commit
1a99aae933
8 changed files with 67 additions and 35 deletions
|
@ -4,8 +4,6 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
<link rel="icon" href="/favicon.ico" />
|
|
||||||
|
|
||||||
<link rel="stylesheet" lang="sass" href="/src/sass/basic.sass" />
|
<link rel="stylesheet" lang="sass" href="/src/sass/basic.sass" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -17,6 +15,6 @@
|
||||||
<script src="neutralino.js"></script>
|
<script src="neutralino.js"></script>
|
||||||
|
|
||||||
<script type="module" src="/src/entry.js"></script>
|
<script type="module" src="/src/entry.js"></script>
|
||||||
<script type="module" lang="ts" src="/src/pages/about.ts"></script>
|
<script type="module" lang="ts" src="/src/pages/settings.ts"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,5 +1 @@
|
||||||
Neutralino.init();
|
Neutralino.init();
|
||||||
|
|
||||||
Neutralino.events.on('ready', () => {
|
|
||||||
import('./ts/neutralino/Window');
|
|
||||||
});
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
import * as Vue from 'vue/dist/vue.esm-bundler';
|
|
||||||
|
|
||||||
import Window from '../ts/neutralino/Window';
|
|
||||||
|
|
||||||
Vue.createApp({
|
|
||||||
data: () => {
|
|
||||||
return {
|
|
||||||
title: 'about'
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
mounted: () => Window.current.show()
|
|
||||||
}).mount('#app');
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { createApp } from 'vue';
|
import { createApp } from 'vue/dist/vue.esm-bundler';
|
||||||
|
|
||||||
import Window from '../ts/neutralino/Window';
|
import Window from '../ts/neutralino/Window';
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import Launcher from '../ts/Launcher';
|
||||||
import Configs from '../ts/Configs';
|
import Configs from '../ts/Configs';
|
||||||
import constants from '../ts/Constants';
|
import constants from '../ts/Constants';
|
||||||
import promisify from '../ts/core/promisify';
|
import promisify from '../ts/core/promisify';
|
||||||
|
import Game from '../ts/Game';
|
||||||
|
|
||||||
promisify(async () => {
|
promisify(async () => {
|
||||||
Configs.defaults({
|
Configs.defaults({
|
||||||
|
@ -46,20 +47,45 @@ let app = createApp({
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
methods: {
|
|
||||||
showAbout: () => Window.open('about')
|
|
||||||
},
|
|
||||||
|
|
||||||
mounted()
|
mounted()
|
||||||
{
|
{
|
||||||
const launcher = new Launcher(this);
|
const launcher = new Launcher(this);
|
||||||
|
|
||||||
new Promise(async (resolve) => {
|
/**
|
||||||
await launcher.updateSocial();
|
* Update launcher's title
|
||||||
await launcher.updateBackground();
|
*/
|
||||||
|
Game.latest.then((game) => {
|
||||||
|
Window.current.setTitle(`${constants.placeholders.uppercase.full} Linux Launcher - ${game.version}`);
|
||||||
|
});
|
||||||
|
|
||||||
resolve(null);
|
/**
|
||||||
}).then(() => {
|
* Add some events to some elements
|
||||||
|
*/
|
||||||
|
const settingsButton = document.getElementById('settings');
|
||||||
|
|
||||||
|
settingsButton!.onclick = () => launcher.showSettings();
|
||||||
|
|
||||||
|
settingsButton!.onmouseenter = () => {
|
||||||
|
settingsButton?.classList.add('hovered');
|
||||||
|
};
|
||||||
|
|
||||||
|
settingsButton!.onmouseleave = () => {
|
||||||
|
settingsButton?.classList.remove('hovered');
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do some launcher stuff
|
||||||
|
*/
|
||||||
|
const pipeline = promisify({
|
||||||
|
callbacks: [
|
||||||
|
() => launcher.updateSocial(),
|
||||||
|
() => launcher.updateBackground()
|
||||||
|
],
|
||||||
|
callAtOnce: true
|
||||||
|
});
|
||||||
|
|
||||||
|
// Show window when all the stuff was completed
|
||||||
|
pipeline.then(() => {
|
||||||
Window.current.show();
|
Window.current.show();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
11
src/pages/settings.ts
Normal file
11
src/pages/settings.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { createApp } from 'vue/dist/vue.esm-bundler';
|
||||||
|
|
||||||
|
import Window from '../ts/neutralino/Window';
|
||||||
|
|
||||||
|
createApp({
|
||||||
|
data: () => ({
|
||||||
|
title: 'about'
|
||||||
|
}),
|
||||||
|
|
||||||
|
mounted: () => Window.current.show()
|
||||||
|
}).mount('#app');
|
|
@ -1,3 +1,5 @@
|
||||||
|
import Window from './neutralino/Window';
|
||||||
|
|
||||||
import constants from './Constants';
|
import constants from './Constants';
|
||||||
import Configs from './Configs';
|
import Configs from './Configs';
|
||||||
|
|
||||||
|
@ -44,6 +46,15 @@ export default class Launcher
|
||||||
t(0);
|
t(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public showSettings()
|
||||||
|
{
|
||||||
|
Window.open('settings', {
|
||||||
|
title: 'Settings',
|
||||||
|
width: 900,
|
||||||
|
height: 600
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update launcher background picture
|
* Update launcher background picture
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -55,10 +55,13 @@ export default function promisify(callback: callback|PromiseOptions): Promise<an
|
||||||
setTimeout(updater, callback.interval ?? 100);
|
setTimeout(updater, callback.interval ?? 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
else for (let i = 0; i < callback.callbacks.length; ++i)
|
else
|
||||||
outputs[i] = await promisify(callback.callbacks[i]());
|
{
|
||||||
|
for (let i = 0; i < callback.callbacks.length; ++i)
|
||||||
|
outputs[i] = await promisify(callback.callbacks[i]);
|
||||||
|
|
||||||
resolve(outputs);
|
resolve(outputs);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@ export default defineConfig({
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
input: [
|
input: [
|
||||||
'index.html',
|
'index.html',
|
||||||
'about.html'
|
'settings.html'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue