2016-03-31 22:33:49 +02:00
|
|
|
'use strict';
|
|
|
|
|
2016-06-12 20:11:43 +02:00
|
|
|
const router = require('../router.js');
|
2016-05-29 12:28:52 +02:00
|
|
|
const misc = require('../util/misc.js');
|
2016-04-09 18:54:23 +02:00
|
|
|
const views = require('../util/views.js');
|
2016-05-29 12:28:52 +02:00
|
|
|
const PostContentControl = require('../controls/post_content_control.js');
|
2016-05-29 12:29:24 +02:00
|
|
|
const PostNotesOverlayControl
|
|
|
|
= require('../controls/post_notes_overlay_control.js');
|
2016-05-29 12:28:52 +02:00
|
|
|
const TagAutoCompleteControl =
|
|
|
|
require('../controls/tag_auto_complete_control.js');
|
2016-03-31 22:33:49 +02:00
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
const template = views.getTemplate('home');
|
|
|
|
const statsTemplate = views.getTemplate('home-stats');
|
|
|
|
|
2016-04-09 18:54:23 +02:00
|
|
|
class HomeView {
|
2016-06-14 10:31:48 +02:00
|
|
|
constructor(ctx) {
|
|
|
|
this._hostNode = document.getElementById('content-holder');
|
2016-03-31 22:33:49 +02:00
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
const sourceNode = template(ctx);
|
|
|
|
views.replaceContent(this._hostNode, sourceNode);
|
2016-06-01 21:31:15 +02:00
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
if (this._formNode) {
|
|
|
|
this._formNode.querySelector('input[name=all-posts')
|
|
|
|
.addEventListener('click', e => this._evtAllPostsClick(e));
|
|
|
|
|
|
|
|
this._tagAutoCompleteControl = new TagAutoCompleteControl(
|
|
|
|
this._searchInputNode);
|
|
|
|
this._formNode.addEventListener(
|
|
|
|
'submit', e => this._evtFormSubmit(e));
|
2016-05-29 12:28:52 +02:00
|
|
|
}
|
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
showSuccess(text) {
|
|
|
|
views.showSuccess(this._hostNode, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
showError(text) {
|
|
|
|
views.showError(this._hostNode, text);
|
|
|
|
}
|
2016-05-29 12:28:52 +02:00
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
setStats(stats) {
|
|
|
|
views.replaceContent(this._statsContainerNode, statsTemplate(stats));
|
|
|
|
}
|
|
|
|
|
|
|
|
setFeaturedPost(postInfo) {
|
|
|
|
if (this._postContainerNode && postInfo.featuredPost) {
|
|
|
|
this._postContentControl = new PostContentControl(
|
|
|
|
this._postContainerNode,
|
|
|
|
postInfo.featuredPost,
|
2016-05-29 12:28:52 +02:00
|
|
|
() => {
|
|
|
|
return [
|
|
|
|
window.innerWidth * 0.8,
|
|
|
|
window.innerHeight * 0.7,
|
|
|
|
];
|
|
|
|
});
|
2016-05-29 12:29:24 +02:00
|
|
|
|
2016-06-14 10:31:48 +02:00
|
|
|
this._postNotesOverlay = new PostNotesOverlayControl(
|
|
|
|
this._postContainerNode.querySelector('.post-overlay'),
|
|
|
|
postInfo.featuredPost);
|
2016-05-29 12:28:52 +02:00
|
|
|
}
|
2016-03-31 22:33:49 +02:00
|
|
|
}
|
2016-06-14 10:31:48 +02:00
|
|
|
|
|
|
|
get _statsContainerNode() {
|
|
|
|
return this._hostNode.querySelector('.stats-container');
|
|
|
|
}
|
|
|
|
|
|
|
|
get _postContainerNode() {
|
|
|
|
return this._hostNode.querySelector('.post-container');
|
|
|
|
}
|
|
|
|
|
|
|
|
get _formNode() {
|
|
|
|
return this._hostNode.querySelector('form');
|
|
|
|
}
|
|
|
|
|
|
|
|
get _searchInputNode() {
|
|
|
|
return this._formNode.querySelector('input[name=search-text]');
|
|
|
|
}
|
|
|
|
|
|
|
|
_evtAllPostsClick(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
router.show('/posts/');
|
|
|
|
}
|
|
|
|
|
|
|
|
_evtFormSubmit(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
this._searchInputNode.blur();
|
|
|
|
router.show('/posts/' + misc.formatSearchQuery({
|
|
|
|
text: this._searchInputNode.value}));
|
|
|
|
}
|
2016-03-31 22:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = HomeView;
|