forked from vercel/ai-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-chat-visibility.ts
62 lines (54 loc) · 1.57 KB
/
use-chat-visibility.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'use client';
import { updateChatVisibility } from '@/app/(chat)/actions';
import { VisibilityType } from '@/components/visibility-selector';
import { Chat } from '@/lib/db/schema';
import { useMemo } from 'react';
import useSWR, { useSWRConfig } from 'swr';
export function useChatVisibility({
chatId,
initialVisibility,
}: {
chatId: string;
initialVisibility: VisibilityType;
}) {
const { mutate, cache } = useSWRConfig();
const history: Array<Chat> = cache.get('/api/history')?.data;
const { data: localVisibility, mutate: setLocalVisibility } = useSWR(
`${chatId}-visibility`,
null,
{
fallbackData: initialVisibility,
},
);
const visibilityType = useMemo(() => {
if (!history) return localVisibility;
const chat = history.find((chat) => chat.id === chatId);
if (!chat) return 'private';
return chat.visibility;
}, [history, chatId, localVisibility]);
const setVisibilityType = (updatedVisibilityType: VisibilityType) => {
setLocalVisibility(updatedVisibilityType);
mutate<Array<Chat>>(
'/api/history',
(history) => {
return history
? history.map((chat) => {
if (chat.id === chatId) {
return {
...chat,
visibility: updatedVisibilityType,
};
}
return chat;
})
: [];
},
{ revalidate: false },
);
updateChatVisibility({
chatId: chatId,
visibility: updatedVisibilityType,
});
};
return { visibilityType, setVisibilityType };
}