douyin/src/components/UserPanel.vue
2023-02-23 01:13:23 +08:00

1055 lines
25 KiB
Vue

<template>
<div id="UserPanel"
@scroll="scroll"
ref="page">
<div ref="float" class="float" :class="state.floatFixed?'fixed':''">
<div class="left" @click="$emit('back')">
<img class="back" src="@/assets/img/icon/next.svg" alt="">
<transition name="fade">
<div class="float-user" v-if="state.floatFixed">
<img v-lazy="Utils.$imgPreview(props.currentItem.user.avatar)" class="avatar"/>
<img v-if="!props.currentItem.user.is_follow" src="@/assets/img/icon/add-light.png" alt="" class="add">
<span @click="followButton">{{ props.currentItem.user.is_follow ? '私信' : '关注' }}</span>
</div>
</transition>
</div>
<div class="right">
<transition name="fade">
<div class="request" v-if="!state.floatFixed && props.currentItem.user.is_follow">
<img @click="$nav('/me/request-update')" src="@/assets/img/icon/me/finger-right.png" alt="">
<span>求更新</span>
</div>
</transition>
<img class="menu" src="@/assets/img/icon/search-light.png" alt="">
<img class="menu" src="@/assets/img/icon/more.svg" alt="" @click.stop="$emit('showFollowSetting')">
</div>
</div>
<div class="main"
ref="main"
@touchstart="touchStart"
@touchmove="touchMove"
@touchend="touchEnd">
<!-- src="@/assets/img/header-bg.png" -->
<header>
<img
:style="{opacity:props.currentItem.user.cover_url[0].url_list.length?1:0}"
ref="cover"
:src="props.currentItem.user.cover_url[0].url_list[0]"
@click="state.previewImg = props.currentItem.user.cover_url[0].url_list[0]"
alt=""
class="cover">
<div class="avatar-wrapper">
<img v-lazy="Utils.$imgPreview(props.currentItem.user.avatar_thumb.url_list[0])" class="avatar"
@click="state.previewImg = props.currentItem.user.avatar_thumb.url_list[0]">
<div class="description">
<div class="name f22 mb1r">{{ props.currentItem.user.nickname }}</div>
<div class="certification" v-if="props.currentItem.user.certification ">
<img src="@/assets/img/icon/me/certification.webp">
{{ props.currentItem.user.certification }}
</div>
<div class="number" v-else>
<span>抖音号:{{ props.currentItem.user.short_id }}</span>
<img src="@/assets/img/icon/me/copy.png" alt="" @click.stop="Utils.copy">
</div>
</div>
</div>
</header>
<div class="info">
<div class="heat">
<div class="text">
<span class="num">{{ Utils.formatNumber(props.currentItem.user.total_favorited) }}</span>
<span>获赞</span>
</div>
<div class="text">
<span class="num">{{ Utils.formatNumber(props.currentItem.user.following_count) }}</span>
<span>关注</span>
</div>
<div class="text">
<span class="num">{{ Utils.formatNumber(props.currentItem.user.mplatform_followers_count) }}</span>
<span>粉丝</span>
</div>
</div>
<div class="signature f12" v-if="props.currentItem.user.signature">
<div class="text" v-html="props.currentItem.user.signature"></div>
</div>
<div class="more">
<div class="age item" v-if="props.currentItem.user.user_age !== -1">
<img v-if="props.currentItem.user.gender" src="@/assets/img/icon/me/man.png" alt="">
<img v-else src="@/assets/img/icon/me/woman.png" alt="">
<span>{{ props.currentItem.user.user_age }}岁</span>
</div>
<div class="item" v-if="props.currentItem.user.ip_location">
{{ props.currentItem.user.ip_location }}
</div>
<template v-else>
<div class="item" v-if="props.currentItem.user.province || props.currentItem.user.city">
{{ props.currentItem.user.province }}
<template v-if="props.currentItem.user.province && props.currentItem.user.city">
·
</template>
{{ props.currentItem.user.city }}
</div>
</template>
<div class="item" v-if="props.currentItem.user.school?.name">
{{ props.currentItem.user.school?.name }}
</div>
</div>
</div>
<template v-if="props.currentItem.isRequest">
<div class="other">
<div class="scroll-x" @touchmove="stop">
<div class="item" v-for="item in props.currentItem.user.card_entries">
<img :src="item.icon_dark.url_list[0]" alt="">
<div class="right">
<div class="top">{{ item.title }}</div>
<div class="bottom">{{ item.sub_title }}</div>
</div>
</div>
</div>
</div>
<div class="my-buttons">
<div class="follow-display">
<div class="follow-wrapper" :class="props.currentItem.user.follow_status ? 'follow-wrapper-followed' : ''">
<div class="no-follow" @click="props.currentItem.user.follow_status = 1">
<img src="@/assets/img/icon/add-white.png" alt="">
<span>关注</span>
</div>
<div class="followed">
<div class="l-button" @click="$emit('showFollowSetting2')">
<span>已关注</span>
<img src="@/assets/img/icon/arrow-up-white.png" alt="">
</div>
<div class="l-button" @click="$nav('/message/chat')">
<span>私信</span>
</div>
</div>
</div>
</div>
<div class="option"
:class="state.isShowRecommend?'option-recommend':''"
@click="state.isShowRecommend = !state.isShowRecommend">
<img v-if="state.loadings.showRecommend" class="loading" src="@/assets/img/icon/loading-gray.png"
alt="">
<img v-else class="arrow" src="@/assets/img/icon/arrow-up-white.png" alt="">
</div>
</div>
<div class="recommend" :class="{hidden:!state.isShowRecommend}">
<div class="title">
<span>你可能感兴趣</span>
<img src="@/assets/img/icon/about-gray.png">
</div>
<div class="friends"
@touchmove="stop">
<div class="friend" v-for="item in friends.all">
<img :style="item.select?'opacity: .5;':''" class="avatar" :src="$imgPreview(item.avatar)" alt="">
<span class="name">{{ item.name }}</span>
<span class="tips">可能感兴趣的人</span>
<dy-button type="primary">关注</dy-button>
<div class="close">
<dy-back img="close" scale=".6"></dy-back>
</div>
</div>
<div class="more" @click="$nav('/people/find-acquaintance')">
<div class="notice">
<div>点击查看</div>
<div>更多好友</div>
</div>
</div>
</div>
</div>
<div class="total" ref="total">
作品 {{ props.currentItem.user.aweme_count }}
<img class="arrow" src="@/assets/img/icon/arrow-up-white.png" alt="">
</div>
<div class="videos">
<Posters v-if="state.videos.my.total !== -1" :list="state.videos.my.list"></Posters>
</div>
</template>
</div>
</div>
</template>
<script setup>
import {computed, onMounted, reactive, ref, watch} from "vue";
import Utils from "@/utils";
import {useNav} from "@/utils/hooks/useNav";
import {useStore} from "vuex";
import resource from "@/assets/data/resource";
import Posters from '@/components/Posters'
import api from "@/api";
import {merge} from 'lodash'
import {DefaultUser} from "@/utils/const_var";
const $nav = useNav()
const store = useStore()
const emit = defineEmits(['update:currentItem', 'back'])
const props = defineProps({
currentItem: {
type: Object,
default: {
user: DefaultUser,
isRequest: false,
videos: [],
}
},
active: {
type: Boolean,
default: false
}
})
const friends = computed(() => store.state.friends)
const main = ref(null)
const page = ref(null)
const cover = ref(null)
const total = ref(null)
const state = reactive({
isShowRecommend: false,//是否显示推荐
previewImg: '',
contentIndex: 0,
baseActiveIndex: 0,
tabContents: [],
floatFixed: false,
floatShowName: false,
isScroll: false,
isMoreFunction: false,
showFollowSetting: false,
refs: {
header: null,
headerHeight: 0,
descHeight: 0,
videoSlideHeight: 0,
maxSlideHeight: 0
},
videoItemHeight: 0,
startLocationY: 0,
fixedLocationY: 0,
lastMoveYDistance: 0,
canTransformY: 0,
startTime: 0,
floatHeight: 46,
videos: {
my: {
list: [],
total: -1,
pageNo: 0
},
private: {
list: [],
total: -1
},
like: {
list: [],
total: -1
},
collect: {
video: {
list: [],
total: -1,
},
audio: {
list: [],
total: -1,
}
},
},
pageSize: 15,
initSlideHeight: 0,
loadings: {
loading0: false,
loading1: false,
loading2: false,
loading3: false,
showRecommend: false
},
tempScroll: false,
acceleration: 1.2,
sprint: 15,
canScroll: true,
start: {x: 0, y: 0, time: 0},
move: {x: 0, y: 0},
isTop: false,
coverHeight: 240,
//能移动的高度
canMoveMaxHeight: document.body.clientHeight / 4,
//是否自动放大Cover
isAutoScaleCover: false
})
watch(() => props.active,
async (newVal) => {
if (newVal && !props.currentItem.isRequest) {
let res = await api.user.profile()
console.log('res', res)
if (res.code === 200) {
emit('update:currentItem', merge(props.currentItem, {user: res.data.user, isRequest: true}))
}
}
})
onMounted(() => {
state.videos.my.list = resource.my
state.videos.my.total = resource.my.length
})
function stop(e) {
e.stopPropagation()
}
function followButton() {
}
function back() {
}
function scroll(e) {
// console.log('scroll', page.value.scrollTop)
let scrollTop = page.value.scrollTop
let totalY = total.value.getBoundingClientRect().y
state.floatFixed = totalY <= 46
let isTop = scrollTop === 0
if (isTop && state.isAutoScaleCover) {
cover.value.style.transition = 'all .1s'
cover.value.style.height = `calc(${state.coverHeight}rem + ${state.canMoveMaxHeight}px)`
setTimeout(() => {
cover.value.style.transition = 'all .4s'
cover.value.style.height = `calc(${state.coverHeight}rem)`
state.isAutoScaleCover = false
}, 200)
}
}
function touchStart(e) {
state.start.x = e.touches[0].pageX
state.start.y = e.touches[0].pageY
state.start.time = Date.now()
state.isTop = page.value.scrollTop === 0
if (state.isTop) {
cover.value.style.transition = 'none'
}
console.log('touchStart', page.value.scrollTop)
}
function touchMove(e) {
state.move.x = e.touches[0].pageX - state.start.x
state.move.y = e.touches[0].pageY - state.start.y
let isNext = state.move.y < 0
// console.log('touchMove', page.value.scrollTop)
//todo 有空了加个,越滑越紧的效果
if (state.isTop && !isNext && (document.body.clientHeight / 4 > state.move.y)) {
// if (state.isTop && !isNext) {
let scrollHeight = state.move.y
cover.value.style.height = `calc(${state.coverHeight}rem + ${scrollHeight}px)`
}
}
function touchEnd(e) {
if (state.isTop) {
state.isTop = false
cover.value.style.transition = 'all .3s'
cover.value.style.height = `calc(${state.coverHeight}rem)`
}
let endTime = Date.now()
state.isAutoScaleCover = (endTime - state.start.time) < 100
console.log('touchEnd')
}
</script>
<style scoped lang="less">
@import "@/assets/less/index";
.fade1-enter-active,
.fade1-leave-active {
transition: all 0.3s ease;
}
.fade1-enter-from,
.fade1-leave-to {
transform: translateY(10px);
opacity: 0;
}
.FromBottomDialog {
left: inherit;
}
#UserPanel {
position: fixed;
background: @main-bg;
height: 100%;
width: 100%;
overflow: auto;
font-size: 14rem;
.preview-img {
z-index: 3;
position: fixed;
bottom: 0;
top: 0;
background: black;
display: flex;
align-items: center;
justify-content: center;
.resource {
width: 100vw;
max-height: 100vw;
}
.download {
position: absolute;
bottom: 20rem;
right: 20rem;
padding: 3rem;
background: @second-btn-color-tran;
width: 20rem;
}
}
.mask {
background: #0000004f;
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 3;
}
.main {
.notice {
font-size: 12rem;
height: 40rem;
color: @second-text-color;
display: flex;
justify-content: center;
align-items: center;
img {
height: 12rem;
margin-right: 5rem;
}
}
.collect {
padding: 7rem;
.video {
background: @active-main-bg;
border-radius: 5rem;
padding: 10rem;
margin-bottom: 7rem;
.top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10rem;
.left {
display: flex;
align-items: center;
color: gainsboro;
img {
height: 20rem;
margin-right: 5rem;
}
}
.right {
display: flex;
align-items: center;
color: @second-text-color;
}
}
.list {
display: grid;
grid-template-columns: 33.33% 33.33% 33.33%;
.item {
height: calc(33.33vw * 1.3);
padding: 2rem;
overflow: hidden;
position: relative;
.poster {
border-radius: 4rem;
width: 100%;
height: 100%;
display: block;
}
.num {
color: white;
position: absolute;
bottom: 5rem;
left: 5rem;
display: flex;
align-items: center;
font-size: 14rem;
.love {
width: 14rem;
height: 14rem;
margin-right: 5rem;
}
}
}
}
}
.audio {
background: @active-main-bg;
border-radius: 5rem;
padding: 10rem;
.top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10rem;
.left {
display: flex;
align-items: center;
color: gainsboro;
img {
height: 15rem;
margin-right: 5rem;
}
}
.right {
display: flex;
align-items: center;
color: @second-text-color;
}
}
.list {
display: grid;
grid-template-columns: 33.33% 33.33% 33.33%;
.item {
padding: 2rem;
overflow: hidden;
position: relative;
.poster {
border-radius: 4rem;
width: 100%;
height: calc((100vw - 34rem) / 3);
display: block;
}
.title {
margin-top: 5rem;
color: @second-text-color;
}
}
}
}
}
header {
position: relative;
color: white;
.cover {
height: 240rem;
object-fit: cover;
width: 100vw;
//transition: height .3s;
}
.avatar-wrapper {
display: flex;
align-items: center;
box-sizing: border-box;
position: absolute;
bottom: 35rem;
left: 20rem;
//margin-top: -20rem;
//transform: translateY(-20rem);
.avatar {
background: white;
padding: 2px;
border-radius: 50%;
width: 80rem;
height: 80rem;
}
.description {
font-size: 12rem;
color: white;
margin-left: 15rem;
.number, .certification {
display: flex;
align-items: center;
img {
width: 12rem;
margin-left: 5rem;
}
}
.number {
color: @second-text-color;
img {
margin-left: 5rem;
}
}
.certification {
img {
width: 14rem;
margin-right: 5rem;
}
}
}
}
}
.info {
position: relative;
z-index: 1;
background: @main-bg;
padding: 0 20rem;
border-radius: 10rem 10rem 0 0;
margin-top: -20rem;
.heat {
padding: 15rem 0;
color: @second-text-color;
display: flex;
align-items: center;
.text {
font-size: 12rem;
margin-right: 18rem;
display: flex;
align-items: center;
.num {
color: white;
font-size: 16rem;
font-weight: bold;
margin-right: 5rem;
}
}
}
.signature {
color: white;
display: flex;
align-items: center;
margin-bottom: 5rem;
img {
height: 12rem;
margin-left: 6rem;
}
.text {
white-space: pre-wrap;
}
}
.more {
margin-top: 10rem;
margin-bottom: 20rem;
color: @second-text-color;
display: flex;
.item {
padding: 2rem 5rem;
border-radius: 2rem;
background: @second-btn-color-tran;
font-size: 10rem;
display: flex;
align-items: center;
margin-right: 5rem;
img {
height: 10rem;
margin-right: 2rem;
}
}
}
}
.other {
display: flex;
margin-bottom: 20rem;
overflow: hidden;
.scroll-x {
padding-left: 20rem;
display: flex;
overflow-x: scroll;
}
.item {
margin-right: 25rem;
display: flex;
flex-shrink: 0;
img {
margin-right: 8rem;
border-radius: 4rem;
height: 40rem;
}
.right {
display: flex;
justify-content: space-between;
flex-direction: column;
.top {
color: white;
font-size: 14rem;
}
.bottom {
color: @second-text-color;
font-size: 12rem;
}
}
}
}
.my-buttons {
margin: 20rem;
overflow: hidden;
display: flex;
justify-content: flex-end;
align-items: center;
@width: 36rem;
.follow-display {
flex: 1;
overflow: hidden;
.follow-wrapper {
width: 200%;
display: flex;
flex-wrap: nowrap;
transition: all .3s ease;
&.follow-wrapper-followed {
transform: translate3d(-50%, 0, 0);
}
.no-follow {
width: calc(100% - 5rem);
color: white;
border-radius: 4rem;
background: @primary-btn-color;
height: @width;
display: flex;
align-items: center;
justify-content: center;
margin-right: 5rem;
box-sizing: border-box;
span {
margin-left: 2rem;
}
}
.followed {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
.l-button {
color: white;
border-radius: 4rem;
background: @second-btn-color;
height: @width;
width: 50%;
margin-right: 5rem;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
span {
margin-left: 2rem;
}
img {
transform: rotate(180deg);
}
}
}
}
img {
@width: 14rem;
width: @width;
height: @width;
}
}
.option {
position: relative;
width: @width;
height: @width;
font-size: 12rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4rem;
background: @second-btn-color;
color: white;
&.option-recommend {
.arrow {
transform: rotate(0deg);
}
}
}
.loading {
@width: 12rem;
width: @width;
height: @width;
animation: rotate .6s linear infinite;
@keyframes rotate {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg)
}
}
}
.arrow {
transition: transform .3s ease;
transform: rotate(180deg);
@width: 16rem;
width: @width;
height: @width;
}
}
.recommend {
transition: all .3s ease;
height: 250rem;
overflow: hidden;
&.hidden {
height: 0;
}
.title {
padding-left: 20rem;
font-size: 12rem;
color: @second-text-color;
display: flex;
align-items: center;
img {
margin-left: 3rem;
width: 13rem;
height: 13rem;
}
}
.friends {
padding-left: 20rem;
margin-top: 10rem;
display: flex;
overflow-x: scroll;
margin-bottom: 20rem;
.friend {
position: relative;
background: @second-btn-color-tran;
margin-right: 10rem;
padding: 10rem;
display: flex;
flex-direction: column;
align-items: center;
.avatar {
@width: 100rem;
border-radius: 50%;
width: @width;
height: @width;
}
.name {
margin-top: 10rem;
font-size: 12rem;
color: white;
}
.tips {
margin-top: 5rem;
font-size: 12rem;
color: @second-text-color;
}
.button {
margin-top: 10rem;
width: 150rem;
height: 26rem;
font-size: 12rem;
}
.close {
position: absolute;
top: 2rem;
right: 2rem;
}
}
.more {
.notice {
width: 100rem;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: @second-text-color;
}
}
}
}
.total {
background: @main-bg;
color: white;
display: flex;
align-items: center;
padding: 15rem 20rem;
padding-top: 0rem;
position: sticky;
top: 46rem;
z-index: 2;
img {
transform: rotate(180deg);
margin-left: 5rem;
width: 12rem;
height: 12rem;
}
}
.videos {
}
}
.float {
position: fixed;
box-sizing: border-box;
width: 100vw;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
height: 46rem;
padding: 0 15rem;
background: transparent;
transition: all .2s;
&.fixed {
background: @main-bg;
img {
background: @main-bg !important;
}
}
.left {
display: flex;
align-items: center;
.back {
transform: rotate(180deg);
border-radius: 50%;
background: rgba(82, 80, 80, 0.5);
padding: 6rem;
width: 18rem;
}
.float-user {
display: inline-flex;
margin-left: 32rem;
color: white;
font-size: 12rem;
align-items: center;
background: @second-btn-color-tran;
height: 22rem;
border-radius: 40rem;
padding: 1rem 10rem 1rem 1rem;
.add {
width: 12rem;
margin-right: 2rem;
}
.avatar {
width: 20rem;
border-radius: 50%;
margin-right: 5rem;
}
}
}
.right {
display: flex;
color: white;
align-items: center;
position: relative;
.request {
font-size: 12rem;
height: 26rem;
display: flex;
padding-right: 13rem;
padding-left: 5rem;
align-items: center;
border-radius: 20rem;
background: rgba(82, 80, 80, 0.5);
img {
padding: 6rem;
width: 18rem;
}
}
.menu {
margin-left: 15rem;
border-radius: 50%;
background: rgba(82, 80, 80, 0.5);
padding: 6rem;
width: 18rem;
}
}
}
}
</style>