mirror of
https://github.com/langgenius/dify.git
synced 2025-06-27 05:30:04 +00:00
17 lines
476 B
TypeScript
17 lines
476 B
TypeScript
import { useCallback } from 'react'
|
|
import { API_PREFIX } from '@/config'
|
|
import { useSelector } from '@/context/app-context'
|
|
|
|
const useGetIcon = () => {
|
|
const currentWorkspace = useSelector(s => s.currentWorkspace)
|
|
const getIconUrl = useCallback((fileName: string) => {
|
|
return `${API_PREFIX}/workspaces/current/plugin/icon?tenant_id=${currentWorkspace.id}&filename=${fileName}`
|
|
}, [currentWorkspace.id])
|
|
|
|
return {
|
|
getIconUrl,
|
|
}
|
|
}
|
|
|
|
export default useGetIcon
|