2017-12-07 14:17:32 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-05-14 03:07:29 +00:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2017 New Vector Ltd
|
2017-12-07 14:17:32 +00:00
|
|
|
|
2024-09-09 13:57:16 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2017-12-07 14:17:32 +00:00
|
|
|
*/
|
|
|
|
|
2023-01-12 13:25:14 +00:00
|
|
|
import { AsyncActionFn, AsyncActionPayload } from "../dispatcher/payloads";
|
2020-05-14 03:07:29 +00:00
|
|
|
|
2017-12-07 17:10:45 +00:00
|
|
|
/**
|
2017-12-13 18:28:43 +00:00
|
|
|
* Create an action thunk that will dispatch actions indicating the current
|
|
|
|
* status of the Promise returned by fn.
|
|
|
|
*
|
2017-12-07 17:10:45 +00:00
|
|
|
* @param {string} id the id to give the dispatched actions. This is given a
|
2017-12-12 17:32:43 +00:00
|
|
|
* suffix determining whether it is pending, successful or
|
|
|
|
* a failure.
|
|
|
|
* @param {function} fn a function that returns a Promise.
|
2018-01-15 18:12:27 +00:00
|
|
|
* @param {function?} pendingFn a function that returns an object to assign
|
|
|
|
* to the `request` key of the ${id}.pending
|
|
|
|
* payload.
|
2020-05-14 03:07:29 +00:00
|
|
|
* @returns {AsyncActionPayload} an async action payload. Includes a function
|
|
|
|
* that uses its single argument as a dispatch function
|
|
|
|
* to dispatch the following actions:
|
2017-12-13 18:28:43 +00:00
|
|
|
* `${id}.pending` and either
|
|
|
|
* `${id}.success` or
|
|
|
|
* `${id}.failure`.
|
2018-01-25 20:45:15 +00:00
|
|
|
*
|
|
|
|
* The shape of each are:
|
2018-02-12 18:37:54 +00:00
|
|
|
* { action: '${id}.pending', request }
|
|
|
|
* { action: '${id}.success', result }
|
|
|
|
* { action: '${id}.failure', err }
|
2018-01-25 20:45:15 +00:00
|
|
|
*
|
2018-02-12 18:37:54 +00:00
|
|
|
* where `request` is returned by `pendingFn` and
|
|
|
|
* result is the result of the promise returned by
|
|
|
|
* `fn`.
|
2017-12-07 17:10:45 +00:00
|
|
|
*/
|
2020-05-14 02:48:49 +00:00
|
|
|
export function asyncAction(id: string, fn: () => Promise<any>, pendingFn: () => any | null): AsyncActionPayload {
|
2023-01-12 13:25:14 +00:00
|
|
|
const helper: AsyncActionFn = (dispatch) => {
|
2018-01-15 18:12:27 +00:00
|
|
|
dispatch({
|
|
|
|
action: id + ".pending",
|
2020-05-14 02:48:49 +00:00
|
|
|
request: typeof pendingFn === "function" ? pendingFn() : undefined,
|
2017-12-08 11:08:57 +00:00
|
|
|
});
|
2022-12-12 11:24:14 +00:00
|
|
|
fn()
|
2017-12-12 17:32:43 +00:00
|
|
|
.then((result) => {
|
2021-06-29 12:11:58 +00:00
|
|
|
dispatch({ action: id + ".success", result });
|
2022-12-12 11:24:14 +00:00
|
|
|
})
|
2017-12-07 14:17:32 +00:00
|
|
|
.catch((err) => {
|
2021-06-29 12:11:58 +00:00
|
|
|
dispatch({ action: id + ".failure", err });
|
2022-12-12 11:24:14 +00:00
|
|
|
});
|
2017-12-08 11:08:57 +00:00
|
|
|
};
|
2020-05-14 03:07:29 +00:00
|
|
|
return new AsyncActionPayload(helper);
|
2017-12-07 14:17:32 +00:00
|
|
|
}
|