This commit is contained in:
2026-09-24 16:25:22 +08:00
commit 7428184f01
1198 changed files with 314515 additions and 0 deletions
@@ -0,0 +1,273 @@
<script lang="ts" setup>
import { ref, computed, watch, onMounted, onBeforeUnmount } from "vue"
import { getUid } from "../../core/util/xCoreUtil.uts"
import { getDefaultColor } from "../../core/util/xCoreColorUtil.uts"
import { checkIsCssUnit } from "../../core/util/xCoreUtil.uts"
import { xConfig, xProvitae } from "../../config/xConfig.uts"
/**
* @name 查看更多 xMore
* @description 让内容超过指定高时自动隐藏内容.
* @page /pages/index/more
* @category 展示组件
* @constant平台兼容
* | Harmony | H5 | andriod | IOS | 小程序 | UTS | UNIAPP-X SDK | version |
| --- | --- | --- | --- | --- | --- | --- | --- |
| ☑ | ☑ | ☑️ | ☑️ | ☑️ | ☑️ | 4.76+ | 1.1.18 |
*/
defineOptions({name:"xMore"})
const i18n = xConfig.i18n
defineSlots<{
default(props:{isOpened:boolean}): any
}>()
const emits = defineEmits([
/**
* 状态切换时变换
* @param { boolean } opened - 当前打开的状态
*/
'change',
/**
* 点击展开的按钮时触发
* @param {boolean} opened - 当前打开的状态,可以通过此判断是点打开还是点关闭
*/
'click',
'update:modelValue'
])
type xMorePropsType = {
/**
* 组件宽度
*/
width: string,
/**
* 被关闭时的高度。
*/
height: string,
/**
* 当前打开的状态
*/
modelValue: boolean,
/**
* 激活后的文本色,默认是读取全局色
*/
activeColor: string,
/**
* 未激活后的文本色
*/
unActiveColor: string,
/**
* 打开和关闭状态的文本
* "展开更多", "收起更多"
*/
text: string[],
/**
* 遮罩的渐变的背景色
*/
maskBgColor: string[],
/**
* 暗黑时遮罩的渐变的背景色
*/
darkMaskBgColor: string[],
/**
* 是否禁用展开。
*/
disabled: boolean,
/**
* 是否显示开启和关闭按钮,
* 因为各个手机屏幕可能不一样,可能会根据行数自行决定是否
* 要显示展开和关闭按钮,请通过此自行判断.
*/
showMoreBtn: boolean
}
const props = withDefaults(defineProps<xMorePropsType>(), {
width: "auto",
height: "60",
modelValue: false,
activeColor: "",
unActiveColor: "#a6a6a6",
text: () => [] as string[],
maskBgColor: () => ['rgba(255, 255, 255, 1)', 'rgba(255, 255, 255, 0.3)'],
darkMaskBgColor: () => ['rgba(24, 24, 24, 1.0)', 'rgba(24, 24, 24, 0.3)'],
disabled: false,
showMoreBtn: true
})
// 响应式数据
const boxHeight = ref(0)
const opened = ref(false)
const resizeObserver = ref<UniResizeObserver | null>(null)
const xMoreWrapRef = ref<UniElement|null>(null)
// 计算属性
const _showMoreBtn = computed((): boolean => props.showMoreBtn)
const _disabled = computed((): boolean => props.disabled)
const _width = computed((): string => checkIsCssUnit(props.width, xConfig.unit))
const _height = computed((): string => checkIsCssUnit(props.height, xConfig.unit))
const _activeColor = computed((): string => {
if (props.activeColor == "") return getDefaultColor(xConfig.color);
return getDefaultColor(props.activeColor);
})
const _unActiveColor = computed((): string => {
return getDefaultColor(props.unActiveColor);
})
const _text = computed((): string[] => {
if(props.text.length==0){
let arg:string[] = [i18n.t('tmui4x.xmore.off'),i18n.t('tmui4x.xmore.on')]
return arg;
}
return props.text
})
const _maskBgColor = computed((): string => {
if (xConfig.dark == 'dark') {
return `linear-gradient(to top, ${props.darkMaskBgColor[0]}, ${props.darkMaskBgColor[1]})`
}
return `linear-gradient(to top, ${props.maskBgColor[0]}, ${props.maskBgColor[1]})`
})
// 方法
function getNodeInfoByreset(): void {
uni.createSelectorQuery()
.select(".xMoreWrap")
.boundingClientRect().exec((ret) => {
let nodeinfo = ret[0] as NodeInfo
boxHeight.value = nodeinfo.height!
})
}
function getNodeInfo(istrue: boolean): void {
uni.createSelectorQuery()
.select(".xMoreWrap")
.boundingClientRect().exec((ret) => {
let nodeinfo = ret[0] as NodeInfo
boxHeight.value = nodeinfo.height!
opened.value = istrue
/**
* 等同v-model
*/
emits("update:modelValue", istrue)
})
}
function onClick(): void {
emits('click', opened.value)
if (_disabled.value) return;
let ctrue = !opened.value
getNodeInfo(ctrue);
/**
* 状态切换时变换
* @param opened { boolean } 当前打开的状态
*/
emits("change", ctrue)
}
// 监听器
watch((): boolean => props.modelValue, (newvalue: boolean) => {
if (opened.value == newvalue) return;
getNodeInfo(newvalue);
})
// 生命周期
onMounted(() => {
getNodeInfo(props.modelValue)
let ele = xMoreWrapRef.value
// #ifdef APP||WEB
if(ele==null) return;
if (resizeObserver.value == null) {
resizeObserver.value = new UniResizeObserver((entries: Array<UniResizeObserverEntry>) => {
entries.forEach(entry => {
if (entry.target == ele) {
getNodeInfoByreset()
}
})
})
}
resizeObserver.value!.observe(ele!)
// #endif
// #ifdef MP
getNodeInfoByreset()
// #endif
})
onBeforeUnmount(() => {
resizeObserver.value?.disconnect()
})
</script>
<template>
<view>
<view class="xMore" :style="{width:_width,height:opened?boxHeight+'px':_height}">
<view class="xMoreWrap" ref="xMoreWrapRef">
<!--
@slot 默认插槽
@prop {boolean} isOpened - 当前是否打开
-->
<slot :isOpened="opened"></slot>
</view>
<view v-if="!opened&&_showMoreBtn" class="xMoreMasker" :style="{'background-image':_maskBgColor}">
</view>
</view>
<view v-if="_showMoreBtn" class="xMoreTextBox" @click="onClick" :disabled="_disabled">
<text class="xMoreText" :style="{color:opened? _activeColor:_unActiveColor}">
{{opened?_text[1]:_text[0]}}
</text>
<x-icon font-size="14" :color="opened? _activeColor:_unActiveColor"
:name="opened?'arrow-up-s-line':'arrow-down-s-line'"></x-icon>
</view>
</view>
</template>
<style scoped>
.xMoreTextBox {
/* background-color: rgba(255, 255, 255, 0.8); */
padding: 20rpx 0;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
/* #ifdef WEB */
cursor: pointer;
/* #endif */
}
/* #ifdef WEB */
.xMoreTextBox[disabled=true] {
cursor: no-drop;
}
/* #endif */
.xMoreText {
font-size: 14px;
color: #a6a6a6;
text-align: center;
}
.xMore {
overflow: hidden;
transition-duration: 350ms;
transition-property: height;
transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
position: relative;
}
.xMoreWrap {
}
.xMoreMasker {
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
height: 100%;
/* background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.3)); */
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
</style>