2019-11-07 18:21:14 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
|
|
|
*
|
|
|
|
* This is free software, licensed under the GNU General Public License v3.
|
|
|
|
* See /LICENSE for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
2019-12-26 23:34:59 +01:00
|
|
|
import { Spinner } from "../bootstrap/Spinner";
|
|
|
|
import { API_STATE } from "../api/utils";
|
2019-11-07 18:21:14 +01:00
|
|
|
import { ErrorMessage } from "./ErrorMessage";
|
|
|
|
|
|
|
|
function withEither(conditionalFn, Either) {
|
|
|
|
return (Component) => (props) => {
|
|
|
|
if (conditionalFn(props)) {
|
2019-11-15 09:55:24 +01:00
|
|
|
return <Either {...props} />;
|
2019-11-07 18:21:14 +01:00
|
|
|
}
|
|
|
|
return <Component {...props} />;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading
|
|
|
|
|
|
|
|
function isSending(props) {
|
|
|
|
if (Array.isArray(props.apiState)) {
|
2020-08-18 15:39:00 +02:00
|
|
|
return props.apiState.some((state) =>
|
|
|
|
[API_STATE.INIT, API_STATE.SENDING].includes(state)
|
2019-11-07 18:21:14 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return [API_STATE.INIT, API_STATE.SENDING].includes(props.apiState);
|
|
|
|
}
|
|
|
|
|
|
|
|
const withSpinner = (conditionalFn) => withEither(conditionalFn, Spinner);
|
|
|
|
const withSending = (Either) => withEither(isSending, Either);
|
|
|
|
const withSpinnerOnSending = withSpinner(isSending);
|
|
|
|
|
|
|
|
// Error handling
|
|
|
|
|
|
|
|
const withError = (conditionalFn) => withEither(conditionalFn, ErrorMessage);
|
2020-08-18 15:39:00 +02:00
|
|
|
const withErrorMessage = withError((props) => {
|
|
|
|
if (Array.isArray(props.apiState)) {
|
|
|
|
return props.apiState.includes(API_STATE.ERROR);
|
|
|
|
}
|
|
|
|
return props.apiState === API_STATE.ERROR;
|
|
|
|
});
|
2019-11-07 18:21:14 +01:00
|
|
|
|
|
|
|
export {
|
2020-08-18 15:39:00 +02:00
|
|
|
withEither,
|
|
|
|
withSpinner,
|
|
|
|
withSending,
|
|
|
|
withSpinnerOnSending,
|
|
|
|
withError,
|
|
|
|
withErrorMessage,
|
2019-11-07 18:21:14 +01:00
|
|
|
};
|