-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathdashboardBridge.ts
More file actions
575 lines (524 loc) · 17.7 KB
/
Copy pathdashboardBridge.ts
File metadata and controls
575 lines (524 loc) · 17.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
import type {
DashboardBridge,
DashboardLayout,
DashboardProfile,
DriverTagSettings,
SaveDashboardOptions,
} from '@irdashies/types';
import { app, ipcMain } from 'electron';
import { onDashboardUpdated } from '../../storage/dashboardEvents';
import {
getDriverTagSettings,
saveDriverTagSettings,
} from '../../storage/driverTagSettings';
import {
getDashboard,
saveDashboard,
resetDashboard,
saveGarageCoverImage,
getGarageCoverImageAsDataUrl,
savePlayerIconImage,
getPlayerIconImageAsDataUrl,
listDashboards,
listProfiles,
createProfile,
cloneProfile,
deleteProfile,
renameProfile,
getCurrentProfileId,
setCurrentProfile,
getProfile,
updateProfileTheme,
getOrCreateDefaultDashboardForProfile,
} from '../../storage/dashboards';
import { writeData } from '../../storage/storage';
import { OverlayManager } from '../../overlayManager';
import {
getAnalyticsOptOut as getAnalyticsOptOutStorage,
setAnalyticsOptOut as setAnalyticsOptOutStorage,
} from '../../storage/analytics';
import {
getCycleProfiles as getCycleProfilesStorage,
setCycleProfiles as setCycleProfilesStorage,
getShowProfileBanner as getShowProfileBannerStorage,
setShowProfileBanner as setShowProfileBannerStorage,
} from '../../storage/appSettings';
import { Analytics } from '../../analytics';
import logger from '../../logger';
/**
* Injects global driver tag settings into a dashboard layout before broadcasting.
* Overlays read from generalSettings.driverTagSettings, so merging here keeps them
* compatible without requiring any changes to overlay components.
*/
const mergeDriverTagsIntoLayout = (
dashboard: DashboardLayout,
tagSettings: DriverTagSettings | undefined
): DashboardLayout => {
if (!tagSettings) return dashboard;
return {
...dashboard,
generalSettings: {
...dashboard.generalSettings,
driverTagSettings: tagSettings,
},
};
};
// Store callbacks for dashboard updates
const dashboardUpdateCallbacks = new Set<
(dashboard: DashboardLayout, profileId?: string) => void
>();
const demoModeCallbacks = new Set<(isDemoMode: boolean) => void>();
/**
* Main dashboard bridge instance exposed to component server
*/
export const dashboardBridge: DashboardBridge = {
onEditModeToggled: () => {
// Not used by component server, but required by interface
return undefined;
},
dashboardUpdated: (
callback: (dashboard: DashboardLayout, profileId?: string) => void
) => {
dashboardUpdateCallbacks.add(callback);
return () => dashboardUpdateCallbacks.delete(callback);
},
reloadDashboard: () => {
// Not used by component server
},
saveDashboard: (
dashboard: DashboardLayout,
options?: SaveDashboardOptions
) => {
const targetProfileId = options?.profileId || getCurrentProfileId();
saveDashboard(targetProfileId, dashboard);
if (dashboardUpdateCallbacks.size > 0) {
dashboardUpdateCallbacks.forEach((callback) => {
try {
callback(dashboard, targetProfileId);
} catch (err) {
logger.error('Error in dashboard update callback:', err);
}
});
}
},
resetDashboard: async (resetEverything: boolean) => {
const currentProfileId = getCurrentProfileId();
return resetDashboard(resetEverything, currentProfileId);
},
toggleLockOverlays: async () => {
return false;
},
getAppVersion: async () => {
return '1.0.0';
},
onDemoModeChanged: (callback: (isDemoMode: boolean) => void) => {
demoModeCallbacks.add(callback);
return () => demoModeCallbacks.delete(callback);
},
getCurrentDashboard: () => {
const currentProfileId = getCurrentProfileId();
const dashboard = getDashboard(currentProfileId);
if (!dashboard) return dashboard;
return mergeDriverTagsIntoLayout(dashboard, getDriverTagSettings());
},
getDashboardForProfile: async (profileId: string) => {
// Check if profile exists first
const profile = getProfile(profileId);
if (!profile) {
logger.info('[dashboardBridge] Profile not found:', profileId);
return null;
}
let dashboard = getDashboard(profileId);
// If dashboard doesn't exist for this profile, create a default one
if (!dashboard) {
dashboard = getOrCreateDefaultDashboardForProfile(profileId);
}
return mergeDriverTagsIntoLayout(dashboard, getDriverTagSettings());
},
toggleDemoMode: () => {
return;
},
getAnalyticsOptOut: async () => {
return getAnalyticsOptOutStorage();
},
setAnalyticsOptOut: async (optOut: boolean) => {
setAnalyticsOptOutStorage(optOut);
},
// Profile management
listProfiles: async () => {
return listProfiles();
},
createProfile: async (name: string) => {
return createProfile(name);
},
cloneProfile: async (profileId: string) => {
return cloneProfile(profileId);
},
deleteProfile: async (profileId: string) => {
deleteProfile(profileId);
},
renameProfile: async (profileId: string, newName: string) => {
renameProfile(profileId, newName);
},
switchProfile: async (profileId: string) => {
setCurrentProfile(profileId);
},
getCurrentProfile: async () => {
const currentProfileId = getCurrentProfileId();
return getProfile(currentProfileId);
},
updateProfileTheme: async (
profileId: string,
themeSettings: DashboardProfile['themeSettings']
) => {
updateProfileTheme(profileId, themeSettings);
},
stop: () => {
return;
},
saveGarageCoverImage: (buffer: Uint8Array) => {
return saveGarageCoverImage(buffer);
},
getGarageCoverImageAsDataUrl: (imagePath: string) => {
return getGarageCoverImageAsDataUrl(imagePath);
},
savePlayerIconImage: (buffer: Uint8Array) => {
return savePlayerIconImage(buffer);
},
getPlayerIconImageAsDataUrl: (imagePath: string) => {
return getPlayerIconImageAsDataUrl(imagePath);
},
exportDashboardToFile: async () => false,
importDashboardFromFile: async () => null,
openLogFolder: async () => undefined,
exportLogFile: async () => false,
setAutoStart: async (enabled: boolean) => {
app.setLoginItemSettings({
openAtLogin: enabled,
});
},
getDriverTagSettings: async () => {
return getDriverTagSettings();
},
saveDriverTagSettings: async (settings: DriverTagSettings) => {
saveDriverTagSettings(settings);
},
openWidgetSettings: async () => {
// Not used by component server
},
};
export async function publishDashboardUpdates(
overlayManager: OverlayManager,
analytics: Analytics,
dashboardTransform: (dashboard: DashboardLayout) => DashboardLayout = (
dashboard
) => dashboard
) {
let lastProfileId = getCurrentProfileId();
let hideTimer: ReturnType<typeof setTimeout> | undefined;
let settleTimer: ReturnType<typeof setTimeout> | undefined;
const applyDashboard = (merged: DashboardLayout, profileId: string) => {
overlayManager.closeOrCreateWindows(merged);
overlayManager.publishMessage('dashboardUpdated', merged);
// Notify component server bridge subscribers
dashboardUpdateCallbacks.forEach((callback) => {
try {
callback(merged, profileId);
} catch (err) {
logger.error('Error in dashboard update callback:', err);
}
});
};
onDashboardUpdated((dashboard) => {
const merged = dashboardTransform(
mergeDriverTagsIntoLayout(dashboard, getDriverTagSettings())
);
const profileId = getCurrentProfileId();
if (profileId === lastProfileId) {
applyDashboard(merged, profileId);
return;
}
// Profile switch: the overlay windows resize to the new layout, which is
// visible if it happens on screen. So hide the widgets, resize while
// hidden, then reveal and show the name. The renderer just toggles
// visibility on command; main sequences the timing.
clearTimeout(hideTimer);
clearTimeout(settleTimer);
lastProfileId = profileId;
const name = getProfile(profileId)?.name ?? '';
// Banner is cosmetic; the hide/reveal still runs to mask the resize.
const showBanner = getShowProfileBannerStorage();
const HIDE_MS = 120; // let the renderer hide before we resize
const SETTLE_MS = 80; // let the new layout settle before revealing
overlayManager.publishMessage('profileTransition', { hidden: true, name });
hideTimer = setTimeout(() => {
applyDashboard(merged, profileId);
settleTimer = setTimeout(() => {
overlayManager.publishMessage('profileTransition', {
hidden: false,
name,
showBanner,
});
}, SETTLE_MS);
}, HIDE_MS);
});
ipcMain.on('saveDashboard', (_, dashboard, options) => {
// For layout-only changes (drag/resize), skip the window refresh
if (options?.skipWindowRefresh) {
// Save without emitting event to avoid window recreation
const currentProfileId = getCurrentProfileId();
const existingDashboards = listDashboards();
existingDashboards[currentProfileId] = dashboard;
writeData('dashboards', existingDashboards);
// Create windows for any new displays the widget may have been dragged to
overlayManager.ensureDisplayWindows(dashboard);
// Still notify renderer of the update
overlayManager.publishMessage('dashboardUpdated', dashboard);
return;
}
const currentProfileId = getCurrentProfileId();
saveDashboard(currentProfileId, dashboard);
if (options?.forceReload) {
overlayManager.forceRefreshOverlays(dashboard);
}
});
ipcMain.on('reloadDashboard', () => {
const currentProfileId = getCurrentProfileId();
const dashboard = getDashboard(currentProfileId);
if (!dashboard) return;
const merged = dashboardTransform(
mergeDriverTagsIntoLayout(dashboard, getDriverTagSettings())
);
overlayManager.closeOrCreateWindows(merged);
overlayManager.publishMessage('dashboardUpdated', merged);
});
ipcMain.handle('resetDashboard', (_, resetEverything: boolean) => {
const currentProfileId = getCurrentProfileId();
const result = resetDashboard(resetEverything, currentProfileId);
overlayManager.forceRefreshOverlays(result);
return result;
});
ipcMain.handle('toggleLockOverlays', () => {
return overlayManager.toggleLockOverlays();
});
ipcMain.handle('openWidgetSettings', (_, widgetType: string) => {
overlayManager.focusSettingsWindow(widgetType);
});
ipcMain.handle('getAppVersion', () => {
return overlayManager.getVersion();
});
ipcMain.handle('saveGarageCoverImage', async (_, buffer: number[]) => {
try {
const uint8Array = new Uint8Array(buffer);
return await saveGarageCoverImage(uint8Array);
} catch (err) {
logger.error('[Bridge] Error saving garage cover image:', err);
throw err;
}
});
ipcMain.handle(
'getGarageCoverImageAsDataUrl',
async (_, imagePath: string) => {
try {
return await getGarageCoverImageAsDataUrl(imagePath);
} catch (err) {
logger.error('Error loading garage cover image as data URL:', err);
throw err;
}
}
);
ipcMain.handle('savePlayerIconImage', async (_, buffer: number[]) => {
try {
const uint8Array = new Uint8Array(buffer);
return await savePlayerIconImage(uint8Array);
} catch (err) {
logger.error('[Bridge] Error saving player icon image:', err);
throw err;
}
});
ipcMain.handle(
'getPlayerIconImageAsDataUrl',
async (_, imagePath: string) => {
try {
return await getPlayerIconImageAsDataUrl(imagePath);
} catch (err) {
logger.error('Error loading player icon image as data URL:', err);
throw err;
}
}
);
ipcMain.handle('getAnalyticsOptOut', () => {
return getAnalyticsOptOutStorage();
});
ipcMain.handle('setAnalyticsOptOut', (_, optOut: boolean) => {
setAnalyticsOptOutStorage(optOut);
analytics.capture({
event: 'analytics_opt_out_changed',
properties: {
opt_out: optOut,
},
});
});
ipcMain.handle('getCycleProfiles', () => getCycleProfilesStorage());
ipcMain.handle('setCycleProfiles', (_, enabled: boolean) =>
setCycleProfilesStorage(enabled)
);
ipcMain.handle('getShowProfileBanner', () => getShowProfileBannerStorage());
ipcMain.handle('setShowProfileBanner', (_, enabled: boolean) =>
setShowProfileBannerStorage(enabled)
);
// Profile management IPC handlers
ipcMain.handle('listProfiles', () => {
return listProfiles();
});
ipcMain.handle('createProfile', (_, name: string) => {
return createProfile(name);
});
ipcMain.handle('cloneProfile', (_, profileId: string) => {
return cloneProfile(profileId);
});
ipcMain.handle('deleteProfile', (_, profileId: string) => {
deleteProfile(profileId);
});
ipcMain.handle('renameProfile', (_, profileId: string, newName: string) => {
renameProfile(profileId, newName);
});
ipcMain.handle('switchProfile', (_, profileId: string) => {
// setCurrentProfile emits dashboardUpdated → publishDashboardUpdates
// live-updates overlays (closeOrCreateWindows + publishMessage). No
// destroy/recreate, so the switch is near-instant.
setCurrentProfile(profileId);
});
ipcMain.handle('getCurrentProfile', () => {
const currentProfileId = getCurrentProfileId();
return getProfile(currentProfileId);
});
ipcMain.handle('getDashboardForProfile', async (_, profileId: string) => {
const dashboard = await dashboardBridge.getDashboardForProfile(profileId);
if (!dashboard) return dashboard;
return mergeDriverTagsIntoLayout(dashboard, getDriverTagSettings());
});
ipcMain.handle(
'updateProfileTheme',
(
_,
profileId: string,
themeSettings: DashboardProfile['themeSettings']
) => {
updateProfileTheme(profileId, themeSettings);
// If updating the current profile, force refresh overlays
const currentProfileId = getCurrentProfileId();
if (profileId === currentProfileId) {
const dashboard = getDashboard(profileId);
if (dashboard) {
overlayManager.forceRefreshOverlays(dashboard);
}
}
}
);
ipcMain.handle(
'exportDashboardToFile',
async (_, dashboard: DashboardLayout) => {
const { dialog } = await import('electron');
const { canceled, filePath } = await dialog.showSaveDialog({
title: 'Export Dashboard',
defaultPath: 'dashboard.json',
filters: [{ name: 'JSON', extensions: ['json'] }],
});
if (canceled || !filePath) return false;
const { writeFile } = await import('node:fs/promises');
await writeFile(filePath, JSON.stringify(dashboard, null, 2), 'utf-8');
return true;
}
);
ipcMain.handle('openLogFolder', async () => {
const { shell } = await import('electron');
const logsDir = app.getPath('logs');
await shell.openPath(logsDir);
});
ipcMain.handle('exportLogFile', async () => {
const { dialog } = await import('electron');
const path = await import('node:path');
const fs = await import('node:fs/promises');
const mainLog = path.join(app.getPath('logs'), 'main.log');
try {
await fs.access(mainLog);
} catch {
logger.warn('No log file found at', mainLog);
return false;
}
const { canceled, filePath } = await dialog.showSaveDialog({
title: 'Export Log File',
defaultPath: 'irdashies.log',
filters: [{ name: 'Log Files', extensions: ['log', 'txt'] }],
});
if (canceled || !filePath) return false;
await fs.copyFile(mainLog, filePath);
return true;
});
ipcMain.handle('importDashboardFromFile', async () => {
const { dialog } = await import('electron');
const { canceled, filePaths } = await dialog.showOpenDialog({
title: 'Import Dashboard',
filters: [{ name: 'JSON', extensions: ['json'] }],
properties: ['openFile'],
});
if (canceled || !filePaths[0]) return null;
const { readFile } = await import('node:fs/promises');
const content = await readFile(filePaths[0], 'utf-8');
return JSON.parse(content) as DashboardLayout;
});
ipcMain.handle('autostart:set', (_event, enabled: boolean) => {
app.setLoginItemSettings({
openAtLogin: enabled,
});
return app.getLoginItemSettings().openAtLogin;
});
ipcMain.handle('autostart:get', () => {
return app.getLoginItemSettings().openAtLogin;
});
ipcMain.handle('getDriverTagSettings', () => {
return getDriverTagSettings();
});
ipcMain.handle('saveDriverTagSettings', (_, settings: DriverTagSettings) => {
saveDriverTagSettings(settings);
// Refresh Electron overlay windows (active profile only)
const currentProfileId = getCurrentProfileId();
const currentDashboard = getDashboard(currentProfileId);
if (currentDashboard) {
const merged = mergeDriverTagsIntoLayout(currentDashboard, settings);
overlayManager.publishMessage('dashboardUpdated', merged);
}
// Notify all profiles' browser views (e.g. OBS stream overlays).
// Driver tag settings are global, so every profile's view needs refreshing.
listProfiles().forEach((profile) => {
const dashboard = getDashboard(profile.id);
if (!dashboard) return;
const merged = mergeDriverTagsIntoLayout(dashboard, settings);
dashboardUpdateCallbacks.forEach((callback) => {
try {
callback(merged, profile.id);
} catch {
// ignore
}
});
});
});
}
/**
* Notify all registered callbacks that demo mode has changed
* Called from iracingSdk setup when demo mode is toggled
*/
export function notifyDemoModeChanged(isDemoMode: boolean) {
logger.info(
'Notifying dashboard bridge callbacks of demo mode change:',
isDemoMode
);
demoModeCallbacks.forEach((callback) => {
try {
callback(isDemoMode);
} catch (err) {
logger.error('Error in demo mode callback:', err);
}
});
}