about summary refs log tree commit diff
path: root/pages/kronika
diff options
context:
space:
mode:
Diffstat (limited to 'pages/kronika')
-rw-r--r--pages/kronika/index.vue42
1 files changed, 3 insertions, 39 deletions
diff --git a/pages/kronika/index.vue b/pages/kronika/index.vue
index d28c2ca..b478a75 100644
--- a/pages/kronika/index.vue
+++ b/pages/kronika/index.vue
@@ -1,52 +1,16 @@
 <template>
   <div style="padding-top: 20px">
     <h2>Ostatnie wpisy</h2>
-    <div v-if="posts" class="post-list">
-      <chronicle-post
-        v-for="(post, index) in posts"
-        :key="index"
-        :route="post.route"
-        :title="post.content.meta.title"
-        :description="post.content.description"
-      />
-    </div>
+    <post-list />
   </div>
 </template>
 
 <script>
-import ChroniclePost from '~/components/ChroniclePost'
-import k from '~/api'
+import PostList from '~/components/PostList'
 
 export default {
   components: {
-    ChroniclePost
-  },
-  async asyncData() {
-    return {
-      posts: process.client ? undefined : k.getPosts()
-    }
-  },
-  mounted() {
-    if (process.client && this.posts === undefined) {
-      this.getPosts().then(posts => (this.posts = posts))
-    }
-  },
-  methods: {
-    async getPosts() {
-      const r = await this.$axios.get(
-        `${window.location.origin}/api/posts.json`
-      )
-      return r.data
-    }
+    PostList
   }
 }
 </script>
-
-<style scoped>
-.post-list {
-  display: flex;
-  flex-wrap: wrap;
-  justify-content: center;
-  max-width: 900px;
-}
-</style>
\ No newline at end of file