diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-13 14:33:54 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-13 14:43:52 +0000 |
| commit | a2ca7db052c0ce20b404f6f81b691850b3318b97 (patch) | |
| tree | d060d3a541f0305c1df7e88ac321e6166d8000d9 /packages/mobile/components/ui/ActionButton.tsx | |
| parent | 408984d9325f12937ac5747505370dec26e46d3f (diff) | |
| download | karakeep-a2ca7db052c0ce20b404f6f81b691850b3318b97.tar.zst | |
mobile: Optimistic UI updates on actions
Diffstat (limited to 'packages/mobile/components/ui/ActionButton.tsx')
| -rw-r--r-- | packages/mobile/components/ui/ActionButton.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/mobile/components/ui/ActionButton.tsx b/packages/mobile/components/ui/ActionButton.tsx new file mode 100644 index 00000000..c51eb332 --- /dev/null +++ b/packages/mobile/components/ui/ActionButton.tsx @@ -0,0 +1,21 @@ +import { ActivityIndicator, Pressable, PressableProps } from "react-native"; + +export function ActionButton({ + children, + loading, + disabled, + ...props +}: PressableProps & { + loading: boolean; +}) { + if (disabled !== undefined) { + disabled ||= loading; + } else if (loading) { + disabled = true; + } + return ( + <Pressable {...props} disabled={disabled}> + {loading ? <ActivityIndicator /> : children} + </Pressable> + ); +} |
