harmony-demo-panel/entry/src/main/ets/views/SideBar.ets
2023-11-22 18:34:30 +08:00

82 lines
2.4 KiB
Plaintext

interface IControllerValue {
beginX: number;
endX: number;
maxMoveRate: number;
swipeDirection: number;
leftMoveDistance: number;
}
@Component
export struct SideBar {
private TAG: string = 'Sidebar';
private defaultWidth: number = 350
@BuilderParam contentView: () => void
// 模态转场控制变量
onClose: () => void = () => {
}
@Prop contentWidth: number | string = this.defaultWidth;
@State marginLeft: number = 0;
// sidebar控制变量
controlValue: IControllerValue = {
beginX: 0,
endX: 0,
maxMoveRate: 0.12,
swipeDirection: 0, // 0 is left, 1 is right
leftMoveDistance: 0,
}
aboutToDisappear() {
this.onClose()
}
build() {
Column() {
this.contentView()
}
.margin({ left: -this.marginLeft })
.width(this.contentWidth)
.height('100%')
.onTouch(event => {
// 按下赋初始值
if (event.type === TouchType.Down) {
this.controlValue.beginX = event.touches[0].displayX;
this.controlValue.leftMoveDistance = 0;
}
// 移动改变宽度
if (event.type === TouchType.Move) {
this.controlValue.endX = event.touches[0].displayX; // 手指停止的位置
const moveDistance = this.controlValue.beginX - this.controlValue.endX; // 滑动的水平距离
// 判断水平滑动方向
if (this.controlValue.leftMoveDistance > 0) {
this.controlValue.swipeDirection = 0;
} else {
this.controlValue.swipeDirection = 1;
}
// 更新
this.marginLeft = (this.marginLeft + moveDistance) > 0 ? (this.marginLeft + moveDistance) : 0;
this.controlValue.beginX = this.controlValue.endX;
this.controlValue.leftMoveDistance += moveDistance
}
// 手指抬起判断是否关闭
if (event.type === TouchType.Up) {
console.log(this.TAG, 'TouchType up' + this.controlValue.leftMoveDistance);
if (this.controlValue.leftMoveDistance > this.controlValue.maxMoveRate * +this.defaultWidth) {
this.onClose()
}
this.marginLeft = 0;
}
})
.gesture(
SwipeGesture({ direction: SwipeDirection.Horizontal })
.onAction((event?: GestureEvent) => {
if (event && this.controlValue.swipeDirection == 0) {
this.onClose()
this.marginLeft = 0;
}
})
) // 快速滑动关闭
}
}