Skip to content
Snippets Groups Projects
Commit c46850a6 authored by syuilo's avatar syuilo
Browse files

✌️

parent b9dd2be6
No related merge requests found
......@@ -4,6 +4,7 @@
import * as os from 'os';
import version from '../../version';
import config from '../../conf';
import Meta from '../models/meta';
/**
* @swagger
......@@ -39,6 +40,8 @@ import config from '../../conf';
* @return {Promise<any>}
*/
module.exports = (params) => new Promise(async (res, rej) => {
const meta = (await Meta.findOne()) || {};
res({
maintainer: config.maintainer,
version: version,
......@@ -49,6 +52,7 @@ module.exports = (params) => new Promise(async (res, rej) => {
cpu: {
model: os.cpus()[0].model,
cores: os.cpus().length
}
},
top_image: meta.top_image
});
});
import db from '../../db/mongodb';
export default db.get('meta') as any; // fuck type definition
export type IMeta = {
top_image: string;
};
......@@ -113,9 +113,14 @@
this.mode = 'signin';
this.on('mount', () => {
document.documentElement.style.backgroundImage = 'url("/assets/desktop/index.jpg")';
document.documentElement.style.backgroundSize = 'cover';
document.documentElement.style.backgroundPosition = 'center';
document.documentElement.style.backgroundColor = '#444';
this.api('meta').then(meta => {
const img = meta.top_image ? meta.top_image : '/assets/desktop/index.jpg';
document.documentElement.style.backgroundImage = `url("${ img }")`;
document.documentElement.style.backgroundSize = 'cover';
document.documentElement.style.backgroundPosition = 'center';
});
this.api('stats').then(stats => {
this.update({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment