wallet-core/packages/taler-wallet-webextension/src/wallet/AddNewActionView.tsx

66 lines
2.1 KiB
TypeScript
Raw Normal View History

import { classifyTalerUri, TalerUriType } from "@gnu-taler/taler-util";
import { Fragment, h, VNode } from "preact";
import { useState } from "preact/hooks";
import { platform } from "../platform/api";
2022-01-04 21:06:17 +01:00
import { Button, ButtonSuccess, InputWithLabel } from "../components/styled";
import { useTranslationContext } from "../context/translation";
export interface Props {
onCancel: () => void;
}
export function AddNewActionView({ onCancel }: Props): VNode {
const [url, setUrl] = useState("");
const uriType = classifyTalerUri(url);
const { i18n } = useTranslationContext();
function redirectToWallet() {
platform.openWalletURIFromPopup(uriType, url);
}
return (
<Fragment>
<section>
<InputWithLabel
invalid={url !== "" && uriType === TalerUriType.Unknown}
>
<label>GNU Taler URI</label>
<div>
<input
style={{ width: "100%" }}
type="text"
value={url}
placeholder="taler://pay/...."
onInput={(e) => setUrl(e.currentTarget.value)}
/>
</div>
</InputWithLabel>
</section>
<footer>
2022-02-23 19:18:37 +01:00
<Button onClick={onCancel}>
2022-03-17 16:39:16 +01:00
<i18n.Translate>Cancel</i18n.Translate>
2022-02-23 19:18:37 +01:00
</Button>
{uriType !== TalerUriType.Unknown && (
<ButtonSuccess onClick={redirectToWallet}>
{(() => {
switch (uriType) {
case TalerUriType.TalerNotifyReserve:
return <i18n.Translate>Open reserve page</i18n.Translate>;
case TalerUriType.TalerPay:
return <i18n.Translate>Open pay page</i18n.Translate>;
case TalerUriType.TalerRefund:
return <i18n.Translate>Open refund page</i18n.Translate>;
case TalerUriType.TalerTip:
return <i18n.Translate>Open tip page</i18n.Translate>;
case TalerUriType.TalerWithdraw:
return <i18n.Translate>Open withdraw page</i18n.Translate>;
}
return <Fragment />;
})()}
</ButtonSuccess>
)}
</footer>
</Fragment>
);
}