You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
4.0 KiB
Vue
189 lines
4.0 KiB
Vue
<template>
|
|
<div
|
|
class="avatar"
|
|
:style="{ width: avatarSize + 'px', height: avatarSize + 'px' }"
|
|
@click="handleAvatarClick"
|
|
@longpress="longpress"
|
|
@touchend="touchend"
|
|
>
|
|
<!-- 使用遮罩层避免android长按头像会出现保存图片的弹窗 -->
|
|
<div class="img-mask"></div>
|
|
<image
|
|
:lazy-load="true"
|
|
class="avatar-img"
|
|
v-if="avatarUrl"
|
|
:src="avatarUrl"
|
|
mode="aspectFill"
|
|
/>
|
|
<div class="avatar-name-wrapper" :style="{ backgroundColor: color }">
|
|
<div class="avatar-name-text" :style="{ fontSize: fontSize + 'px' }">
|
|
{{ appellation }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { customNavigateTo, customRedirectTo } from '../utils/customNavigate'
|
|
import type { UserNameCard } from '@xkit-yx/im-store'
|
|
import { autorun } from 'mobx'
|
|
import { ref, computed, onUnmounted } from '../utils/transformVue'
|
|
import { deepClone } from '../utils'
|
|
|
|
const props = defineProps({
|
|
account: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
teamId: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
avatar: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
gotoUserCard: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
fontSize: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
isRedirect: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
const $emit = defineEmits(['onLongpress'])
|
|
|
|
const avatarSize = props.size || 42
|
|
const user = ref<UserNameCard>()
|
|
let isLongPress = false // uniapp 长按事件也会触发点击事件,此时需要处理
|
|
const appellation = computed(() => {
|
|
// @ts-ignore
|
|
return uni.$UIKitStore.uiStore
|
|
.getAppellation({
|
|
account: props.account,
|
|
teamId: props.teamId,
|
|
ignoreAlias: false,
|
|
nickFromMsg: '',
|
|
})
|
|
.slice(0, 2)
|
|
})
|
|
const uninstallUserInfoWatch = autorun(async () => {
|
|
// @ts-ignore
|
|
const data = await uni.$UIKitStore?.userStore?.getUserActive(props.account)
|
|
user.value = deepClone(data)
|
|
})
|
|
|
|
const avatarUrl = computed(() => {
|
|
// @ts-ignore
|
|
user.value = deepClone(uni.$UIKitStore?.userStore?.users?.get(props.account))
|
|
return props.avatar || user.value?.avatar
|
|
})
|
|
|
|
const key = `__yx_avatar_color_${props.account}__`
|
|
let color = uni.getStorageSync(key)
|
|
if (!color) {
|
|
const colorMap: { [key: number]: string } = {
|
|
0: '#60CFA7',
|
|
1: '#53C3F3',
|
|
2: '#537FF4',
|
|
3: '#854FE2',
|
|
4: '#BE65D9',
|
|
5: '#E9749D',
|
|
6: '#F9B751',
|
|
}
|
|
const _color = colorMap[Math.floor(Math.random() * 7)]
|
|
uni.setStorageSync(key, _color)
|
|
color = _color
|
|
}
|
|
|
|
const handleAvatarClick = () => {
|
|
if (props.gotoUserCard && !isLongPress) {
|
|
if (props.isRedirect) {
|
|
// @ts-ignore
|
|
if (props.account === uni.$UIKitStore?.userStore?.myUserInfo.account) {
|
|
customRedirectTo({
|
|
url: `/pages/user-card/my-detail/index`,
|
|
})
|
|
} else {
|
|
customRedirectTo({
|
|
url: `/pages/user-card/friend/index?account=${props.account}`,
|
|
})
|
|
}
|
|
} else {
|
|
// @ts-ignore
|
|
if (props.account === uni.$UIKitStore?.userStore?.myUserInfo.account) {
|
|
customNavigateTo({
|
|
url: `/pages/user-card/my-detail/index`,
|
|
})
|
|
} else {
|
|
customNavigateTo({
|
|
url: `/pages/user-card/friend/index?account=${props.account}`,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const longpress = () => {
|
|
isLongPress = true
|
|
$emit('onLongpress')
|
|
}
|
|
|
|
const touchend = () => {
|
|
setTimeout(() => {
|
|
isLongPress = false
|
|
}, 200)
|
|
}
|
|
|
|
onUnmounted(() => {
|
|
uninstallUserInfoWatch()
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.avatar {
|
|
overflow: hidden;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.img-mask {
|
|
position: absolute;
|
|
z-index: 10;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.avatar-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.avatar-name-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.avatar-name-text {
|
|
color: #fff;
|
|
size: 14px;
|
|
}
|
|
</style>
|