mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
55cafb8891
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
41 lines
755 B
TypeScript
41 lines
755 B
TypeScript
import { _ } from '@joplin/lib/locale';
|
|
import { Alert, AlertButton } from 'react-native';
|
|
|
|
interface Options {
|
|
title: string;
|
|
buttons: string[];
|
|
}
|
|
|
|
const showMessageBox = (message: string, options: Options = null) => {
|
|
return new Promise<number>(resolve => {
|
|
const defaultButtons: AlertButton[] = [
|
|
{
|
|
text: _('OK'),
|
|
onPress: () => resolve(0),
|
|
},
|
|
{
|
|
text: _('Cancel'),
|
|
onPress: () => resolve(1),
|
|
style: 'cancel',
|
|
},
|
|
];
|
|
|
|
let buttons = defaultButtons;
|
|
if (options?.buttons) {
|
|
buttons = options.buttons.map((text, index) => {
|
|
return {
|
|
text,
|
|
onPress: () => resolve(index),
|
|
};
|
|
});
|
|
}
|
|
|
|
Alert.alert(
|
|
options?.title ?? '',
|
|
message,
|
|
buttons,
|
|
);
|
|
});
|
|
};
|
|
export default showMessageBox;
|