[LoadingButton] Should be able to show loading indicator if onClick returns a promise
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 99.1k
- Forks
- 32.5k
- Avg merge
- 2d 17h
- Merged PRs (30d)
- 106
Description
Duplicates
- I have searched the existing issues
Latest version
- I have tested the latest version
Summary 💡
If the onClick handler returns a promise the LoadingButton could set its own internal state to show a loading indicator despite the loading prop value. Also, this behavior could be enabled/disabled by default and overwritten with a prop like enableOnClickPromiseCheck or something like that
Examples 🌈
I don't expect this work as it is, just drafted something quickly based on the component source code, this example does not consider the ability to enable/disable this behavior since it may break existing users' implementations.
const LoadingButton = props => {
const [_loading, setLoading] = useState(false);
const { onClick, loading = false, disabled = false, ...other } = props;
const ownerState = {
...props,
loadingIndicator,
loadingPosition,
variant,
loading: _loading || loading,
disabled: disabled || _loading || loading,
};
const loadingButtonLoadingIndicator = ownerState.loading ? (
<LoadingButtonLoadingIndicator className={classes.loadingIndicator} ownerState={ownerState}>
{loadingIndicator}
</LoadingButtonLoadingIndicator>
) : null;
const handleClick = async (...args)=> {
setLoading(true);
await onClick?.(...args);
setLoading(false);
};
return <LoadingButtonRoot onClick={handleClick} disabled={ownerState.disabled} {...other} />;
};
Motivation 🔦
In my projects, I used to create my own AsyncButton every time, with my own progress indicator and all that stuff. When LoadingButton was added to the lab package I thought I could get rid of that but it only made it simple, I don't need to maintain the loading indicator styling and all that stuff but I still need to wrap my handler to achieve the promise like behavior
CodeSandbox 🧊
https://codesandbox.io/s/mui-async-loading-button-demo-g1fm6e
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the LoadingButton component source and reproduce the reported behavior using the linked CodeSandbox. Trace how onClick, loading, disabled, and the loading indicator currently interact, then determine the expected behavior for promise-returning handlers and how it should be enabled or disabled. Done means the behavior and its compatibility with existing loading prop usage are covered by the component's tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, react
- Domain
- frontend
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100