summaryrefslogtreecommitdiff
path: root/packages/web-util/src/components/Button.tsx
blob: 18cecbdab839a97d239ebdea684b0e278b7a317f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
 This file is part of GNU Taler
 (C) 2022-2024 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/>
 */

import {
  AbsoluteTime,
  OperationAlternative,
  OperationFail,
  OperationOk,
  OperationResult,
  TalerError,
  TranslatedString,
} from "@gnu-taler/taler-util";
// import { NotificationMessage, notifyInfo } from "@gnu-taler/web-util/browser";
import { Fragment, VNode, h } from "preact";
import { HTMLAttributes, useState } from "preact/compat";
import {
  NotificationMessage,
  buildUnifiedRequestErrorMessage,
  notifyInfo,
  useTranslationContext,
} from "../index.browser.js";
// import { useBankCoreApiContext } from "../context/config.js";

// function errorMap<T extends OperationFail<unknown>>(resp: T, map: (d: T["case"]) => TranslatedString): void {

export type OnOperationSuccesReturnType<T> = (
  result: T extends OperationOk<any> ? T : never,
) => TranslatedString | void;
export type OnOperationFailReturnType<T> = (
  (d: (T extends OperationFail<any> ? T : never) | (T extends OperationAlternative<any,any> ? T : never)) => TranslatedString)

export interface ButtonHandler<T extends OperationResult<A, B>, A, B> {
  onClick: () => Promise<T | undefined>;
  onNotification: (n: NotificationMessage) => void;
  onOperationSuccess: OnOperationSuccesReturnType<T>;
  onOperationFail: OnOperationFailReturnType<T>;
  onOperationComplete?: () => void;
}

interface Props<T extends OperationResult<A, B>, A, B>
  extends HTMLAttributes<HTMLButtonElement> {
  handler: ButtonHandler<T, A, B> | undefined;
}

/**
 * This button accept an async function and report a notification
 * on error or success.
 *
 * When the async function is running the inner text will change into
 * a "loading" animation.
 *
 * @param param0
 * @returns
 */
export function Button<T extends OperationResult<A, B>, A, B>({
  handler,
  children,
  disabled,
  onClick: clickEvent,
  ...rest
}: Props<T, A, B>): VNode {
  const { i18n } = useTranslationContext();
  const [running, setRunning] = useState(false);
  return (
    <button
      {...rest}
      disabled={disabled || running}
      onClick={(e) => {
        e.preventDefault();
        if (!handler) {
          return;
        }
        setRunning(true);
        handler
          .onClick()
          .then((resp) => {
            if (resp) {
              if (resp.type === "ok") {
                const result: OperationOk<any> = resp;
                // @ts-expect-error this is an operationOk
                const msg = handler.onOperationSuccess(result);
                if (msg) {
                  notifyInfo(msg);
                }
              }
              if (resp.type === "fail") {
                const d = 'detail' in resp  ? resp.detail : undefined
                
                const title = handler.onOperationFail(resp as any);
                handler.onNotification({
                  title,
                  type: "error",
                  description: d && d.hint ? d.hint as TranslatedString : undefined,
                  debug: d,
                  when: AbsoluteTime.now(),
                });
              }
            }
            if (handler.onOperationComplete) {
              handler.onOperationComplete();
            }
            setRunning(false);
          })
          .catch((error) => {
            console.error(error);

            if (error instanceof TalerError) {
              handler.onNotification(
                buildUnifiedRequestErrorMessage(i18n, error),
              );
            } else {
              const description = (
                error instanceof Error ? error.message : String(error)
              ) as TranslatedString;

              handler.onNotification({
                title: i18n.str`Operation failed`,
                type: "error",
                description,
                when: AbsoluteTime.now(),
              });
            }

            if (handler.onOperationComplete) {
              handler.onOperationComplete();
            }
            setRunning(false);
          });
      }}
    >
      {running ? <Wait /> : children}
    </button>
  );
}

function Wait(): VNode {
  return (
    <Fragment>
      <style>
        {`
      #l1 {          width: 120px;
        height: 20px;
        -webkit-mask: radial-gradient(circle closest-side, currentColor 90%, #0000) left/20% 100%;
        background: linear-gradient(currentColor 0 0) left/0% 100% no-repeat #ddd;
        animation: l17 2s infinite steps(6);
      }
      @keyframes l17 {
          100% {background-size:120% 100%}
`}
      </style>
      <div id="l1" />
    </Fragment>
  );
}