2023-05-10 10:59:29 +00:00
|
|
|
import type { Middleware, AnyAction } from 'redux';
|
|
|
|
|
2023-07-12 01:02:32 +00:00
|
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
import { assetHost } from 'flavours/glitch/utils/config';
|
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
import type { RootState } from '..';
|
2023-05-09 14:56:26 +00:00
|
|
|
|
|
|
|
interface AudioSource {
|
2023-05-09 21:41:18 +00:00
|
|
|
src: string;
|
|
|
|
type: string;
|
2023-05-09 14:56:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const createAudio = (sources: AudioSource[]) => {
|
2017-05-10 14:58:54 +00:00
|
|
|
const audio = new Audio();
|
|
|
|
sources.forEach(({ type, src }) => {
|
|
|
|
const source = document.createElement('source');
|
|
|
|
source.type = type;
|
|
|
|
source.src = src;
|
|
|
|
audio.appendChild(source);
|
|
|
|
});
|
|
|
|
return audio;
|
2017-05-20 15:31:47 +00:00
|
|
|
};
|
2017-05-10 14:58:54 +00:00
|
|
|
|
2023-05-09 14:56:26 +00:00
|
|
|
const play = (audio: HTMLAudioElement) => {
|
2017-03-13 16:12:30 +00:00
|
|
|
if (!audio.paused) {
|
|
|
|
audio.pause();
|
2017-10-18 15:13:51 +00:00
|
|
|
if (typeof audio.fastSeek === 'function') {
|
|
|
|
audio.fastSeek(0);
|
|
|
|
} else {
|
2018-09-06 16:33:49 +00:00
|
|
|
audio.currentTime = 0;
|
2017-10-18 15:13:51 +00:00
|
|
|
}
|
2017-03-13 16:12:30 +00:00
|
|
|
}
|
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
void audio.play();
|
2017-03-13 16:12:30 +00:00
|
|
|
};
|
|
|
|
|
2023-09-12 10:18:19 +00:00
|
|
|
export const soundsMiddleware = (): Middleware<unknown, RootState> => {
|
2023-07-13 09:49:16 +00:00
|
|
|
const soundCache: Record<string, HTMLAudioElement> = {};
|
2023-07-12 01:02:32 +00:00
|
|
|
|
|
|
|
void ready(() => {
|
|
|
|
soundCache.boop = createAudio([
|
2017-05-10 14:58:54 +00:00
|
|
|
{
|
2023-07-12 01:02:32 +00:00
|
|
|
src: `${assetHost}/sounds/boop.ogg`,
|
2017-05-10 14:58:54 +00:00
|
|
|
type: 'audio/ogg',
|
|
|
|
},
|
|
|
|
{
|
2023-07-12 01:02:32 +00:00
|
|
|
src: `${assetHost}/sounds/boop.mp3`,
|
2017-05-20 15:31:47 +00:00
|
|
|
type: 'audio/mpeg',
|
2017-05-10 14:58:54 +00:00
|
|
|
},
|
2023-07-12 01:02:32 +00:00
|
|
|
]);
|
|
|
|
});
|
2017-03-13 16:12:30 +00:00
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
return () =>
|
|
|
|
(next) =>
|
|
|
|
(action: AnyAction & { meta?: { sound?: string } }) => {
|
2023-07-13 09:49:16 +00:00
|
|
|
const sound = action.meta?.sound;
|
2023-05-09 14:56:26 +00:00
|
|
|
|
2023-07-13 09:49:16 +00:00
|
|
|
if (sound && Object.hasOwn(soundCache, sound)) {
|
2023-05-10 10:59:29 +00:00
|
|
|
play(soundCache[sound]);
|
|
|
|
}
|
2017-03-13 16:12:30 +00:00
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
return next(action);
|
|
|
|
};
|
2023-05-09 14:56:26 +00:00
|
|
|
};
|