Switch 开关
介绍
用于在打开和关闭状态之间进行切换。
引入
ts
import { IBestSwitch } from "@ibestservices/ibest-ui";
代码演示
基础用法
TIP
通过 IBestSwitch
组件的 value
来设置开关的状态,通过 onChange
监听状态变化。
点我查看代码
ts
IBestSwitch({
value: true,
onChange: value => {
console.log("switch", value);
},
});
禁用状态
TIP
通过 disabled
属性来禁用开关,禁用状态下开关不可点击。
点我查看代码
ts
IBestSwitch({
loading: true,
disabled: true,
});
IBestSwitch({
disabled: true,
value: true,
});
加载状态
TIP
通过 loading
属性来禁用开关,加载状态下开关不可点击。
点我查看代码
ts
IBestSwitch({
loading: true,
value: true,
});
IBestSwitch({
loading: true,
activeColor: "#07c160",
});
自定义大小
TIP
通过 switchSize
属性自定义开关的大小。
点我查看代码
ts
IBestSwitch({
value: true,
switchSize: 40,
});
自定义按钮
TIP
通过 nodeBuilder
插槽自定义按钮的内容。
点我查看代码
ts
import { IBestSwitch } from '@ibestservices/ibset-ui'
@Entry
@Component
struct SwitchPage {
@State arrowDirection: 'left' | 'right' = 'left';
@Builder Arrow(){
Row(){
Image($r('app.media.arrow'))
.width(15)
.fillColor(this.arrowDirection === 'left' ? '#db3131' : '#e2e3e7')
.rotate({
angle: this.arrowDirection === 'left' ? 0 : -180
}).animation({
duration: 200,
})
}
}
build(){
IBestSwitch({
value: true,
activeColor: '#db3131',
nodeBuilder: () => this.Arrow(),
onChange: (value) => {
this.arrowDirection = value ? 'left' : 'right';
}
})
}
}
异步控制
TIP
当需要异步控制开关状态时,可以在 onBeforeChange
事件的回调函数中返回一个 Promise
。如果 Promise
状态为 resolve
,则按钮状态变化将继续进行;如果状态为 reject
,则将阻止按钮状态的变化。
点我查看代码
ts
IBestSwitch({
value: true,
onBeforeChange: () => {
return new Promise((resolve, reject) => {
AlertDialog.show({
title: "提示",
message: "确定更改状态吗",
autoCancel: true,
alignment: DialogAlignment.Bottom,
offset: { dx: 0, dy: -20 },
gridCount: 3,
primaryButton: {
value: "取消",
action: () => {
reject("");
},
},
secondaryButton: {
value: "确认",
action: () => {
resolve("");
},
},
cancel: () => {
reject("");
},
});
});
},
});
API
@Props
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
value | 默认是否选中 非双向绑定,如果要获取最新的值请从 onChange 回调中获取 | boolean | false |
disabled | 是否禁用按钮 | boolean | false |
loading | 是否显示为加载状态 | boolean | false |
switchSize | 大小尺寸 | number | 26 |
activeColor | 打开时的背景色 | ResourceColor | #1989fa |
inactiveColor | 关闭时的背景色 | ResourceColor | rgba(120, 120, 128, 0.2) |
loadingActiveColor | 打开时的 loading 颜色,默认跟随 activeColor | ResourceColor | |
loadingInactiveColor | 关闭时的 loading 颜色,默认跟随 activeColor | ResourceColor |
Events
事件名 | 说明 | 事件类型 |
---|---|---|
onChange | 开关状态改变的回调事件 | (value: boolean) => void |
onBeforeChange | 开关状态改变前的回调事件,接收一个 Promise 对象,如果 Promise 状态为 resolve ,则按钮状态变化将继续进行;如果状态为 reject ,则将阻止按钮状态的变化。 | (value: boolean) => Promise<any> |
onClickSwitch | 点击开关的回调事 | (event: ClickEvent) => void |
插槽
插槽名 | 说明 | 类型 |
---|---|---|
nodeBuilder | 自定义按钮的内容 | CustomBuilder | null |