Compare commits
3 commits
bdb87c97d7
...
5eb34f8a86
Author | SHA1 | Date | |
---|---|---|---|
|
5eb34f8a86 | ||
|
9500bc3a45 | ||
|
0ddc8e064f |
9 changed files with 300 additions and 74 deletions
36
Dashboard/assets/css/widget.css
Normal file
36
Dashboard/assets/css/widget.css
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
|
||||||
|
.center {
|
||||||
|
position: absolute;
|
||||||
|
top: 40%;
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
background: #252525;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists {
|
||||||
|
position: absolute;
|
||||||
|
top: 40%;
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists .topgg,
|
||||||
|
.lists .botlistspace {
|
||||||
|
padding: 1vh 2vw;
|
||||||
|
}
|
||||||
|
/*# sourceMappingURL=widget.css.map */
|
9
Dashboard/assets/css/widget.css.map
Normal file
9
Dashboard/assets/css/widget.css.map
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"mappings": "AAuCA,OAAO,CAAC,sEAAI;AAEZ,AAAA,OAAO,CAAC;EAxCJ,QAAQ,EAAE,QAAQ;EAGd,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB;CAqCvC;;AAED,AAAA,IAAI,CAAC;EACD,WAAW,EAAE,wBAAwB;EACrC,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,KAAK;CACf;;AAED,AAAA,EAAE,CAAC;EACC,UAAU,EAAE,IAAI;CACnB;;AAED,AAAA,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;CACxB;;AAED,AAAA,MAAM,CAAC;EA1DH,QAAQ,EAAE,QAAQ;EAGd,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB;CA6DvC;;AARD,AAII,MAJE,CAIF,MAAM;AAJV,MAAM,CAKF,aAAa,CAAC;EACV,OAAO,EAAE,OACb;CAAC",
|
||||||
|
"sources": [
|
||||||
|
"widget.scss"
|
||||||
|
],
|
||||||
|
"names": [],
|
||||||
|
"file": "widget.css"
|
||||||
|
}
|
68
Dashboard/assets/css/widget.scss
Normal file
68
Dashboard/assets/css/widget.scss
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
@mixin centerer($horizontal: true, $vertical: true) {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
@if ($horizontal and $vertical) {
|
||||||
|
top: 40%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
@else if ($horizontal) {
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@else if ($vertical) {
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(0, -50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin Buttons {
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
background-color: #ffffff;
|
||||||
|
/* Green */
|
||||||
|
border: none;
|
||||||
|
/* border-radius: 1vh; */
|
||||||
|
font-size: 3vw;
|
||||||
|
margin: .5vw;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgb(0, 0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
|
||||||
|
|
||||||
|
.center {
|
||||||
|
@include centerer;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
background: #252525;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lists {
|
||||||
|
|
||||||
|
@include centerer();
|
||||||
|
|
||||||
|
.topgg,
|
||||||
|
.botlistspace {
|
||||||
|
padding: 1vh 2vw
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,12 @@
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const { hostname, port, authorization, source, invite, type } = require('../config');
|
const {
|
||||||
|
hostname,
|
||||||
|
port,
|
||||||
|
authorization,
|
||||||
|
source,
|
||||||
|
invite,
|
||||||
|
type
|
||||||
|
} = require('../config');
|
||||||
const db = require('quick.db');
|
const db = require('quick.db');
|
||||||
const Backend = new db.table('backend');
|
const Backend = new db.table('backend');
|
||||||
const chalk = require('chalk');
|
const chalk = require('chalk');
|
||||||
|
@ -78,13 +85,9 @@ module.exports = (client) => {
|
||||||
});
|
});
|
||||||
app.get('/widgets', async (req, res) => {
|
app.get('/widgets', async (req, res) => {
|
||||||
res.status(200).render('widgets', {
|
res.status(200).render('widgets', {
|
||||||
layout: 'main',
|
layout: 'widgets',
|
||||||
lists: {
|
title: 'Widgets',
|
||||||
topgg: `<a href="https://top.gg/bot/434662676547764244" >
|
subtitle: 'Thaldrin'
|
||||||
<img src="https://top.gg/api/widget/434662676547764244.svg" alt="Thaldrin" />
|
|
||||||
</a>`,
|
|
||||||
x: 'Not a real List'
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
/* app.get('/this', async (req, res) => {
|
/* app.get('/this', async (req, res) => {
|
||||||
|
|
|
@ -1,50 +1,12 @@
|
||||||
const { log } = require('../utils');
|
const {
|
||||||
|
log,
|
||||||
|
status
|
||||||
|
} = require('../utils');
|
||||||
const config = require('../config');
|
const config = require('../config');
|
||||||
const blapi = require('blapi');
|
const blapi = require('blapi');
|
||||||
//blapi.setLogging(true);
|
//blapi.setLogging(true);
|
||||||
|
|
||||||
function randomStatus(client) {
|
|
||||||
const States = [
|
|
||||||
{
|
|
||||||
activity: {
|
|
||||||
name: 'server fans whirr 💨',
|
|
||||||
type: 'LISTENING'
|
|
||||||
},
|
|
||||||
status: 'online'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
activity: {
|
|
||||||
name: 'True Damage - GIANTS',
|
|
||||||
type: 'LISTENING'
|
|
||||||
},
|
|
||||||
status: 'online'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
activity: {
|
|
||||||
name: `${client.guilds.size} Servers -w-`,
|
|
||||||
type: 'WATCHING'
|
|
||||||
},
|
|
||||||
status: 'online'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
activity: {
|
|
||||||
name: 'Δ & ♫',
|
|
||||||
type: 'LISTENING'
|
|
||||||
},
|
|
||||||
status: 'online'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
activity: {
|
|
||||||
name: `'help | thaldr.in`,
|
|
||||||
type: 'WATCHING'
|
|
||||||
},
|
|
||||||
status: 'online'
|
|
||||||
}
|
|
||||||
// { game: { name: `over ${thal.users.get('318044130796109825').username}~`, type: 'WATCHING' }, status: 'dnd' }
|
|
||||||
];
|
|
||||||
let status = States[~~(Math.random() * States.length)];
|
|
||||||
return client.user.setPresence(status);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'ready',
|
name: 'ready',
|
||||||
|
@ -53,9 +15,9 @@ module.exports = {
|
||||||
blapi.handle(client, config.apis);
|
blapi.handle(client, config.apis);
|
||||||
}
|
}
|
||||||
log.hasStarted();
|
log.hasStarted();
|
||||||
randomStatus(client);
|
status.randomStatus(client)
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
randomStatus(client);
|
status.randomStatus(client);
|
||||||
}, 60000);
|
}, 60000);
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -1,6 +1,121 @@
|
||||||
|
function randomStatus(client) {
|
||||||
|
const States = [{
|
||||||
|
activity: {
|
||||||
|
name: 'server fans whirr 💨',
|
||||||
|
type: 'LISTENING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: 'True Damage - GIANTS',
|
||||||
|
type: 'LISTENING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `${client.guilds.size} Servers -w-`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: 'Δ & ♫',
|
||||||
|
type: 'LISTENING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `'help | thaldr.in`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Linux Servers`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `e621 Videos`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `WannaCry`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `the Blockchain!`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `something... ;3`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Skynet`,
|
||||||
|
type: 'WATCHING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Half Life`,
|
||||||
|
type: 'PLAYING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Half Life 2`,
|
||||||
|
type: 'PLAYING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Portal`,
|
||||||
|
type: 'PLAYING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
activity: {
|
||||||
|
name: `Portal 2`,
|
||||||
|
type: 'PLAYING'
|
||||||
|
},
|
||||||
|
status: 'online'
|
||||||
|
}
|
||||||
|
// { game: { name: `over ${thal.users.get('318044130796109825').username}~`, type: 'WATCHING' }, status: 'dnd' }
|
||||||
|
];
|
||||||
|
let status = States[~~(Math.random() * States.length)];
|
||||||
|
return client.user.setPresence(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
playing: "PLAYING",
|
playing: "PLAYING",
|
||||||
watching: "WATCHING",
|
watching: "WATCHING",
|
||||||
listening: "LISTENING",
|
listening: "LISTENING",
|
||||||
streaming: "STREAMING"
|
streaming: "STREAMING",
|
||||||
|
randomStatus
|
||||||
};
|
};
|
|
@ -5,31 +5,19 @@
|
||||||
<meta name="viewport" content="initial-scale=1.0">
|
<meta name="viewport" content="initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible">
|
<meta http-equiv="X-UA-Compatible">
|
||||||
<title>{{title}} | {{subtitle}}</title>
|
<title>{{title}} | {{subtitle}}</title>
|
||||||
{{!-- <script src="../assets/js/main.js" async defer></script> --}}
|
{{!-- <script src="../assets/js/main.js" async defer></script> --}}
|
||||||
<link rel="stylesheet" type="text/css" href="./assets/css/main.css" />
|
<link rel="stylesheet" type="text/css" href="./assets/css/main.css" />
|
||||||
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
|
|
||||||
|
|
||||||
{{!--
|
|
||||||
<link rel="manifest" href="./assets/json/manifest.json">
|
|
||||||
<script type="text/javascript" src="./assets/js/dropdown.js"></script> --}}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="theme-color" content="#ff995d">
|
<meta name="theme-color" content="#ff995d">
|
||||||
<meta property="og:title" content="Thaldrin">
|
<meta property="og:title" content="Thaldrin">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:url" content="https://thaldr.in">
|
<meta property="og:url" content="https://thaldr.in">
|
||||||
{{!-- <meta property="og:image"
|
<meta property="og:description" content="Home of Thaldrin">
|
||||||
content="https://raw.githubusercontent.com/EndlessHosting/assets/master/images/PFPs/code.png">
|
|
||||||
--}} <meta property="og:description" content="Home of Thaldrin">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="icon" type="image/png"
|
<link rel="icon" type="image/png" href="/assets/images/icon.png" sizes="32x32">
|
||||||
href="/assets/images/icon.png" sizes="32x32">
|
<link rel="icon" type="image/png" href="/assets/images/icon.png" sizes="96x96">
|
||||||
<link rel="icon" type="image/png"
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/icon.png">
|
||||||
href="/assets/images/icon.png" sizes="96x96">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180"
|
|
||||||
href="/assets/images/icon.png">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
|
31
views/layouts/widgets.hbs
Normal file
31
views/layouts/widgets.hbs
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible">
|
||||||
|
<title>{{title}} | {{subtitle}}</title>
|
||||||
|
{{!-- <script src="../assets/js/main.js" async defer></script> --}}
|
||||||
|
<link rel="stylesheet" type="text/css" href="./assets/css/widget.css" />
|
||||||
|
|
||||||
|
<meta name="theme-color" content="#ff995d">
|
||||||
|
<meta property="og:title" content="Thaldrin">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:url" content="https://thaldr.in">
|
||||||
|
<meta property="og:description" content="Home of Thaldrin">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="/assets/images/icon.png" sizes="32x32">
|
||||||
|
<link rel="icon" type="image/png" href="/assets/images/icon.png" sizes="96x96">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/icon.png">
|
||||||
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
{{{body}}}
|
||||||
|
</body>
|
||||||
|
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,14 @@
|
||||||
|
<body>
|
||||||
|
<div class="lists">
|
||||||
|
<div class="topgg">
|
||||||
|
<a href="https://top.gg/bot/434662676547764244">
|
||||||
|
<img src="https://top.gg/api/widget/434662676547764244.svg" alt="Thaldrin" /></a>
|
||||||
|
</div>
|
||||||
|
<div class="botlistspace">
|
||||||
|
<a
|
||||||
|
href="https://botlist.space/bot/434662676547764244?utm_source=bls&utm_medium=widget&utm_campaign=434662676547764244">
|
||||||
|
<img src="https://api.botlist.space/widget/434662676547764244/6">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
Loading…
Reference in a new issue