summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-07-16 12:00:39 -0300
committerSebastian <sebasjm@gmail.com>2021-07-16 12:00:41 -0300
commit56902288c6ce498cdfbd80ac9036cd457872a73b (patch)
treed8c6fa70edcaadc33859df4817ab40c4f469057e /packages/taler-wallet-webextension/src/popup/Popup.stories.tsx
parent2b9686ccc69d39140d83efe0bfc6ebb2b77ff140 (diff)
downloadwallet-core-56902288c6ce498cdfbd80ac9036cd457872a73b.tar.gz
wallet-core-56902288c6ce498cdfbd80ac9036cd457872a73b.tar.bz2
wallet-core-56902288c6ce498cdfbd80ac9036cd457872a73b.zip
added fake header to stories
Diffstat (limited to 'packages/taler-wallet-webextension/src/popup/Popup.stories.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/popup/Popup.stories.tsx50
1 files changed, 50 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx b/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx
new file mode 100644
index 000000000..ec3634d9b
--- /dev/null
+++ b/packages/taler-wallet-webextension/src/popup/Popup.stories.tsx
@@ -0,0 +1,50 @@
+/*
+ This file is part of GNU Taler
+ (C) 2021 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ */
+
+/**
+*
+* @author Sebastian Javier Marchano (sebasjm)
+*/
+
+import { Fragment, FunctionalComponent } from 'preact';
+import { NavBar as TestedComponent } from './popup';
+
+export default {
+ title: 'popup/header',
+ // component: TestedComponent,
+ argTypes: {
+ onRetry: { action: 'onRetry' },
+ onDelete: { action: 'onDelete' },
+ onBack: { action: 'onBack' },
+ }
+};
+
+
+function createExample<Props>(Component: FunctionalComponent<Props>, props: Partial<Props>) {
+ const r = (args: any) => <Component {...args} />
+ r.args = props
+ return r
+}
+
+export const OnBalance = createExample(TestedComponent, {
+ devMode:false,
+ path:'/balance'
+});
+
+export const OnHistoryWithDevMode = createExample(TestedComponent, {
+ devMode:true,
+ path:'/history'
+});