2019-09-15 01:53:38 +00:00
|
|
|
const m = require('mithril')
|
2019-10-01 12:19:10 +00:00
|
|
|
const ApiArticle = require('../api/article.p')
|
2019-09-15 01:53:38 +00:00
|
|
|
const Authentication = require('../authentication')
|
|
|
|
const Fileinfo = require('../widgets/fileinfo')
|
|
|
|
|
|
|
|
const Article = {
|
|
|
|
oninit: function(vnode) {
|
|
|
|
this.error = ''
|
2022-07-20 00:33:06 +00:00
|
|
|
this.loading = false
|
|
|
|
this.showLoading = null
|
|
|
|
this.data = {
|
|
|
|
article: null,
|
|
|
|
files: [],
|
|
|
|
}
|
2019-10-02 00:55:15 +00:00
|
|
|
this.showcomments = false
|
2019-10-01 17:18:20 +00:00
|
|
|
|
|
|
|
if (window.__nfpdata) {
|
|
|
|
this.path = m.route.param('id')
|
2022-07-20 00:33:06 +00:00
|
|
|
this.data.article = window.__nfpdata
|
2019-10-01 17:18:20 +00:00
|
|
|
window.__nfpdata = null
|
|
|
|
} else {
|
|
|
|
this.fetchArticle(vnode)
|
|
|
|
}
|
2019-09-15 01:53:38 +00:00
|
|
|
},
|
|
|
|
|
2022-07-20 00:33:06 +00:00
|
|
|
onbeforeupdate: function(vnode) {
|
|
|
|
if (this.path !== m.route.param('id')) {
|
|
|
|
this.fetchArticle(vnode)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-09-15 01:53:38 +00:00
|
|
|
fetchArticle: function(vnode) {
|
2021-02-05 11:50:01 +00:00
|
|
|
this.error = ''
|
2019-09-15 01:53:38 +00:00
|
|
|
this.path = m.route.param('id')
|
2019-10-02 00:55:15 +00:00
|
|
|
this.showcomments = false
|
2022-07-20 00:33:06 +00:00
|
|
|
|
|
|
|
if (this.showLoading) {
|
|
|
|
clearTimeout(this.showLoading)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.data.article) {
|
|
|
|
this.showLoading = setTimeout(() => {
|
|
|
|
this.showLoading = null
|
|
|
|
this.loading = true
|
|
|
|
m.redraw()
|
|
|
|
}, 150)
|
|
|
|
} else {
|
|
|
|
this.loading = true
|
2019-09-15 01:53:38 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 11:35:00 +00:00
|
|
|
ApiArticle.getArticle(this.path)
|
2022-07-20 00:33:06 +00:00
|
|
|
.then((result) => {
|
|
|
|
this.data = result
|
|
|
|
|
|
|
|
if (!this.data.article) {
|
|
|
|
this.error = 'Article not found'
|
2019-10-01 17:18:20 +00:00
|
|
|
}
|
2022-07-20 00:33:06 +00:00
|
|
|
}, (err) => {
|
|
|
|
this.error = err.message
|
2019-09-15 01:53:38 +00:00
|
|
|
})
|
2022-07-20 00:33:06 +00:00
|
|
|
.then(() => {
|
|
|
|
clearTimeout(this.showLoading)
|
|
|
|
this.showLoading = null
|
|
|
|
this.loading = false
|
2019-09-15 01:53:38 +00:00
|
|
|
m.redraw()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
view: function(vnode) {
|
2019-10-02 17:40:32 +00:00
|
|
|
var deviceWidth = window.innerWidth
|
|
|
|
var imagePath = ''
|
|
|
|
|
2022-07-20 00:33:06 +00:00
|
|
|
if (this.data.article && this.data.article.media) {
|
2019-10-02 17:40:32 +00:00
|
|
|
var pixelRatio = window.devicePixelRatio || 1
|
|
|
|
if ((deviceWidth < 800 && pixelRatio <= 1)
|
|
|
|
|| (deviceWidth < 600 && pixelRatio > 1)) {
|
2022-07-20 00:33:06 +00:00
|
|
|
imagePath = this.data.article.media.medium_url
|
2019-10-02 17:40:32 +00:00
|
|
|
} else {
|
2022-07-20 00:33:06 +00:00
|
|
|
imagePath = this.data.article.media.large_url
|
2019-10-02 17:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 01:53:38 +00:00
|
|
|
return (
|
|
|
|
this.loading ?
|
2019-10-02 21:48:50 +00:00
|
|
|
m('article.article', m('div.loading-spinner'))
|
2021-02-05 11:50:01 +00:00
|
|
|
: this.error
|
|
|
|
? m('div.error-wrapper', m('div.error', {
|
|
|
|
onclick: function() {
|
|
|
|
vnode.state.error = ''
|
|
|
|
vnode.state.fetchArticle(vnode)
|
|
|
|
},
|
|
|
|
}, 'Article error: ' + this.error))
|
|
|
|
: m('article.article', [
|
2022-07-20 00:33:06 +00:00
|
|
|
this.data.article.page_path
|
|
|
|
? m('div.goback', ['« ', m(m.route.Link, { href: '/page/' + this.data.article.page_path }, this.data.article.page_name)])
|
|
|
|
: null,
|
|
|
|
m('header', m('h1', this.data.article.name)),
|
2021-02-05 11:50:01 +00:00
|
|
|
m('.fr-view', [
|
2022-07-20 00:33:06 +00:00
|
|
|
this.data.article.media
|
2021-02-05 11:50:01 +00:00
|
|
|
? m('a.cover', {
|
|
|
|
rel: 'noopener',
|
2022-07-20 00:33:06 +00:00
|
|
|
href: this.data.article.media.link,
|
|
|
|
}, m('img', { src: imagePath, alt: 'Cover image for ' + this.data.article.name }))
|
2021-02-05 11:50:01 +00:00
|
|
|
: null,
|
2022-07-20 00:33:06 +00:00
|
|
|
this.data.article.content ? m.trust(this.data.article.content) : null,
|
|
|
|
this.data.files.map(function(file) {
|
|
|
|
return m(Fileinfo, { file: file })
|
|
|
|
}),
|
2021-02-05 11:50:01 +00:00
|
|
|
m('div.entrymeta', [
|
|
|
|
'Posted ',
|
2022-07-20 00:33:06 +00:00
|
|
|
this.data.article.page_path
|
|
|
|
? [
|
|
|
|
'in',
|
|
|
|
m(m.route.Link, { href: '/page/' + this.data.article.page_path }, this.data.article.page_name)
|
|
|
|
]
|
|
|
|
: '',
|
|
|
|
'at ' + (this.data.article.publish_at.replace('T', ' ').split('.')[0]).substr(0, 16),
|
|
|
|
' by ' + (this.data.article.admin_name || 'Admin'),
|
2021-02-05 11:50:01 +00:00
|
|
|
]),
|
2019-10-02 18:47:20 +00:00
|
|
|
]),
|
2021-02-05 11:50:01 +00:00
|
|
|
Authentication.currentUser
|
|
|
|
? m('div.admin-actions', [
|
|
|
|
m('span', 'Admin controls:'),
|
2022-07-20 00:33:06 +00:00
|
|
|
m(m.route.Link, { href: '/admin/articles/' + this.data.article.path }, 'Edit article'),
|
2019-10-02 00:55:15 +00:00
|
|
|
])
|
2021-02-05 11:50:01 +00:00
|
|
|
: null,
|
|
|
|
this.showcomments
|
|
|
|
? m('div.commentcontainer', [
|
|
|
|
m('div#disqus_thread', { oncreate: function() {
|
|
|
|
let fullhost = window.location.protocol + '//' + window.location.host
|
|
|
|
/*eslint-disable */
|
|
|
|
window.disqus_config = function () {
|
|
|
|
this.page.url = fullhost + '/article/' + vnode.state.article.path
|
|
|
|
this.page.identifier = 'article-' + vnode.state.article.id
|
|
|
|
};
|
|
|
|
(function() { // DON'T EDIT BELOW THIS LINE
|
|
|
|
var d = document, s = d.createElement('script');
|
|
|
|
s.src = 'https://nfp-moe.disqus.com/embed.js';
|
|
|
|
s.setAttribute('data-timestamp', +new Date());
|
|
|
|
(d.head || d.body).appendChild(s);
|
|
|
|
})()
|
|
|
|
/*eslint-enable */
|
|
|
|
}}, m('div.loading-spinner')),
|
|
|
|
])
|
|
|
|
: m('button.opencomments', {
|
|
|
|
onclick: function() { vnode.state.showcomments = true },
|
|
|
|
}, 'Open comment discussion'),
|
|
|
|
])
|
2019-09-15 01:53:38 +00:00
|
|
|
)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Article
|
2019-09-16 16:47:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
<div id="disqus_thread"></div>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
|
|
|
|
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
|
|
|
|
/*
|
|
|
|
var disqus_config = function () {
|
|
|
|
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
|
|
|
|
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
|
|
|
};
|
|
|
|
/
|
|
|
|
(function() { // DON'T EDIT BELOW THIS LINE
|
|
|
|
var d = document, s = d.createElement('script');
|
|
|
|
s.src = 'https://nfp-moe.disqus.com/embed.js';
|
|
|
|
s.setAttribute('data-timestamp', +new Date());
|
|
|
|
(d.head || d.body).appendChild(s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
|
|
*/
|