12345678910111213141516171819202122232425262728293031323334353637383940 |
- const chalk = require('chalk');
- const clear = require('clear');
- const figlet = require('figlet');
- const fs = require('fs')
- var pjson = require('../package.json');
- module.exports = {
- header: (page) => {
- clear();
- console.log(
- chalk.red(
- figlet.textSync('MiWatch Kleaner', {
- horizontalLayout: 'full'
- })
- )
- );
- console.log(chalk.red(' ' + pjson.version));
- console.log();
- console.log(
- chalk.red(
- '-------------------------------------------------------------------------------------------------------'
- )
- )
- console.log(chalk.blue(page))
- module.exports.ipCheck()
- console.log(chalk.red('----------'))
- },
- pause: async (time) => {
- await new Promise(resolve => setTimeout(resolve, time));
- },
- ipCheck: async () => {
- const miwatchData = JSON.parse(fs.readFileSync('./data/MiWatch.json', 'utf8'));
- if (miwatchData.ipAddress === "") {
- console.log(chalk.white('MiWatch IP: ') + chalk.red('Not Connected'))
- } else {
- console.log(chalk.white('MiWatch IP: ' + chalk.green(miwatchData.ipAddress)))
- }
- }
- }
|