wallet-core/packages/taler-wallet-webextension/src/cta/Withdraw.stories.tsx

232 lines
5.1 KiB
TypeScript
Raw Normal View History

2021-05-31 16:34:48 +02:00
/*
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/>
*/
/**
2021-11-15 15:18:58 +01:00
*
* @author Sebastian Javier Marchano (sebasjm)
*/
2021-05-31 16:34:48 +02:00
2022-03-29 04:41:07 +02:00
import { createExample } from "../test-utils.js";
import { TermsState } from "../utils/index.js";
2022-03-29 04:41:07 +02:00
import { View as TestedComponent } from "./Withdraw.js";
2021-05-31 16:34:48 +02:00
export default {
2021-11-15 15:18:58 +01:00
title: "cta/withdraw",
component: TestedComponent,
2021-05-31 16:34:48 +02:00
};
const exchangeList = {
"exchange.demo.taler.net": "http://exchange.demo.taler.net (USD)",
"exchange.test.taler.net": "http://exchange.test.taler.net (KUDOS)",
};
2021-10-11 20:59:55 +02:00
const nullHandler = {
onClick: async (): Promise<void> => {
2021-11-16 17:59:53 +01:00
null;
},
};
2021-10-12 20:18:29 +02:00
const normalTosState = {
2021-10-12 20:18:29 +02:00
terms: {
status: "accepted",
2021-11-22 21:34:27 +01:00
version: "",
} as TermsState,
onAccept: () => null,
onReview: () => null,
reviewed: false,
reviewing: false,
};
2021-10-12 20:18:29 +02:00
export const TermsOfServiceNotYetLoaded = createExample(TestedComponent, {
state: {
hook: undefined,
status: "success",
cancelEditExchange: nullHandler,
confirmEditExchange: nullHandler,
chosenAmount: {
currency: "USD",
value: 2,
fraction: 10000000,
2021-10-12 20:18:29 +02:00
},
doWithdrawal: nullHandler,
editExchange: nullHandler,
exchange: {
list: exchangeList,
value: "exchange.demo.taler.net",
2022-04-22 21:10:21 +02:00
onChange: async () => {
null;
},
2021-10-12 20:18:29 +02:00
},
showExchangeSelection: false,
mustAcceptFirst: false,
withdrawalFee: {
currency: "USD",
fraction: 10000000,
value: 1,
2021-09-13 18:32:58 +02:00
},
toBeReceived: {
currency: "USD",
fraction: 0,
value: 1,
2021-09-13 18:32:58 +02:00
},
},
2021-11-15 15:18:58 +01:00
});
2021-09-13 18:32:58 +02:00
export const WithSomeFee = createExample(TestedComponent, {
state: {
hook: undefined,
status: "success",
cancelEditExchange: nullHandler,
confirmEditExchange: nullHandler,
chosenAmount: {
currency: "USD",
value: 2,
fraction: 10000000,
2021-09-13 18:32:58 +02:00
},
doWithdrawal: nullHandler,
editExchange: nullHandler,
exchange: {
list: exchangeList,
value: "exchange.demo.taler.net",
2022-04-22 21:10:21 +02:00
onChange: async () => {
null;
},
2021-09-13 18:32:58 +02:00
},
showExchangeSelection: false,
mustAcceptFirst: false,
withdrawalFee: {
currency: "USD",
fraction: 10000000,
value: 1,
},
toBeReceived: {
currency: "USD",
fraction: 0,
value: 1,
},
tosProps: normalTosState,
2021-09-13 18:32:58 +02:00
},
2021-11-15 15:18:58 +01:00
});
2021-09-13 18:32:58 +02:00
export const WithoutFee = createExample(TestedComponent, {
state: {
hook: undefined,
status: "success",
cancelEditExchange: nullHandler,
confirmEditExchange: nullHandler,
chosenAmount: {
currency: "USD",
value: 2,
fraction: 10000000,
},
doWithdrawal: nullHandler,
editExchange: nullHandler,
exchange: {
list: exchangeList,
value: "exchange.demo.taler.net",
2022-04-22 21:10:21 +02:00
onChange: async () => {
null;
},
},
showExchangeSelection: false,
mustAcceptFirst: false,
withdrawalFee: {
currency: "USD",
fraction: 0,
value: 0,
},
toBeReceived: {
currency: "USD",
fraction: 0,
value: 2,
},
tosProps: normalTosState,
2021-09-13 18:32:58 +02:00
},
2021-11-15 15:18:58 +01:00
});
2021-09-13 18:32:58 +02:00
export const EditExchangeUntouched = createExample(TestedComponent, {
state: {
hook: undefined,
status: "success",
cancelEditExchange: nullHandler,
confirmEditExchange: nullHandler,
chosenAmount: {
currency: "USD",
value: 2,
fraction: 10000000,
},
doWithdrawal: nullHandler,
editExchange: nullHandler,
exchange: {
list: exchangeList,
value: "exchange.demo.taler.net",
2022-04-22 21:10:21 +02:00
onChange: async () => {
null;
},
},
showExchangeSelection: true,
mustAcceptFirst: false,
withdrawalFee: {
currency: "USD",
fraction: 0,
value: 0,
},
toBeReceived: {
currency: "USD",
fraction: 0,
value: 2,
},
tosProps: normalTosState,
2021-09-13 18:32:58 +02:00
},
2021-11-15 15:18:58 +01:00
});
2021-09-13 18:32:58 +02:00
export const EditExchangeModified = createExample(TestedComponent, {
state: {
hook: undefined,
status: "success",
cancelEditExchange: nullHandler,
confirmEditExchange: nullHandler,
chosenAmount: {
currency: "USD",
value: 2,
fraction: 10000000,
2021-09-13 18:32:58 +02:00
},
doWithdrawal: nullHandler,
editExchange: nullHandler,
exchange: {
list: exchangeList,
isDirty: true,
value: "exchange.test.taler.net",
2022-04-22 21:10:21 +02:00
onChange: async () => {
null;
},
},
showExchangeSelection: true,
mustAcceptFirst: false,
withdrawalFee: {
currency: "USD",
fraction: 0,
value: 0,
},
toBeReceived: {
currency: "USD",
fraction: 0,
value: 2,
},
tosProps: normalTosState,
2021-11-15 15:18:58 +01:00
},
});