xyyd-fatfox/src/layout/grid/AiSetting.tsx

161 lines
4.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import SettingItem from '@/settings/SettingItem'
import useSettingsStore from '@/settings/useSettingsStore'
import { Radio, Switch } from 'ant-design-vue'
import clsx from 'clsx'
import { defineComponent, watch } from 'vue'
import useLayoutStore from '../useLayoutStore'
import { sendParent } from '@/utils/parent'
export default defineComponent({
setup() {
const settings = useSettingsStore()
watch(
() => ({
autoSearch: settings.state.autoUseAi === 'auto',
showTabButton: settings.state.showPetOnTab,
ifSearch: settings.state.autoUseAi !== ''
}),
(val) => {
sendParent([
'configAI',
{
autoSearch: val.autoSearch,
showTabButton: val.showTabButton,
ifSearch: val.ifSearch
}
])
console.log({
autoSearch: val.autoSearch,
showTabButton: val.showTabButton,
ifSearch: val.ifSearch
});
},
{
immediate: true
}
)
return () => (
<div class="p-4 flex flex-col ">
<div class={'flex flex-col'}>
<span
class={clsx(
'text-[14px] font-bold',
useLayoutStore().state.current === 0 ? 'text-white' : ' text-[#333]'
)}
>
AI助手
</span>
<span class={'text-[13px] text-[#666] '}>AI助手样式</span>
<div
class={clsx(
'w-full h-[1px] bg-black/10 mt-1 mb-2',
useLayoutStore().state.current === 0 ? 'bg-white/10' : ' bg-black/10'
)}
></div>
</div>
<span
class={clsx(
'text-[14px] font-bold my-2',
useLayoutStore().state.current === 0 ? 'text-white' : 'text-[#333]'
)}
>
</span>
<SettingItem
v-slots={{
label: () => <div></div>
}}
desc="浏览其它网页时的侧边栏功能"
noRoundedT
>
<Switch
checked={settings.state.showPetOnTab}
onUpdate:checked={(e) => {
if (e) settings.state.showPetOnTab = true
else settings.state.showPetOnTab = false
}}
/>
</SettingItem>
<SettingItem
v-slots={{
label: () => <div></div>
}}
noRoundedB
desc="fatfox标签页内的小助手"
>
<Switch
checked={settings.state.showPet}
onUpdate:checked={(e) => {
if (e) settings.state.showPet = true
else settings.state.showPet = false
}}
/>
</SettingItem>
<span
class={clsx(
'text-[14px] font-bold my-2',
useLayoutStore().state.current === 0 ? 'text-white' : 'text-[#333]'
)}
>
</span>
<SettingItem
v-slots={{
label: () => <div></div>
}}
desc="使用搜索引擎时Fatfox会给您更多有效的结果"
>
<Switch
checked={settings.state.autoUseAi !== ''}
onUpdate:checked={(e) => {
if (e) settings.state.autoUseAi = 'show'
else settings.state.autoUseAi = ''
}}
/>
</SettingItem>
{/* <div
class={clsx('flex w-full py-2 px-3 rounded-lg flex-col', {
'bg-black/5': useLayoutStore().state.current !== 0,
'bg-white/10': useLayoutStore().state.current === 0
})}
>
<span>何时使用结果增强</span>
<SettingItem
v-slots={{
label: () => <div>每次询问</div>
}}
noBg
desc="每次搜索直接询问fatfox"
>
<Radio
checked={settings.state.autoUseAi === 'auto'}
onClick={() => {
settings.state.autoUseAi = 'auto'
}}
/>
</SettingItem>
<SettingItem
v-slots={{
label: () => <div>手动询问</div>
}}
noBg
desc="每次搜索,提示您进行手动查询"
>
<Radio
checked={settings.state.autoUseAi === 'show'}
onClick={() => {
settings.state.autoUseAi = 'show'
}}
/>
</SettingItem>
</div> */}
</div>
)
}
})