refactor: 精简设置项组件的属性解构,移除未使用的变量

This commit is contained in:
2025-08-29 15:09:11 +08:00
parent bfdd1be148
commit 13e86e6f83
7 changed files with 10 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ import { SettingsGroup } from './items/SettingsGroup'
import { SettingsLink } from './items/SettingsLink' import { SettingsLink } from './items/SettingsLink'
export function SettingsItem(props: SettingsItemProps) { export function SettingsItem(props: SettingsItemProps) {
const { label, description, type } = props const { type } = props
const Component = settingsItemRander(type) const Component = settingsItemRander(type)
return <Component {...props} /> return <Component {...props} />
} }

View File

@@ -1,6 +1,6 @@
import { ListItem, Toast, useToastController, useToastState, YStack } from '@my/ui' import { ListItem, Toast, useToastController, useToastState, YStack } from '@my/ui'
import type { SettingsAlertOption, SettingsItemProps } from '@my/ui' import type { SettingsItemProps } from '@my/ui'
import { useCallback, useState } from 'react' import { useCallback } from 'react'
export interface SettingsAlertProps { export interface SettingsAlertProps {
title: string title: string

View File

@@ -1,6 +1,6 @@
import { ListItem, Toast, useToastController, useToastState, YStack } from '@my/ui' import { ListItem, Toast, useToastController, useToastState, YStack } from '@my/ui'
import type { SettingsAlertOption, SettingsItemProps } from '@my/ui' import type { SettingsItemProps } from '@my/ui'
import { useCallback, useState } from 'react' import { useCallback } from 'react'
export interface SettingsAlertProps { export interface SettingsAlertProps {
title: string title: string

View File

@@ -1,4 +1,4 @@
import { Button, Input, XStack, YStack, styled, Text, View } from '@my/ui' import { Button, Input, XStack, YStack, styled, Text } from '@my/ui'
import { withSettingsSheet, WithSettingsSheetProps } from './SettingsSheet' import { withSettingsSheet, WithSettingsSheetProps } from './SettingsSheet'
import { useState } from 'react' import { useState } from 'react'
import { settingsStore } from '../../store' import { settingsStore } from '../../store'
@@ -33,7 +33,7 @@ const Footer = styled(XStack, {
}) })
const SettingsInputComponent = (props: WithSettingsSheetProps<'input'>) => { const SettingsInputComponent = (props: WithSettingsSheetProps<'input'>) => {
const { label, icon, description, disabled, options, onClose } = props const { label, description, onClose } = props
const [value, setValue] = useState('') const [value, setValue] = useState('')
/** /**
* 确认按钮事件 * 确认按钮事件

View File

@@ -10,9 +10,7 @@ const Line = styled(Separator, {
marginVertical: '$4', marginVertical: '$4',
}) })
export const SettingsLine = (props: SettingsItemProps<'alert'>) => { export const SettingsLine = (_props: SettingsItemProps<'alert'>) => {
const { label } = props
return ( return (
<> <>
<Line alignSelf="stretch" /> <Line alignSelf="stretch" />

View File

@@ -8,6 +8,7 @@ export interface SettingsAlertProps {
} }
export const SettingsPage = (props: SettingsItemProps<'alert'>) => { export const SettingsPage = (props: SettingsItemProps<'alert'>) => {
// TODO 尚未完成开发
const { label, icon, description, disabled, options } = props const { label, icon, description, disabled, options } = props
const toast = useToastController() const toast = useToastController()

View File

@@ -1,11 +1,7 @@
import { ListItem, Sheet } from '@my/ui'
import type { SettingsItemProps } from '@my/ui'
import { useState } from 'react'
import { withSettingsSheet, WithSettingsSheetProps } from './SettingsSheet' import { withSettingsSheet, WithSettingsSheetProps } from './SettingsSheet'
const SettingsSelectComponent = (props: WithSettingsSheetProps<'select'>) => { const SettingsSelectComponent = (props: WithSettingsSheetProps<'select'>) => {
const { label, icon, description, disabled, options } = props // TODO 尚未完成开发
return <></> return <></>
} }