xyyd-fatfox/src/layout/background/BackgroundPage.tsx

127 lines
3.5 KiB
TypeScript
Raw Normal View History

2024-11-15 14:42:11 +08:00
import { Button, Slider } from 'ant-design-vue'
2024-10-29 18:47:37 +08:00
import { defineComponent, ref, Transition, watch } from 'vue'
2024-09-13 18:27:39 +08:00
import useLayoutStore from '../useLayoutStore'
import { DownloadOutlined, EyeInvisibleOutlined, SwapOutlined } from '@ant-design/icons-vue'
import SettingItem from '@/settings/SettingItem'
import useSettingsStore from '@/settings/useSettingsStore'
2024-09-29 15:17:52 +08:00
import useRouterStore from '@/useRouterStore'
import clsx from 'clsx'
2024-09-09 17:53:07 +08:00
export default defineComponent(() => {
2024-09-13 18:27:39 +08:00
const layout = useLayoutStore()
2024-09-29 15:17:52 +08:00
const router = useRouterStore()
2024-09-13 18:27:39 +08:00
const selected = ref(0)
watch(
() => layout.state.current,
(val) => {
selected.value = val
},
{ immediate: true }
)
2024-10-10 19:10:55 +08:00
2024-09-13 18:27:39 +08:00
const settings = useSettingsStore()
return () => (
2024-10-29 18:47:37 +08:00
<div class="absolute left-0 top-0 w-full h-full p-4 overflow-y-auto scrollbar-hide">
2024-11-15 14:42:11 +08:00
{/* <SettingItem
2024-09-13 18:27:39 +08:00
noBg
v-slots={{
label: () => <div></div>
}}
>
<Select
class="w-[100px]"
options={[
{ label: '游戏', value: 0 },
{ label: '工作', value: 1 },
{ label: '休闲', value: 2 }
]}
v-model:value={selected.value}
/>
2024-11-15 14:42:11 +08:00
</SettingItem> */}
2024-09-13 18:27:39 +08:00
<div class="px-4">
<div class="h-[180px]">
2024-10-10 19:10:55 +08:00
{layout.background.video && layout.background.type !== 'own' ? (
<video class="w-full h-full" src={layout.background.video} autoplay={false} controls />
2024-09-13 18:27:39 +08:00
) : (
<div
class="w-full h-full bg-center bg-no-repeat bg-cover"
style={{
2024-10-10 19:10:55 +08:00
backgroundImage: `url('${layout.background.image}')`
2024-09-13 18:27:39 +08:00
}}
></div>
)}
</div>
<div class="flex justify-between items-center py-4">
2024-10-10 16:10:42 +08:00
<Button
type="primary"
icon={<SwapOutlined />}
onClick={() => {
router.go('global-background')
}}
>
2024-09-13 18:27:39 +08:00
</Button>
<Button
type="text"
class={clsx(useLayoutStore().state.current === 0 && 'text-white')}
2024-09-13 18:27:39 +08:00
icon={<DownloadOutlined />}
onClick={() => {
2024-10-10 19:10:55 +08:00
window.open(layout.background.video || layout.background.image, '_blank')
2024-09-13 18:27:39 +08:00
}}
>
</Button>
</div>
</div>
<SettingItem
noRoundedB
v-slots={{
label: () => <div></div>
}}
>
2024-10-29 18:47:37 +08:00
<div class={'w-[200px]'}>
<Slider
v-model:value={settings.state.maskOpacity}
step={0.01}
tooltipOpen={false}
min={0}
max={0.7}
/>
</div>
2024-09-13 18:27:39 +08:00
</SettingItem>
<SettingItem
noRoundedT
v-slots={{
label: () => <div></div>
}}
>
2024-10-29 18:47:37 +08:00
<div class={'w-[200px]'}>
<Slider
v-model:value={settings.state.maskFilter}
step={0.1}
tooltipOpen={false}
min={0}
max={20}
/>
</div>
2024-09-13 18:27:39 +08:00
</SettingItem>
<Transition>
{(settings.state.maskFilter > 0 || settings.state.maskOpacity > 0) && (
<div
class="flex justify-end mr-4"
onClick={() => {
settings.state.maskOpacity = 0
settings.state.maskFilter = 0
}}
>
<Button type="text" icon={<EyeInvisibleOutlined />}>
</Button>
</div>
)}
</Transition>
</div>
)
2024-09-09 17:53:07 +08:00
})