wallet-core/packages/taler-wallet-webextension/src/popup/TalerActionFound.stories.tsx

53 lines
1.5 KiB
TypeScript
Raw Normal View History

2021-10-12 20:18:29 +02:00
/*
This file is part of GNU Taler
2022-06-06 17:05:26 +02:00
(C) 2022 Taler Systems S.A.
2021-10-12 20:18:29 +02:00
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-10-12 20:18:29 +02:00
2022-03-29 04:41:07 +02:00
import { createExample } from "../test-utils.js";
import { TalerActionFound as TestedComponent } from "./TalerActionFound.js";
2021-10-12 20:18:29 +02:00
export default {
2021-11-15 15:18:58 +01:00
title: "popup/TalerActionFound",
2021-10-12 20:18:29 +02:00
component: TestedComponent,
};
export const PayAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://pay/something",
2021-10-12 20:18:29 +02:00
});
export const WithdrawalAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://withdraw/something",
2021-10-12 20:18:29 +02:00
});
export const TipAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://tip/something",
2021-10-12 20:18:29 +02:00
});
export const NotifyAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://notify-reserve/something",
2021-10-12 20:18:29 +02:00
});
export const RefundAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://refund/something",
2021-10-12 20:18:29 +02:00
});
export const InvalidAction = createExample(TestedComponent, {
2021-11-15 15:18:58 +01:00
url: "taler://something/asd",
2021-10-12 20:18:29 +02:00
});