mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-25 12:48:53 +01:00
* refactor: access control logic to TypeScript * chore: Change EndpointURLs to a constant object for improved type safety * 🐛 fix: Enhance agent access control by adding skipAgentCheck functionality * 🐛 fix: Add endpointFileConfig prop to AttachFileMenu and update file handling logic * 🐛 fix: Update tool handling logic to support optional groupedTools and improve null checks, add dedicated tool dialog for Assistants * chore: Export Accordion component from UI index for improved modularity * feat: Add ActivePanelContext for managing active panel state across components * chore: Replace string IDs with EModelEndpoint constants for assistants and agents in useSideNavLinks * fix: Integrate access checks for agent creation and deletion routes in actions.js
37 lines
941 B
TypeScript
37 lines
941 B
TypeScript
import { createContext, useContext, useState, ReactNode } from 'react';
|
|
|
|
interface ActivePanelContextType {
|
|
active: string | undefined;
|
|
setActive: (id: string) => void;
|
|
}
|
|
|
|
const ActivePanelContext = createContext<ActivePanelContextType | undefined>(undefined);
|
|
|
|
export function ActivePanelProvider({
|
|
children,
|
|
defaultActive,
|
|
}: {
|
|
children: ReactNode;
|
|
defaultActive?: string;
|
|
}) {
|
|
const [active, _setActive] = useState<string | undefined>(defaultActive);
|
|
|
|
const setActive = (id: string) => {
|
|
localStorage.setItem('side:active-panel', id);
|
|
_setActive(id);
|
|
};
|
|
|
|
return (
|
|
<ActivePanelContext.Provider value={{ active, setActive }}>
|
|
{children}
|
|
</ActivePanelContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useActivePanel() {
|
|
const context = useContext(ActivePanelContext);
|
|
if (context === undefined) {
|
|
throw new Error('useActivePanel must be used within an ActivePanelProvider');
|
|
}
|
|
return context;
|
|
}
|