radames's picture
rooms and connection hook
8d109db
raw
history blame
No virus
634 Bytes
import { onDestroy } from "svelte";
import { writable, type Writable } from "svelte/store";
import type { RoomResponse } from '$lib/types';
import { PUBLIC_API_BASE } from '$env/static/public';
const INTERVAL = 3000
export function useRooms(): Writable<RoomResponse[]> {
const roomsStorage = writable<RoomResponse[]>([]);
const interval = setInterval(
() => {
refreshRooms().then((rooms) => roomsStorage.set(rooms))
}, INTERVAL);
onDestroy(() => {
clearInterval(interval);
});
return roomsStorage
}
async function refreshRooms() {
return fetch(PUBLIC_API_BASE + '/rooms').then((res) => res.json());
}