1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-mobile/utils/showMessageBox.ts
Henry Heino 55cafb8891
Android: Add support for Markdown editor plugins (#10086)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
2024-03-11 15:02:15 +00:00

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;