about summary refs log tree commit diff
path: root/components/Posts/PostList/PurePostList.stories.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-12-03 13:05:15 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-12-03 13:05:15 +0100
commit34da06762e81f85c5df29fdec66e2055b8b930a9 (patch)
tree490af00a9973732ebe7c3455f638d3faaf54bc9e /components/Posts/PostList/PurePostList.stories.js
parent65ff7d9f2daa59e44f0cdb1aae8d7cbcd9d4603f (diff)
downloadpuszcza-34da06762e81f85c5df29fdec66e2055b8b930a9.tar.gz
puszcza-34da06762e81f85c5df29fdec66e2055b8b930a9.zip
Add missing stories
Diffstat (limited to 'components/Posts/PostList/PurePostList.stories.js')
-rw-r--r--components/Posts/PostList/PurePostList.stories.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/components/Posts/PostList/PurePostList.stories.js b/components/Posts/PostList/PurePostList.stories.js
new file mode 100644
index 0000000..e2c39de
--- /dev/null
+++ b/components/Posts/PostList/PurePostList.stories.js
@@ -0,0 +1,30 @@
+import { storiesOf } from '@storybook/vue'
+
+import { postLink } from '../PostLink.stories'
+
+import PurePostList from './PurePostList'
+
+export const posts = Array(5).fill(postLink)
+
+storiesOf('Posts/PurePostList', module)
+  .add('default', () => {
+    return {
+      components: { PurePostList },
+      template: `<pure-post-list :posts="posts"/>`,
+      data: () => ({ posts })
+    }
+  })
+  .add('loading', () => {
+    return {
+      components: { PurePostList },
+      template: `<pure-post-list :posts="posts" loading/>`,
+      data: () => ({ posts: [] })
+    }
+  })
+  .add('no posts', () => {
+    return {
+      components: { PurePostList },
+      template: `<pure-post-list :posts="posts"/>`,
+      data: () => ({ posts: [] })
+    }
+  })