remove some requests

This commit is contained in:
Nate Kelley 2025-01-30 16:56:08 -07:00
parent 17c57f6d75
commit 337569fd9c
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 1 additions and 26 deletions

View File

@ -1,5 +1,4 @@
import type { RustApiError } from '../../buster_rest/errors';
import type { BusterChatAsset } from './chatAssetInterfaces';
import type { BusterChat, BusterChatListItem } from './chatInterfaces';
export enum ChatsResponses {
@ -29,12 +28,6 @@ export type Chat_getChat = {
onError?: (d: unknown | RustApiError) => void;
};
export type Chat_getChatAsset = {
route: '/chats/get:getChatAsset';
callback: (d: BusterChatAsset) => void;
onError?: (d: unknown | RustApiError) => void;
};
/***** CHAT PROGRESS EVENTS START ******/
export type ChatPost_initializeChat = {
@ -55,6 +48,5 @@ export type ChatResponseTypes =
| ChatList_getChatsList
| Chat_unsubscribed
| Chat_getChat
| Chat_getChatAsset
| ChatPost_initializeChat
| ChatPost_generatingTitle;

View File

@ -5,7 +5,7 @@ import {
useContextSelector
} from '@fluentui/react-context-selector';
import { useBusterWebSocket } from '../BusterWebSocket';
import type { BusterChatAsset, BusterChat, BusterChatMessage } from '@/api/buster_socket/chats';
import type { BusterChat } from '@/api/buster_socket/chats';
import { useMemoizedFn, useUnmount } from 'ahooks';
import type { FileType } from '@/api/buster_socket/chats';
import {
@ -17,7 +17,6 @@ import {
import { IBusterChat } from './interfaces';
import { chatUpgrader } from './helpers';
import { useHotkeys } from 'react-hotkeys-hook';
import { fi } from '@faker-js/faker';
export const useBusterChat = () => {
const busterSocket = useBusterWebSocket();
@ -39,12 +38,6 @@ export const useBusterChat = () => {
return upgradedChat;
});
const _onGetChatAsset = useMemoizedFn((asset: BusterChatAsset) => {
const { id, type } = asset;
console.log('TODO: handle this. Put the asset in their respective chat');
return asset;
});
// EMITTERS
const unsubscribeFromChat = useMemoizedFn(({ chatId }: { chatId: string }) => {
@ -198,13 +191,3 @@ export const useBusterChatIndividual = ({ chatId: chatIdProp }: { chatId?: strin
chat
};
};
export const useBusterChatAssetIndividual = ({
chatId,
assetId,
type
}: {
chatId: string;
assetId: string;
type: FileType;
}) => {};