diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 6ac7f6d..4e841a9 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -129,6 +129,7 @@ import PrivateConversation = Conversation.PrivateConversation; import * as _ from 'lodash'; import NoteStatus from '../site/NoteStatus.vue'; + import { Dialog } from '../helpers/dialog'; // import { EventBus } from './preview/event-bus'; const unreadClasses = { @@ -317,7 +318,7 @@ } logOut(): void { - if(confirm(l('chat.confirmLeave'))) core.connection.close(); + if(Dialog.confirmDialog(l('chat.confirmLeave'))) core.connection.close(); } showSettings(): void { diff --git a/chat/Logs.vue b/chat/Logs.vue index 5b48a34..aac2b25 100644 --- a/chat/Logs.vue +++ b/chat/Logs.vue @@ -73,6 +73,7 @@ import l from './localize'; import MessageView from './message_view'; import Zip from './zip'; + import { Dialog } from '../helpers/dialog'; function formatDate(this: void, date: Date): string { return format(date, 'yyyy-MM-dd'); @@ -195,7 +196,7 @@ downloadDay(): void { if(this.selectedConversation === undefined || this.selectedDate === undefined || this.messages.length === 0) return; - const html = confirm(l('logs.html')); + const html = Dialog.confirmDialog(l('logs.html')); const name = `${this.selectedConversation.name}-${formatDate(new Date(this.selectedDate))}.${html ? 'html' : 'txt'}`; this.download(name, `data:${encodeURIComponent(name)},${encodeURIComponent(getLogs(this.messages, html))}`); } @@ -203,7 +204,7 @@ async downloadConversation(): Promise { if(this.selectedConversation === undefined) return; const zip = new Zip(); - const html = confirm(l('logs.html')); + const html = Dialog.confirmDialog(l('logs.html')); for(const date of this.dates) { const messages = await core.logs.getLogs(this.selectedCharacter, this.selectedConversation.key, date); zip.addFile(`${formatDate(date)}.${html ? 'html' : 'txt'}`, getLogs(messages, html)); @@ -212,9 +213,9 @@ } async downloadCharacter(): Promise { - if(this.selectedCharacter === '' || !confirm(l('logs.confirmExport', this.selectedCharacter))) return; + if(this.selectedCharacter === '' || !Dialog.confirmDialog(l('logs.confirmExport', this.selectedCharacter))) return; const zip = new Zip(); - const html = confirm(l('logs.html')); + const html = Dialog.confirmDialog(l('logs.html')); for(const conv of this.conversations) { zip.addFile(`${conv.name}/`, ''); const dates = await core.logs.getLogDates(this.selectedCharacter, conv.key); diff --git a/chat/StatusPicker.vue b/chat/StatusPicker.vue index 6a52545..90c56c7 100644 --- a/chat/StatusPicker.vue +++ b/chat/StatusPicker.vue @@ -27,6 +27,7 @@ import core from './core'; import { BBCodeView } from '../bbcode/view'; import * as _ from 'lodash'; + import { Dialog } from '../helpers/dialog'; @Component({ components: {modal: Modal, bbcode: BBCodeView(core.bbCodeParser)} @@ -75,7 +76,7 @@ async removeStatusHistoryEntry(index: number): Promise { - if(confirm('Are you sure you want to remove this status message?')) { + if(Dialog.confirmDialog('Are you sure you want to remove this status message?')) { this.history.splice(index, 1); await core.settingsStore.set('statusHistory', this.history); diff --git a/chat/ads/ConversationAdSettings.vue b/chat/ads/ConversationAdSettings.vue index e62a583..0a40f8a 100644 --- a/chat/ads/ConversationAdSettings.vue +++ b/chat/ads/ConversationAdSettings.vue @@ -32,6 +32,7 @@ import l from '../localize'; import {Editor} from '../bbcode'; import core from '../core'; + import { Dialog } from '../../helpers/dialog'; @Component({ components: {modal: Modal, editor: Editor} @@ -72,14 +73,13 @@ this.ads.push(''); } - removeAd(index: number): void { - if (confirm('Are you sure you wish to remove this ad?')) { + // if (confirm('Are you sure you wish to remove this ad?')) { + if (Dialog.confirmDialog('Are you sure you wish to remove this ad?')) { this.ads.splice(index, 1); } } - moveAdUp(index: number): void { const ad = this.ads.splice(index, 1); diff --git a/electron/main.ts b/electron/main.ts index 5c136fb..a9b564a 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -194,8 +194,6 @@ function createWindow(): electron.BrowserWindow | undefined { if(tabCount >= 3) return; const lastState = windowState.getSavedWindowState(); - console.log('ICon is', process.platform === 'win32' ? winIcon : pngIcon); - const windowProperties: electron.BrowserWindowConstructorOptions & {maximized: boolean} = { ...lastState, center: lastState.x === undefined, diff --git a/helpers/dialog.ts b/helpers/dialog.ts new file mode 100644 index 0000000..ea05c3f --- /dev/null +++ b/helpers/dialog.ts @@ -0,0 +1,15 @@ +import * as remote from '@electron/remote'; + +export class Dialog { + static confirmDialog(message: string): boolean { + const result = remote.dialog.showMessageBoxSync({ + message, + type: 'question', + buttons: ['Yes', 'No'], + defaultId: 1, + cancelId: 1 + }); + + return result === 0; + } +}