123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- const path = require('path');
- class CustomPuterService extends use.Service {
- async _init () {
- const svc_commands = this.services.get('commands');
- this._register_commands(svc_commands);
-
- const svc_puterHomepage = this.services.get('puter-homepage');
- svc_puterHomepage.register_script('/custom-gui/main.js');
- }
- ['__on_install.routes'] (_, { app }) {
- const require = this.require;
- const express = require('express');
- const path_ = require('path');
- app.use('/custom-gui',
- express.static(path.join(__dirname, 'gui')));
- }
- async ['__on_boot.consolidation'] () {
- const then = Date.now();
- this.tod_widget = () => {
- const s = 5 - Math.floor(
- (Date.now() - then) / 1000);
- const lines = [
- "\x1B[36;1mKDMOD ENABLED\x1B[0m" +
- ` (👁️ ${s}s)`
- ];
- // It would be super cool to be able to use this here
- // surrounding_box('33;1', lines);
- return lines;
- }
- const svc_devConsole = this.services.get('dev-console', { optional: true });
- if ( ! svc_devConsole ) return;
- svc_devConsole.add_widget(this.tod_widget);
-
- setTimeout(() => {
- svc_devConsole.remove_widget(this.tod_widget);
- }, 5000)
- }
- _register_commands (commands) {
- commands.registerCommands('o', [
- {
- id: 'k',
- description: '',
- handler: async (_, log) => {
- const svc_devConsole = this.services.get('dev-console', { optional: true });
- if ( ! svc_devConsole ) return;
- svc_devConsole.remove_widget(this.tod_widget);
- const lines = this.tod_widget();
- for ( const line of lines ) log.log(line);
- this.tod_widget = null;
- }
- }
- ]);
- }
- }
- module.exports = { CustomPuterService };
|