refactor: Preload notification sound on web

This commit is contained in:
Krille 2023-10-23 16:08:57 +02:00
parent 3ad872dfa3
commit f3798f3ee8
No known key found for this signature in database

View file

@ -17,6 +17,10 @@ import 'package:fluffychat/utils/platform_infos.dart';
import 'package:fluffychat/widgets/matrix.dart'; import 'package:fluffychat/widgets/matrix.dart';
extension LocalNotificationsExtension on MatrixState { extension LocalNotificationsExtension on MatrixState {
static final html.AudioElement _audioPlayer = html.AudioElement()
..src = 'assets/assets/sounds/notification.ogg'
..load();
void showLocalNotification(EventUpdate eventUpdate) async { void showLocalNotification(EventUpdate eventUpdate) async {
final roomId = eventUpdate.roomID; final roomId = eventUpdate.roomID;
if (activeRoomId == roomId) { if (activeRoomId == roomId) {
@ -56,10 +60,7 @@ extension LocalNotificationsExtension on MatrixState {
method: ThumbnailMethod.crop, method: ThumbnailMethod.crop,
); );
if (kIsWeb) { if (kIsWeb) {
html.AudioElement() _audioPlayer.play();
..src = 'assets/assets/sounds/notification.ogg'
..autoplay = true
..load();
html.Notification( html.Notification(
title, title,
body: body, body: body,