| import { addFileInfos, sortAgentSorts } from '@/app/components/tools/utils' | import { addFileInfos, sortAgentSorts } from '@/app/components/tools/utils' | ||||
| import { useToastContext } from '@/app/components/base/toast' | import { useToastContext } from '@/app/components/base/toast' | ||||
| import { changeLanguage } from '@/i18n/i18next-config' | import { changeLanguage } from '@/i18n/i18next-config' | ||||
| import { useAppFavicon } from '@/hooks/use-app-favicon' | |||||
| export const useChatWithHistory = (installedAppInfo?: InstalledApp) => { | export const useChatWithHistory = (installedAppInfo?: InstalledApp) => { | ||||
| const isInstalledApp = useMemo(() => !!installedAppInfo, [installedAppInfo]) | const isInstalledApp = useMemo(() => !!installedAppInfo, [installedAppInfo]) | ||||
| const { data: appInfo, isLoading: appInfoLoading, error: appInfoError } = useSWR(installedAppInfo ? null : 'appInfo', fetchAppInfo) | const { data: appInfo, isLoading: appInfoLoading, error: appInfoError } = useSWR(installedAppInfo ? null : 'appInfo', fetchAppInfo) | ||||
| useAppFavicon(!installedAppInfo, appInfo?.site.icon, appInfo?.site.icon_background) | |||||
| const appData = useMemo(() => { | const appData = useMemo(() => { | ||||
| if (isInstalledApp) { | if (isInstalledApp) { | ||||
| const { id, app } = installedAppInfo! | const { id, app } = installedAppInfo! |
| import type { ChangeEvent, FC } from 'react' | import type { ChangeEvent, FC } from 'react' | ||||
| import React, { useState } from 'react' | import React, { useState } from 'react' | ||||
| import data from '@emoji-mart/data' | import data from '@emoji-mart/data' | ||||
| import type { Emoji, EmojiMartData } from '@emoji-mart/data' | |||||
| import { SearchIndex, init } from 'emoji-mart' | |||||
| import type { EmojiMartData } from '@emoji-mart/data' | |||||
| import { init } from 'emoji-mart' | |||||
| import { | import { | ||||
| MagnifyingGlassIcon, | MagnifyingGlassIcon, | ||||
| } from '@heroicons/react/24/outline' | } from '@heroicons/react/24/outline' | ||||
| import cn from '@/utils/classnames' | import cn from '@/utils/classnames' | ||||
| import Divider from '@/app/components/base/divider' | import Divider from '@/app/components/base/divider' | ||||
| import Button from '@/app/components/base/button' | import Button from '@/app/components/base/button' | ||||
| import Modal from '@/app/components/base/modal' | import Modal from '@/app/components/base/modal' | ||||
| import { searchEmoji } from '@/utils/emoji' | |||||
| declare global { | declare global { | ||||
| namespace JSX { | namespace JSX { | ||||
| init({ data }) | init({ data }) | ||||
| async function search(value: string) { | |||||
| const emojis: Emoji[] = await SearchIndex.search(value) || [] | |||||
| const results = emojis.map((emoji) => { | |||||
| return emoji.skins[0].native | |||||
| }) | |||||
| return results | |||||
| } | |||||
| const backgroundColors = [ | const backgroundColors = [ | ||||
| '#FFEAD5', | '#FFEAD5', | ||||
| '#E4FBCC', | '#E4FBCC', | ||||
| } | } | ||||
| else { | else { | ||||
| setIsSearching(true) | setIsSearching(true) | ||||
| const emojis = await search(e.target.value) | |||||
| const emojis = await searchEmoji(e.target.value) | |||||
| setSearchedEmojis(emojis) | setSearchedEmojis(emojis) | ||||
| } | } | ||||
| }} | }} |
| import Toast from '@/app/components/base/toast' | import Toast from '@/app/components/base/toast' | ||||
| import type { VisionFile, VisionSettings } from '@/types/app' | import type { VisionFile, VisionSettings } from '@/types/app' | ||||
| import { Resolution, TransferMethod } from '@/types/app' | import { Resolution, TransferMethod } from '@/types/app' | ||||
| import { useAppFavicon } from '@/hooks/use-app-favicon' | |||||
| const GROUP_SIZE = 5 // to avoid RPM(Request per minute) limit. The group task finished then the next group. | const GROUP_SIZE = 5 // to avoid RPM(Request per minute) limit. The group task finished then the next group. | ||||
| enum TaskStatus { | enum TaskStatus { | ||||
| title: installedAppInfo?.app.name, | title: installedAppInfo?.app.name, | ||||
| prompt_public: false, | prompt_public: false, | ||||
| copyright: '', | copyright: '', | ||||
| icon: installedAppInfo?.app.icon, | |||||
| icon_background: installedAppInfo?.app.icon_background, | |||||
| }, | }, | ||||
| plan: 'basic', | plan: 'basic', | ||||
| } | } | ||||
| } | } | ||||
| }, [siteInfo?.title, canReplaceLogo]) | }, [siteInfo?.title, canReplaceLogo]) | ||||
| useAppFavicon(!isInstalledApp, siteInfo?.icon, siteInfo?.icon_background) | |||||
| const [isShowResSidebar, { setTrue: doShowResSidebar, setFalse: hideResSidebar }] = useBoolean(false) | const [isShowResSidebar, { setTrue: doShowResSidebar, setFalse: hideResSidebar }] = useBoolean(false) | ||||
| const showResSidebar = () => { | const showResSidebar = () => { | ||||
| // fix: useClickAway hideResSidebar will close sidebar | // fix: useClickAway hideResSidebar will close sidebar |
| import { useAsyncEffect } from 'ahooks' | |||||
| import { appDefaultIconBackground } from '@/config' | |||||
| import { searchEmoji } from '@/utils/emoji' | |||||
| export function useAppFavicon(enable: boolean, icon?: string, icon_background?: string) { | |||||
| useAsyncEffect(async () => { | |||||
| if (!enable) | |||||
| return | |||||
| const link: HTMLLinkElement = document.querySelector('link[rel*="icon"]') || document.createElement('link') | |||||
| // eslint-disable-next-line prefer-template | |||||
| link.href = 'data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22>' | |||||
| + '<rect width=%22100%25%22 height=%22100%25%22 fill=%22' + encodeURIComponent(icon_background || appDefaultIconBackground) + '%22 rx=%2230%22 ry=%2230%22 />' | |||||
| + '<text x=%2212.5%22 y=%221em%22 font-size=%2275%22>' | |||||
| + (icon ? await searchEmoji(icon) : '🤖') | |||||
| + '</text>' | |||||
| + '</svg>' | |||||
| link.rel = 'shortcut icon' | |||||
| link.type = 'image/svg' | |||||
| document.getElementsByTagName('head')[0].appendChild(link) | |||||
| }, [enable, icon, icon_background]) | |||||
| } |
| import { SearchIndex } from 'emoji-mart' | |||||
| import type { Emoji } from '@emoji-mart/data' | |||||
| export async function searchEmoji(value: string) { | |||||
| const emojis: Emoji[] = await SearchIndex.search(value) || [] | |||||
| const results = emojis.map((emoji) => { | |||||
| return emoji.skins[0].native | |||||
| }) | |||||
| return results | |||||
| } |