summaryrefslogtreecommitdiff
path: root/packages/frontend/src/paths/instance/update/index.tsx
blob: b226af0bf23d477e411b648efb6adf9f8ccd94be (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
/*
 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/>
 */
import { Fragment, h, VNode } from "preact";
import { Loading } from "../../../components/exception/loading";
import { useInstanceContext } from "../../../context/instance";
import { MerchantBackend } from "../../../declaration";
import { HttpError } from "../../../hooks/backend";
import { useInstanceAPI, useInstanceDetails } from "../../../hooks/instance";
import { UpdatePage } from "./UpdatePage";

export interface Props {
  onBack: () => void;
  onConfirm: () => void;

  onUnauthorized: () => VNode;
  onNotFound: () => VNode;
  onLoadError: (e: HttpError) => VNode;
  onUpdateError: (e: HttpError) => void;

}

export default function Update({ onBack, onConfirm, onLoadError, onNotFound, onUpdateError, onUnauthorized }: Props): VNode {
  const { updateInstance, clearToken, setNewToken } = useInstanceAPI();
  const result = useInstanceDetails()
  const { changeToken } = useInstanceContext()

  if (result.clientError && result.isUnauthorized) return onUnauthorized()
  if (result.clientError && result.isNotfound) return onNotFound()
  if (result.loading) return <Loading />
  if (!result.ok) return onLoadError(result)

  return <Fragment>
    <UpdatePage
      onBack={onBack}
      isLoading={false}
      selected={result.data}
      onUpdate={(d: MerchantBackend.Instances.InstanceReconfigurationMessage): Promise<void> => {
        return updateInstance(d).then(onConfirm).catch(onUpdateError)
      }} 
      onChangeAuth={(d: MerchantBackend.Instances.InstanceAuthConfigurationMessage): Promise<void> => {
        const apiCall = d.method === 'external' ? clearToken() : setNewToken(d.token!);
        return apiCall.then(() => changeToken(d.token)).then(onConfirm).catch(onUpdateError)
      }} 
      />
  </Fragment>
}