1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-desktop/gui/dialogs.ts

32 lines
666 B
TypeScript

const smalltalk = require('smalltalk');
class Dialogs {
async alert(message: string, title = '') {
await smalltalk.alert(title, message);
}
async confirm(message: string, title = '', options: any = {}) {
try {
await smalltalk.confirm(title, message, options);
return true;
} catch (error) {
return false;
}
}
async prompt(message: string, title = '', defaultValue = '', options: any = null) {
if (options === null) options = {};
try {
const answer = await smalltalk.prompt(title, message, defaultValue, options);
return answer;
} catch (error) {
return null;
}
}
}
const dialogs = new Dialogs();
export default dialogs;