szurubooru/client/js/views/home_view.js

27 lines
643 B
JavaScript
Raw Normal View History

2016-03-31 22:33:49 +02:00
'use strict';
const config = require('../config.js');
const views = require('../util/views.js');
2016-03-31 22:33:49 +02:00
class HomeView {
2016-03-31 22:33:49 +02:00
constructor() {
this._template = views.getTemplate('home');
2016-03-31 22:33:49 +02:00
}
2016-04-08 10:35:38 +02:00
render(ctx) {
const target = document.getElementById('content-holder');
const source = this._template({
2016-04-06 20:38:45 +02:00
name: config.name,
2016-03-31 23:18:08 +02:00
version: config.meta.version,
2016-04-05 17:57:26 +02:00
buildDate: config.meta.buildDate,
diskUsage: ctx.diskUsage,
postCount: ctx.postCount,
2016-04-08 10:35:38 +02:00
});
views.listenToMessages(source);
views.showView(target, source);
2016-03-31 22:33:49 +02:00
}
}
module.exports = HomeView;