chore: add facades refactor: core module export refactor: inference plugin - deprecate function registering (#537) * refactor: revamp inference plugin as class - deprecate function registering * refactor: monitoring plugin - deprecate service registering (#538) refactor: revamp inference plugin as class - deprecate function registering chore: update import refactor: plugin revamp - model management chore: update build steps and remove experimental plugins refactor: remove pluggable electron chore: add sorting for conversations chore: build plugins for testing chore: consistent plugin directory name chore: docs chore: fix CI chore: update conversation prefix
24 lines
730 B
TypeScript
24 lines
730 B
TypeScript
import { useSetAtom } from 'jotai'
|
|
import { activeBotAtom } from '@helpers/atoms/Bot.atom'
|
|
import { rightSideBarExpandStateAtom } from '@helpers/atoms/SideBarExpand.atom'
|
|
|
|
export default function useDeleteBot() {
|
|
const setActiveBot = useSetAtom(activeBotAtom)
|
|
const setRightPanelVisibility = useSetAtom(rightSideBarExpandStateAtom)
|
|
|
|
const deleteBot = async (botId: string): Promise<'success' | 'failed'> => {
|
|
try {
|
|
// await executeSerial(DataService.DeleteBot, botId)
|
|
setRightPanelVisibility(false)
|
|
setActiveBot(undefined)
|
|
return 'success'
|
|
} catch (err) {
|
|
alert(`Failed to delete bot ${botId}: ${err}`)
|
|
console.error(err)
|
|
return 'failed'
|
|
}
|
|
}
|
|
|
|
return { deleteBot }
|
|
}
|