cleanup + small refract

- websockets
- event api
This commit is contained in:
cv
2021-04-11 19:17:54 +02:00
parent dee0ff1a5c
commit 964bdf0d2a
12 changed files with 145 additions and 149 deletions
@@ -23,19 +23,16 @@ export default function MessageControl() {
visible: false,
});
// Torbjorn: why is this not updating?
useEffect(() => {
if (socket == null) return;
// Handle presenter messages
socket.on('messages-presenter', (data) => {
console.log('websocket: got data', data);
setPres({ ...data });
});
// Handle public messages
socket.on('messages-public', (data) => {
console.log('websocket: got data', data);
setPubl({ ...data });
});
@@ -43,8 +40,11 @@ export default function MessageControl() {
socket.emit('get-presenter');
socket.emit('get-public');
// Clear listener
return () => socket.off('messages-presenter', 'messages-public');
// Clear listeners
return () => {
socket.off('messages-public');
socket.off('messages-presenter');
};
}, [socket]);
const messageControl = async (action, payload) => {
@@ -31,8 +31,8 @@ const size = {
};
export default function PlaybackControl() {
const [playback, setPlayback] = useState(null);
const socket = useSocket();
const [playback, setPlayback] = useState(null);
const [timer, setTimer] = useState({
currentSeconds: null,
startedAt: null,
@@ -42,13 +42,10 @@ export default function PlaybackControl() {
// handle incoming messages
useEffect(() => {
if (socket == null) return;
// Subscribe to timer event
socket.emit('subscribe-to-timer');
// ask for playstate
socket.emit('get-playstate');
// Handle playstate
socket.on('playstate', (data) => {
setPlayback(data);
});
@@ -60,7 +57,7 @@ export default function PlaybackControl() {
// Clear listener
return () => {
socket.emit('release-timer');
socket.off('playstate');
socket.off('timer');
};
}, [socket]);
@@ -1,4 +1,4 @@
import { useMutation, useQuery, useQueryClient } from 'react-query';
import { useMutation, useQuery } from 'react-query';
import { useEffect } from 'react';
import { fetchAllEvents } from '../../../app/api/eventsApi.js';
import EventList from './EventList';
@@ -10,13 +10,12 @@ import { Skeleton } from '@chakra-ui/skeleton';
import style from './List.module.css';
export default function EventListWrapper() {
const { data, status, isError } = useQuery('events', fetchAllEvents);
const queryClient = useQueryClient();
// TODO: Move to events API?
const { data, status, isError, refetch } = useQuery('events', fetchAllEvents);
const addEvent = useMutation((data) => axios.post(eventsURL, data));
const updateEvent = useMutation((data) => axios.put(eventsURL, data));
const patchEvent = useMutation((data) => axios.patch(eventsURL, data));
const deleteEvent = useMutation((eventId) =>
axios.delete(eventsURL + eventId)
axios.delete(eventsURL + '/' + eventId)
);
// Show toasts on errors
@@ -28,34 +27,35 @@ export default function EventListWrapper() {
// Events API
const eventsHandler = async (action, payload) => {
// Torbjorn: is this a good way to do it?
// How do I handle the mutation thing
// https://react-query.tanstack.com/guides/invalidations-from-mutations
// https://react-query.tanstack.com/guides/updates-from-mutation-responses
let needsRefetch = false;
switch (action) {
case 'add':
try {
await addEvent
.mutateAsync(payload)
.then(queryClient.invalidateQueries('events'));
await addEvent.mutateAsync(payload).then((needsRefetch = true));
} catch (error) {
showErrorToast('Error creating event', error.message);
}
break;
case 'update':
try {
await updateEvent
.mutateAsync(payload)
.then(queryClient.invalidateQueries('events'));
await updateEvent.mutateAsync(payload).then((needsRefetch = true));
// TODO: instead of refetching, update the item here
} catch (error) {
showErrorToast('Error updating event', error.message);
}
break;
case 'patch':
try {
await patchEvent.mutateAsync(payload).then((needsRefetch = true));
// TODO: instead of refetching, update the item here
} catch (error) {
showErrorToast('Error updating event', error.message);
}
break;
case 'delete':
try {
await deleteEvent
.mutateAsync(payload)
.then(queryClient.invalidateQueries('events'));
await deleteEvent.mutateAsync(payload).then((needsRefetch = true));
needsRefetch = true;
} catch (error) {
showErrorToast('Error deleting event', error.message);
}
@@ -64,6 +64,9 @@ export default function EventListWrapper() {
showErrorToast('Unrecognised request', action);
break;
}
if (needsRefetch) {
refetch();
}
};
return (