wallet-core/packages/merchant-backoffice-ui/src/hooks/reserves.ts

165 lines
5.0 KiB
TypeScript
Raw Normal View History

/*
This file is part of GNU Taler
2022-12-16 20:59:37 +01:00
(C) 2021-2023 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 useSWR, { useSWRConfig } from "swr";
2022-11-04 14:24:29 +01:00
import { MerchantBackend } from "../declaration.js";
import { HttpError, HttpResponse, HttpResponseOk } from "../utils/request.js";
import { useBackendInstanceRequest, useMatchMutate } from "./backend.js";
export function useReservesAPI(): ReserveMutateAPI {
const mutateAll = useMatchMutate();
const { mutate } = useSWRConfig();
const { request } = useBackendInstanceRequest();
const createReserve = async (
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.ReserveCreateRequest,
): Promise<
HttpResponseOk<MerchantBackend.Tips.ReserveCreateConfirmation>
> => {
const res = await request<MerchantBackend.Tips.ReserveCreateConfirmation>(
`/private/reserves`,
{
method: "POST",
data,
2022-12-19 16:23:39 +01:00
},
);
//evict reserve list query
await mutateAll(/.*private\/reserves.*/);
return res;
};
const authorizeTipReserve = async (
pub: string,
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.TipCreateRequest,
): Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>> => {
const res = await request<MerchantBackend.Tips.TipCreateConfirmation>(
`/private/reserves/${pub}/authorize-tip`,
{
method: "POST",
data,
2022-12-19 16:23:39 +01:00
},
);
//evict reserve details query
await mutate([`/private/reserves/${pub}`]);
return res;
};
const authorizeTip = async (
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.TipCreateRequest,
): Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>> => {
const res = await request<MerchantBackend.Tips.TipCreateConfirmation>(
`/private/tips`,
{
method: "POST",
data,
2022-12-19 16:23:39 +01:00
},
);
//evict all details query
await mutateAll(/.*private\/reserves\/.*/);
return res;
};
const deleteReserve = async (pub: string): Promise<HttpResponse<void>> => {
const res = await request<void>(`/private/reserves/${pub}`, {
method: "DELETE",
});
//evict reserve list query
await mutateAll(/.*private\/reserves.*/);
return res;
};
return { createReserve, authorizeTip, authorizeTipReserve, deleteReserve };
}
export interface ReserveMutateAPI {
createReserve: (
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.ReserveCreateRequest,
) => Promise<HttpResponseOk<MerchantBackend.Tips.ReserveCreateConfirmation>>;
authorizeTipReserve: (
id: string,
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.TipCreateRequest,
) => Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>>;
authorizeTip: (
2022-12-19 16:23:39 +01:00
data: MerchantBackend.Tips.TipCreateRequest,
) => Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>>;
deleteReserve: (id: string) => Promise<HttpResponse<void>>;
}
export function useInstanceReserves(): HttpResponse<MerchantBackend.Tips.TippingReserveStatus> {
const { fetcher } = useBackendInstanceRequest();
const { data, error, isValidating } = useSWR<
HttpResponseOk<MerchantBackend.Tips.TippingReserveStatus>,
HttpError
>([`/private/reserves`], fetcher);
if (isValidating) return { loading: true, data: data?.data };
if (data) return data;
if (error) return error;
return { loading: true };
}
export function useReserveDetails(
2022-12-19 16:23:39 +01:00
reserveId: string,
): HttpResponse<MerchantBackend.Tips.ReserveDetail> {
const { reserveDetailFetcher } = useBackendInstanceRequest();
const { data, error, isValidating } = useSWR<
HttpResponseOk<MerchantBackend.Tips.ReserveDetail>,
HttpError
>([`/private/reserves/${reserveId}`], reserveDetailFetcher, {
refreshInterval: 0,
refreshWhenHidden: false,
revalidateOnFocus: false,
revalidateOnReconnect: false,
refreshWhenOffline: false,
});
if (isValidating) return { loading: true, data: data?.data };
if (data) return data;
if (error) return error;
return { loading: true };
}
export function useTipDetails(
2022-12-19 16:23:39 +01:00
tipId: string,
): HttpResponse<MerchantBackend.Tips.TipDetails> {
const { tipsDetailFetcher } = useBackendInstanceRequest();
const { data, error, isValidating } = useSWR<
HttpResponseOk<MerchantBackend.Tips.TipDetails>,
HttpError
>([`/private/tips/${tipId}`], tipsDetailFetcher, {
refreshInterval: 0,
refreshWhenHidden: false,
revalidateOnFocus: false,
revalidateOnReconnect: false,
refreshWhenOffline: false,
});
if (isValidating) return { loading: true, data: data?.data };
if (data) return data;
if (error) return error;
return { loading: true };
}