diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-29 12:31:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 12:31:13 +0100 |
commit | b424c1ce5573f72e36fcca00ef22e4b2f3dde9ff (patch) | |
tree | ff1d1de74e1b165a36d7804a49a3692e6cbea289 /pages/kronika | |
parent | 13c55f4d5fca3e3452317322e387f75e0690f9c8 (diff) | |
parent | 3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d (diff) | |
download | puszcza-b424c1ce5573f72e36fcca00ef22e4b2f3dde9ff.tar.gz puszcza-b424c1ce5573f72e36fcca00ef22e4b2f3dde9ff.zip |
Merge pull request #27 from 19pdh/develop
Develop
Diffstat (limited to 'pages/kronika')
-rw-r--r-- | pages/kronika/_year/_month/_day/_title/index.vue | 66 |
1 files changed, 37 insertions, 29 deletions
diff --git a/pages/kronika/_year/_month/_day/_title/index.vue b/pages/kronika/_year/_month/_day/_title/index.vue index 331ed7a..d67acbc 100644 --- a/pages/kronika/_year/_month/_day/_title/index.vue +++ b/pages/kronika/_year/_month/_day/_title/index.vue @@ -17,47 +17,55 @@ </template> <script> -const md = require('markdown-it')() -import frontmatter from 'front-matter' -import k from '~/api' +import axios from 'axios' + +import { apiUrl } from '~/api' export default { head() { - return { - meta: [ - { - hid: 'og:title', - property: 'og:title', - content: this.attributes.title, - }, - { - hid: 'og:type', - property: 'og:type', - content: 'article', - }, - { - hid: 'og:article:author', - property: 'og:article:author', - content: this.attributes.author, - }, - { - hid: 'og:image', - property: 'og:image', - content: this.attributes.image, - }, - ], + if (!this.notFound && this.attributes) { + return { + meta: [ + { + hid: 'og:title', + property: 'og:title', + content: this.title, + }, + { + hid: 'og:type', + property: 'og:type', + content: 'article', + }, + { + hid: 'og:article:author', + property: 'og:article:author', + content: this.author, + }, + { + hid: 'og:image', + property: 'og:image', + content: this.attributes.image, + }, + ], + } } }, async asyncData({ params }) { const { year, month, day, title } = params - const post = k.getPost(year, month, day, title) + const response = await axios + .get(`${apiUrl}/posts/${year}/${month}/${day}/${title}.json`) + .catch((err) => ({ notFound: true })) + + const post = response.data if (post === undefined) return { notFound: true } return { params, - attributes: post.content.meta, - content: post.content.html, + title: post.title, + author: post.author, + attributes: post.meta, + content: post.content, } }, data() { |