about summary refs log tree commit diff
path: root/components/Posts/PostList/index.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-12-05 17:34:44 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-12-05 17:34:44 +0100
commit29a4e2488151861c10abeb0a05622e4d06e07c60 (patch)
treec237820ce1f7588d44820f64163bc0caaa693d7f /components/Posts/PostList/index.js
parent6a532274bf7d69cefe9e640274f30c3fdcc17c92 (diff)
downloadpuszcza-29a4e2488151861c10abeb0a05622e4d06e07c60.tar.gz
puszcza-29a4e2488151861c10abeb0a05622e4d06e07c60.zip
Fix SSR on PostList
Diffstat (limited to 'components/Posts/PostList/index.js')
-rw-r--r--components/Posts/PostList/index.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/components/Posts/PostList/index.js b/components/Posts/PostList/index.js
index dbb515e..11d44ff 100644
--- a/components/Posts/PostList/index.js
+++ b/components/Posts/PostList/index.js
@@ -1,3 +1,22 @@
+import axios from 'axios'
+
+import k from '~/api'
 import PostList from './PostList'
 
+export const getPosts = async () => {
+  if (process.client) {
+    let posts = await axios.get(`${window.location.origin}/api/posts.json`)
+    return parsePosts(posts.data)
+  } else {
+    return parsePosts(k.getPosts())
+  }
+}
+
+export const parsePosts = posts =>
+  posts.map(post => ({
+    title: post.content.meta.title,
+    description: post.content.description,
+    route: post.route
+  }))
+
 export default PostList