summaryrefslogtreecommitdiff
path: root/packages/backend/src/pages/DepletedTip.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-27 11:28:26 -0300
committerSebastian <sebasjm@gmail.com>2021-08-27 11:28:39 -0300
commiteae88828683ec05d438dd4908d86b73e67e9707d (patch)
treebf8e494c40c0f6f03a5a35fdf19c609fe7d75a7a /packages/backend/src/pages/DepletedTip.tsx
parentf4cbd85008d14a78433b9495cce48903192e2e0d (diff)
downloadmerchant-backoffice-eae88828683ec05d438dd4908d86b73e67e9707d.tar.gz
merchant-backoffice-eae88828683ec05d438dd4908d86b73e67e9707d.tar.bz2
merchant-backoffice-eae88828683ec05d438dd4908d86b73e67e9707d.zip
merchant backend pages
Diffstat (limited to 'packages/backend/src/pages/DepletedTip.tsx')
-rw-r--r--packages/backend/src/pages/DepletedTip.tsx45
1 files changed, 45 insertions, 0 deletions
diff --git a/packages/backend/src/pages/DepletedTip.tsx b/packages/backend/src/pages/DepletedTip.tsx
new file mode 100644
index 0000000..f9cf9bb
--- /dev/null
+++ b/packages/backend/src/pages/DepletedTip.tsx
@@ -0,0 +1,45 @@
+/*
+ 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 { h, render, VNode } from 'preact';
+
+export function DepletedTip(): VNode {
+ return <div>
+ You have already collected this tip.
+ </div>
+}
+
+export function Title(): VNode {
+ return <title>Status of your tip</title>
+}
+
+
+export function mountIntoBody(): void {
+ try {
+ const params = new URL(window.location.href).searchParams
+ render(<DepletedTip
+ // taler_refund_uri={params.get('taler_refund_uri') || undefined}
+ />, document.body);
+ } catch (e) {
+ console.error("got error", e);
+ document.body.innerText = `Fatal error: "${e.message}". Please report this bug at https://bugs.gnunet.org/.`;
+ }
+}
+