Files
frontend-app/uni_modules/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue
T
2026-07-23 14:31:06 +08:00

270 lines
8.1 KiB
Vue
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.
<template>
<!-- #ifdef MP-ALIPAY -->
<!-- <import-sjs from="./alipay.sjs" name="mysjs" /> -->
<!-- #endif -->
<view class="u-swipe-action-item" ref="u-swipe-action-item">
<view class="u-swipe-action-item__right">
<slot name="button">
<view v-for="(item,index) in options" :key="index" class="u-swipe-action-item__right__button"
:ref="`u-swipe-action-item__right__button-${index}`" :style="[{
alignItems: item.style && item.style.borderRadius ? 'center' : 'stretch'
}]" @tap="buttonClickHandler(item, index)">
<view class="u-swipe-action-item__right__button__wrapper" :style="[{
backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : defaultButtonBgColor,
borderRadius: item.style && item.style.borderRadius ? item.style.borderRadius : '0',
padding: item.style && item.style.borderRadius ? '0' : '0 15px',
}, item.style]">
<up-icon v-if="item.icon" :name="item.icon"
:color="item.style && item.style.color ? item.style.color : defaultButtonColor"
:size="item.iconSize ? addUnit(item.iconSize) : item.style && item.style.fontSize ? getPx(item.style.fontSize) * 1.2 : 17"
:customStyle="{
marginRight: item.text ? '2px' : 0
}"></up-icon>
<text v-if="item.text" class="u-swipe-action-item__right__button__wrapper__text u-line-1"
:style="[{
color: item.style && item.style.color ? item.style.color : defaultButtonColor,
fontSize: item.style && item.style.fontSize ? item.style.fontSize : '16px',
lineHeight: item.style && item.style.fontSize ? item.style.fontSize : '16px',
}]">{{ item.text }}</text>
</view>
</view>
</slot>
</view>
<!-- #ifdef APP-VUE || MP-WEIXIN || MP-QQ || H5 -->
<view class="u-swipe-action-item__content" @touchstart="wxs.touchstart" @touchmove="wxs.touchmove"
@touchend="wxs.touchend" :status="status" :change:status="wxs.statusChange" :size="size"
:change:size="wxs.sizeChange">
<slot></slot>
</view>
<!-- #endif -->
<!-- #ifdef MP-ALIPAY || MP-BAIDU || MP-TOUTIAO-->
<view class="u-swipe-action-item__content" @click="clickHandler" @touchstart="touchstart" @touchmove="touchmove"
@touchend="touchend" :style="sliderStyle">
<slot></slot>
</view>
<!-- <view class="u-swipe-action-item__content" @touchstart="mysjs.touchstart" @touchmove="mysjs.touchmove"
@touchend="mysjs.touchend">
<slot></slot>
</view> -->
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view class="u-swipe-action-item__content" ref="u-swipe-action-item__content" @panstart="onTouchstart"
@tap="clickHandler">
<slot></slot>
</view>
<!-- #endif -->
</view>
</template>
<!-- #ifdef APP-VUE || MP-WEIXIN || MP-QQ || H5 -->
<script src="./index.wxs" module="wxs" lang="wxs"></script>
<!-- #endif -->
<script>
import { touchMixin } from '../../libs/mixin/touch'
import { props } from './props';
import { mpMixin } from '../../libs/mixin/mpMixin';
import { mixin } from '../../libs/mixin/mixin';
import { addUnit, getPx, sleep } from '../../libs/function/index';
// #ifdef APP-NVUE
import nvue from './nvue.js';
// #endif
// #ifdef APP-VUE || MP-WEIXIN || MP-QQ || H5
import wxs from './wxs.js';
// #endif
// #ifdef MP-ALIPAY || MP-BAIDU || MP-TOUTIAO
import other from './other.js';
// #endif
/**
* SwipeActionItem 滑动单元格子组件
* @description 该组件一般用于左滑唤出操作菜单的场景,用的最多的是左滑删除操作
* @tutorial https://uview-plus.jiangruyi.com/components/swipeAction.html
* @property {Boolean} show 控制打开或者关闭(默认 false )
* @property {String | Number} index 标识符,如果是v-for,可用index索引
* @property {Boolean} disabled 是否禁用(默认 false )
* @property {Boolean} autoClose 是否自动关闭其他swipe按钮组(默认 true )
* @property {Number} threshold 滑动距离阈值,只有大于此值,才被认为是要打开菜单(默认 30 )
* @property {Array} options 右侧按钮内容
* @property {String | Number} duration 动画过渡时间,单位ms(默认 350 )
* @event {Function(index)} open 组件打开时触发
* @event {Function(index)} close 组件关闭时触发
* @example <u-swipe-action><u-swipe-action-item :options="options1" ></u-swipe-action-item></u-swipe-action>
*/
export default {
name: 'u-swipe-action-item',
emits: ['click', 'update:show'],
mixins: [
mpMixin,
mixin,
// #ifndef APP-NVUE
touchMixin,
// #endif
// #ifdef APP-NVUE
nvue,
// #endif
// #ifdef APP-VUE || MP-WEIXIN || MP-QQ || H5
wxs,
// #endif
// #ifdef MP-ALIPAY || MP-BAIDU || MP-TOUTIAO
other,
// #endif
props
],
data() {
return {
// 按钮的尺寸信息
size: {},
// 父组件u-swipe-action的参数
parentData: {
autoClose: true,
},
// 当前状态,open-打开,close-关闭
status: '',
sliderStyle: {}
}
},
watch: {
// 由于wxs无法直接读取外部的值,需要在外部值变化时,重新执行赋值逻辑
// #ifndef APP-NVUE
wxsInit(newValue, oldValue) {
this.queryRect()
},
// #endif
status(newValue) {
if (newValue === 'open') {
this.$emit('update:show', true)
this.parent && this.parent.setOpendItem(this)
} else {
this.$emit('update:show', false)
}
},
show(newValue) {
if (newValue) {
this.status = 'open'
} else {
this.status = 'close'
}
}
},
computed: {
wxsInit() {
return [this.disabled, this.autoClose, this.threshold, this.options, this.duration]
},
defaultButtonBgColor() {
return this.upThemeVar('--up-swipe-action-button-bg-color', this.upThemeIsDark ? '#4b5563' : '#C7C6CD')
},
defaultButtonColor() {
return this.upThemeVar('--up-swipe-action-button-color', '#ffffff')
}
},
mounted() {
this.init()
},
beforeUmount() {
this.closeHandler()
},
methods: {
addUnit,
getPx,
init() {
// 初始化父组件数据
this.updateParentData()
// #ifndef APP-NVUE
sleep().then(() => {
this.queryRect()
})
// #endif
},
updateParentData() {
// 此方法在mixin中
this.getParentData('u-swipe-action')
},
// #ifndef APP-NVUE
// 查询节点
queryRect() {
this.$uGetRect('.u-swipe-action-item__right__button', true).then(buttons => {
this.size = {
buttons,
show: this.show,
disabled: this.disabled,
threshold: this.threshold,
duration: this.duration
}
})
},
// #endif
// 按钮被点击
buttonClickHandler(item, index) {
let ret = this.$emit('click', {
index,
name: this.name
}, () => {
})
if (this.closeOnClick) {
this.closeHandler()
}
}
},
}
</script>
<style lang="scss" scoped>
.u-swipe-action-item {
position: relative;
overflow: hidden;
/* #ifndef APP-NVUE || MP-WEIXIN */
touch-action: pan-y;
/* #endif */
/* #ifndef APP-NVUE */
// 触发独立合成层,避免 H5 下 overflow 裁剪失效导致右侧按钮露边
transform: translateZ(0);
/* #endif */
&__content {
position: relative;
// 保证内容层始终铺满整行,避免关闭态右侧露出删除按钮底色
width: 100%;
transform: translateX(0px); // 修复某些情况下默认右侧按钮是展开的问题
background-color: var(--up-card-bg-color, #FFFFFF);
z-index: 10;
/* #ifndef APP-NVUE */
// 覆盖 H5 亚像素渲染时内容层与容器之间的 1px 缝隙
box-shadow: 1px 0 0 var(--up-card-bg-color, #FFFFFF);
box-sizing: border-box;
/* #endif */
}
&__right {
position: absolute;
top: 0;
bottom: 0;
right: 0;
height: 100%;
z-index: 1;
@include flex;
&__button {
@include flex;
justify-content: center;
overflow: hidden;
align-items: center;
&__wrapper {
@include flex;
align-items: center;
justify-content: center;
padding: 0 15px;
&__text {
@include flex;
align-items: center;
color: var(--up-swipe-action-button-color, #FFFFFF);
font-size: 15px;
text-align: center;
justify-content: center;
}
}
}
}
}
</style>