2025-05-20 12:07:50 +08:00
|
|
|
'use client'
|
|
|
|
|
import { useGlobalPublicStore } from '@/context/global-public-context'
|
|
|
|
|
import { useFavicon, useTitle } from 'ahooks'
|
2025-08-13 23:08:32 +08:00
|
|
|
import { basePath } from '@/utils/var'
|
2025-09-15 14:49:23 +08:00
|
|
|
import { useEffect } from 'react'
|
2025-05-20 12:07:50 +08:00
|
|
|
|
|
|
|
|
export default function useDocumentTitle(title: string) {
|
2025-06-05 10:55:17 +08:00
|
|
|
const isPending = useGlobalPublicStore(s => s.isGlobalPending)
|
2025-05-20 12:07:50 +08:00
|
|
|
const systemFeatures = useGlobalPublicStore(s => s.systemFeatures)
|
|
|
|
|
const prefix = title ? `${title} - ` : ''
|
|
|
|
|
let titleStr = ''
|
|
|
|
|
let favicon = ''
|
|
|
|
|
if (isPending === false) {
|
|
|
|
|
if (systemFeatures.branding.enabled) {
|
|
|
|
|
titleStr = `${prefix}${systemFeatures.branding.application_title}`
|
|
|
|
|
favicon = systemFeatures.branding.favicon
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
titleStr = `${prefix}Dify`
|
2025-08-13 23:08:32 +08:00
|
|
|
favicon = `${basePath}/favicon.ico`
|
2025-05-20 12:07:50 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
useTitle(titleStr)
|
2025-09-15 14:49:23 +08:00
|
|
|
useEffect(() => {
|
|
|
|
|
let apple: HTMLLinkElement | null = null
|
|
|
|
|
if (systemFeatures.branding.favicon) {
|
|
|
|
|
document
|
|
|
|
|
.querySelectorAll(
|
|
|
|
|
'link[rel=\'icon\'], link[rel=\'shortcut icon\'], link[rel=\'apple-touch-icon\'], link[rel=\'mask-icon\']',
|
|
|
|
|
)
|
|
|
|
|
.forEach(n => n.parentNode?.removeChild(n))
|
|
|
|
|
|
|
|
|
|
apple = document.createElement('link')
|
|
|
|
|
apple.rel = 'apple-touch-icon'
|
|
|
|
|
apple.href = systemFeatures.branding.favicon
|
|
|
|
|
document.head.appendChild(apple)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
apple?.remove()
|
|
|
|
|
}
|
|
|
|
|
}, [systemFeatures.branding.favicon])
|
2025-05-20 12:07:50 +08:00
|
|
|
useFavicon(favicon)
|
|
|
|
|
}
|