summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/hooks/config.ts
blob: 4b22e8ad314e339b80378696ce568b4f8364de4a (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
import { LibtoolVersion } from "@gnu-taler/taler-util";
import { useApiContext } from "@gnu-taler/web-util/browser";
import { useEffect, useState } from "preact/hooks";
import { getInitialBackendBaseURL } from "./backend.js";

/**
 * Protocol version spoken with the bank.
 *
 * Uses libtool's current:revision:age versioning.
 */
export const BANK_INTEGRATION_PROTOCOL_VERSION = "0:0:0";

async function getConfigState(
  request: ReturnType<typeof useApiContext>["request"],
): Promise<SandboxBackend.Config | undefined> {
  try {
    const url = getInitialBackendBaseURL();
    const result = await request<SandboxBackend.Config>(
      url,
      `config`,
    );
    return result.data;
  } catch (error) {
    return undefined;
  }
}

export function useConfigState(): boolean | undefined {
  const [checked, setChecked] = useState<boolean>()
  const { request } = useApiContext();

  useEffect(() => {
    
    getConfigState(request)
      .then((result) => {
        if (!result) {
          setChecked(false)
        } else {
          const r = LibtoolVersion.compare(BANK_INTEGRATION_PROTOCOL_VERSION, result.version)
          setChecked(r?.compatible);
        }
      })
      .catch((error) => {
        setChecked(false);
      });
  });

  return checked;
}