fetching conversations and managing in the conversation provider

This commit is contained in:
talksik
2022-06-11 11:06:28 -05:00
parent 701ae1fdde
commit fa38aa8af8
6 changed files with 83 additions and 8 deletions
@@ -0,0 +1,67 @@
import React, { useEffect } from 'react';
import Conversation from '@nirvana/core/models/conversation.model';
import { ConversationMap } from '../util/types';
import { Typography } from '@mui/material';
import { getConversations } from '../api/NirvanaApi';
import { useAsyncFn } from 'react-use';
import { useImmer } from 'use-immer';
interface IConversationContext {
conversations: ConversationMap;
}
const ConversationContext = React.createContext<IConversationContext>({
conversations: {},
});
export function ConversationProvider({ children }: { children: React.ReactNode }) {
// the initial persistent fetch for conversations
const [fetchState, doFetch] = useAsyncFn(getConversations);
// the map that we manage throughout the app
const [conversationMap, setConversationMap] = useImmer<ConversationMap>({});
useEffect(() => {
doFetch();
}, [doFetch]);
useEffect(() => {
console.log(fetchState.value);
if (fetchState.value?.data) {
setConversationMap((draft) => {
fetchState.value.data.forEach((conversationResult) => {
draft[conversationResult._id.toString()] = {
...conversationResult,
tunedInUsers: [],
connectedUserIds: [],
};
});
});
}
}, [fetchState.value, setConversationMap]);
// todo: open up a handler for children
// to refetch or search for a particular conversation and add it to the list of conversations
// todo: transform conversations to a map and keep adding to the map
if (fetchState.error) {
return (
<Typography variant={'h6'} color={'danger'}>
Something went terribly wrong
</Typography>
);
}
return (
<ConversationContext.Provider value={{ conversations: conversationMap }}>
{children}
</ConversationContext.Provider>
);
}
export default function useConversations() {
return React.useContext(ConversationContext);
}
@@ -15,11 +15,11 @@ interface IRouterContext {
}
const RouterContext = React.createContext<IRouterContext>({
page: 'START_NEW_CONVERSATION',
page: 'WELCOME',
});
export function RouterProvider({ children }: { children: React.ReactNode }) {
const [page, setPage] = useState<TPage>('START_NEW_CONVERSATION');
const [page, setPage] = useState<TPage>('WELCOME');
const handleSetPage = useCallback((newPage: TPage) => () => setPage(newPage), [setPage]);