szurubooru/client/js/views/home_view.js

25 lines
565 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');
2016-04-08 10:35:38 +02:00
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,
2016-04-08 10:35:38 +02:00
});
views.listenToMessages(target);
views.showView(target, source);
2016-03-31 22:33:49 +02:00
}
}
module.exports = HomeView;