summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-07-21 10:36:15 -0300
committerSebastian <sebasjm@gmail.com>2022-07-21 10:36:30 -0300
commitf9ccb9415739864321f3ea482ce94695f775b9af (patch)
tree9c1641b93603bce2bd2a89b70fddd307aff71c2a /packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx
parent84634a4ab4a61174f1d2e76b26d189bf92902c48 (diff)
downloadwallet-core-f9ccb9415739864321f3ea482ce94695f775b9af.tar.gz
wallet-core-f9ccb9415739864321f3ea482ce94695f775b9af.tar.bz2
wallet-core-f9ccb9415739864321f3ea482ce94695f775b9af.zip
withdraw as module
Diffstat (limited to 'packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx291
1 files changed, 0 insertions, 291 deletions
diff --git a/packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx b/packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx
deleted file mode 100644
index 93e8e936c..000000000
--- a/packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx
+++ /dev/null
@@ -1,291 +0,0 @@
-/*
- This file is part of GNU Taler
- (C) 2022 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 { createExample } from "../test-utils.js";
-import { TermsState } from "../utils/index.js";
-import { View as TestedComponent } from "./Withdraw.js";
-
-export default {
- title: "cta/withdraw",
- component: TestedComponent,
-};
-
-const exchangeList = {
- "exchange.demo.taler.net": "http://exchange.demo.taler.net (USD)",
- "exchange.test.taler.net": "http://exchange.test.taler.net (KUDOS)",
-};
-
-const nullHandler = {
- onClick: async (): Promise<void> => {
- null;
- },
-};
-
-const normalTosState = {
- terms: {
- status: "accepted",
- version: "",
- } as TermsState,
- onAccept: () => null,
- onReview: () => null,
- reviewed: false,
- reviewing: false,
-};
-
-const ageRestrictionOptions: Record<string, string> = "6:12:18"
- .split(":")
- .reduce((p, c) => ({ ...p, [c]: `under ${c}` }), {});
-
-ageRestrictionOptions["0"] = "Not restricted";
-
-const ageRestrictionSelectField = {
- list: ageRestrictionOptions,
- value: "0",
-};
-
-export const TermsOfServiceNotYetLoaded = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- value: "exchange.demo.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: false,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 10000000,
- value: 1,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 1,
- },
- },
-});
-
-export const WithSomeFee = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- value: "exchange.demo.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: false,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 10000000,
- value: 1,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 1,
- },
- tosProps: normalTosState,
- },
-});
-
-export const WithoutFee = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- value: "exchange.demo.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: false,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 0,
- value: 0,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 2,
- },
- tosProps: normalTosState,
- },
-});
-
-export const EditExchangeUntouched = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- value: "exchange.demo.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: true,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 0,
- value: 0,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 2,
- },
- tosProps: normalTosState,
- },
-});
-
-export const EditExchangeModified = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- isDirty: true,
- value: "exchange.test.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: true,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 0,
- value: 0,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 2,
- },
- tosProps: normalTosState,
- },
-});
-
-export const CompletedWithoutBankURL = createExample(TestedComponent, {
- state: {
- status: "completed",
- hook: undefined,
- },
-});
-
-export const WithAgeRestrictionSelected = createExample(TestedComponent, {
- state: {
- hook: undefined,
- status: "success",
- cancelEditExchange: nullHandler,
- confirmEditExchange: nullHandler,
- ageRestriction: ageRestrictionSelectField,
- chosenAmount: {
- currency: "USD",
- value: 2,
- fraction: 10000000,
- },
- doWithdrawal: nullHandler,
- editExchange: nullHandler,
- exchange: {
- list: exchangeList,
- value: "exchange.demo.taler.net",
- onChange: async () => {
- null;
- },
- },
- showExchangeSelection: false,
- mustAcceptFirst: false,
- withdrawalFee: {
- currency: "USD",
- fraction: 0,
- value: 0,
- },
- toBeReceived: {
- currency: "USD",
- fraction: 0,
- value: 2,
- },
- tosProps: normalTosState,
- },
-});