49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
/**
|
|
* Tauri Theme Service - Desktop implementation
|
|
*/
|
|
|
|
import { Theme } from '@tauri-apps/api/window'
|
|
import { getAllWebviewWindows, type WebviewWindow } from '@tauri-apps/api/webviewWindow'
|
|
import type { ThemeMode } from './types'
|
|
import { DefaultThemeService } from './default'
|
|
|
|
export class TauriThemeService extends DefaultThemeService {
|
|
async setTheme(theme: ThemeMode): Promise<void> {
|
|
try {
|
|
const tauriTheme = theme as Theme | null
|
|
|
|
// Update all open windows, not just the current one
|
|
const allWindows = await getAllWebviewWindows()
|
|
|
|
// Convert to array if it's not already
|
|
const windowsArray: WebviewWindow[] = Array.isArray(allWindows)
|
|
? allWindows
|
|
: Object.values(allWindows)
|
|
|
|
await Promise.all(
|
|
windowsArray.map(async (window) => {
|
|
try {
|
|
await window.setTheme(tauriTheme)
|
|
} catch (error) {
|
|
console.error(
|
|
`Failed to set theme for window ${window.label}:`,
|
|
error
|
|
)
|
|
}
|
|
})
|
|
)
|
|
} catch (error) {
|
|
console.error('Error setting theme in Tauri:', error)
|
|
throw error
|
|
}
|
|
}
|
|
|
|
getCurrentWindow() {
|
|
return {
|
|
setTheme: (theme: ThemeMode): Promise<void> => {
|
|
return this.setTheme(theme)
|
|
},
|
|
}
|
|
}
|
|
}
|