about summary refs log tree commit diff
path: root/api
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-29 12:22:09 +0100
committerGitHub <noreply@github.com>2020-01-29 12:22:09 +0100
commit3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d (patch)
tree8f9140f2326df571a6990df6e9cbd1525f19e374 /api
parent3c2ac6715dfffc2eda38e014ed0b4986ccc7f75a (diff)
parent0a8355312990db95de3aa4e946b907ed0abf5a12 (diff)
downloadpuszcza-3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d.tar.gz
puszcza-3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d.zip
Merge pull request #26 from 19pdh/feature/json-api
Feature/json api
Diffstat (limited to 'api')
-rw-r--r--api/index.js15
-rw-r--r--api/kronikarz.js7
2 files changed, 16 insertions, 6 deletions
diff --git a/api/index.js b/api/index.js
index 5658365..7843302 100644
--- a/api/index.js
+++ b/api/index.js
@@ -1,7 +1,10 @@
-import Kronikarz from 'kronikarz'
+export const apiUrl = 'https://puszcza.netlify.com/api'
 
-const POSTS_PATH = './content/wpisy'
-
-const k = new Kronikarz(POSTS_PATH)
-
-export default k
+export const parsePosts = (posts) =>
+  posts.map((post) => ({
+    title: post.title,
+    image: post.image,
+    description: post.description,
+    route: post.path,
+    meta: post.meta,
+  }))
diff --git a/api/kronikarz.js b/api/kronikarz.js
new file mode 100644
index 0000000..5658365
--- /dev/null
+++ b/api/kronikarz.js
@@ -0,0 +1,7 @@
+import Kronikarz from 'kronikarz'
+
+const POSTS_PATH = './content/wpisy'
+
+const k = new Kronikarz(POSTS_PATH)
+
+export default k