about summary refs log tree commit diff
path: root/components/PostList/PostList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/PostList/PostList.vue')
-rw-r--r--components/PostList/PostList.vue58
1 files changed, 58 insertions, 0 deletions
diff --git a/components/PostList/PostList.vue b/components/PostList/PostList.vue
new file mode 100644
index 0000000..2d1bb2d
--- /dev/null
+++ b/components/PostList/PostList.vue
@@ -0,0 +1,58 @@
+<template>
+  <pure-post-list v-if="rawPosts" :posts="posts" :loading="loading" />
+</template>
+
+<script>
+import k from '~/api'
+import PurePostList from './PurePostList'
+
+export default {
+  name: 'PostList',
+  components: { PurePostList },
+  props: {
+    max: {
+      type: Number,
+      required: false
+    }
+  },
+  async asyncData() {
+    return {
+      loading: process.client,
+      rawPosts: process.client ? undefined : k.getPosts()
+    }
+  },
+  data() {
+    return {
+      loading: true,
+      rawPosts: []
+    }
+  },
+  mounted() {
+    if (process.client && this.rawPosts === undefined) {
+      this.loadPostsClient()
+    }
+  },
+  computed: {
+    posts() {
+      if (this.max) {
+        return this.rawPosts.slice(0, this.max)
+      }
+      return this.rawPosts
+    }
+  },
+  methods: {
+    async loadPostsClient() {
+      let posts = await this.$axios.get(
+        `${window.location.origin}/api/posts.json`
+      )
+      this.rawPosts = posts.data
+      this.rawPosts = this.rawPosts.map(post => ({
+        title: post.content.meta.title,
+        description: post.content.description,
+        route: post.route
+      }))
+      this.loading = false
+    }
+  }
+}
+</script>