2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-user-page" v-if="user">
|
|
|
|
<portal to="title" v-if="user"><mk-user-name :user="user" :nowrap="false" class="name"/></portal>
|
|
|
|
<portal to="avatar" v-if="user"><mk-avatar class="avatar" :user="user" :disable-preview="true"/></portal>
|
|
|
|
|
|
|
|
<div class="remote-caution _panel" v-if="user.host != null"><fa :icon="faExclamationTriangle" style="margin-right: 8px;"/>{{ $t('remoteUserCaution') }}<a :href="user.url" rel="nofollow noopener" target="_blank">{{ $t('showOnRemote') }}</a></div>
|
|
|
|
<transition name="zoom" mode="out-in" appear>
|
|
|
|
<div class="profile _panel" :key="user.id">
|
|
|
|
<div class="banner-container" :style="style">
|
|
|
|
<div class="banner" ref="banner" :style="style"></div>
|
|
|
|
<div class="fade"></div>
|
|
|
|
<div class="title">
|
|
|
|
<mk-user-name class="name" :user="user" :nowrap="true"/>
|
|
|
|
<div class="bottom">
|
|
|
|
<span class="username"><mk-acct :user="user" :detail="true" /></span>
|
|
|
|
<span v-if="user.isAdmin" :title="$t('isAdmin')"><fa :icon="faBookmark"/></span>
|
2020-01-30 21:09:52 +01:00
|
|
|
<span v-if="!user.isAdmin && user.isModerator" :title="$t('isModerator')"><fa :icon="farBookmark"/></span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span v-if="user.isLocked" :title="$t('isLocked')"><fa :icon="faLock"/></span>
|
|
|
|
<span v-if="user.isBot" :title="$t('isBot')"><fa :icon="faRobot"/></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span class="followed" v-if="$store.getters.isSignedIn && $store.state.i.id != user.id && user.isFollowed">{{ $t('followsYou') }}</span>
|
|
|
|
<div class="actions" v-if="$store.getters.isSignedIn">
|
|
|
|
<button @click="menu" class="menu _button" ref="menu"><fa :icon="faEllipsisH"/></button>
|
2020-01-31 03:58:59 +01:00
|
|
|
<mk-follow-button v-if="$store.state.i.id != user.id" :user="user" :inline="true" :transparent="false" :full="true" class="koudoku"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<mk-avatar class="avatar" :user="user" :disable-preview="true"/>
|
|
|
|
<div class="title">
|
|
|
|
<mk-user-name :user="user" :nowrap="false" class="name"/>
|
|
|
|
<div class="bottom">
|
|
|
|
<span class="username"><mk-acct :user="user" :detail="true" /></span>
|
|
|
|
<span v-if="user.isAdmin" :title="$t('isAdmin')"><fa :icon="faBookmark"/></span>
|
2020-01-30 21:09:52 +01:00
|
|
|
<span v-if="!user.isAdmin && user.isModerator" :title="$t('isModerator')"><fa :icon="farBookmark"/></span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span v-if="user.isLocked" :title="$t('isLocked')"><fa :icon="faLock"/></span>
|
|
|
|
<span v-if="user.isBot" :title="$t('isBot')"><fa :icon="faRobot"/></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="description">
|
|
|
|
<mfm v-if="user.description" :text="user.description" :is-note="false" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/>
|
|
|
|
<p v-else class="empty">{{ $t('noAccountDescription') }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="fields system">
|
|
|
|
<dl class="field" v-if="user.location">
|
|
|
|
<dt class="name"><fa :icon="faMapMarker" fixed-width/> {{ $t('location') }}</dt>
|
|
|
|
<dd class="value">{{ user.location }}</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field" v-if="user.birthday">
|
|
|
|
<dt class="name"><fa :icon="faBirthdayCake" fixed-width/> {{ $t('birthday') }}</dt>
|
|
|
|
<dd class="value">{{ user.birthday.replace('-', '/').replace('-', '/') }} ({{ $t('yearsOld', { age }) }})</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field">
|
|
|
|
<dt class="name"><fa :icon="faCalendarAlt" fixed-width/> {{ $t('registeredDate') }}</dt>
|
|
|
|
<dd class="value">{{ new Date(user.createdAt).toLocaleString() }} (<mk-time :time="user.createdAt"/>)</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="fields" v-if="user.fields.length > 0">
|
|
|
|
<dl class="field" v-for="(field, i) in user.fields" :key="i">
|
|
|
|
<dt class="name">
|
|
|
|
<mfm :text="field.name" :plain="true" :custom-emojis="user.emojis" :colored="false"/>
|
|
|
|
</dt>
|
|
|
|
<dd class="value">
|
|
|
|
<mfm :text="field.value" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :colored="false"/>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="status" v-if="user.host === null">
|
|
|
|
<router-link :to="user | userPage()" :class="{ active: $route.name === 'user' }">
|
|
|
|
<b>{{ user.notesCount | number }}</b>
|
|
|
|
<span>{{ $t('notes') }}</span>
|
|
|
|
</router-link>
|
|
|
|
<router-link :to="user | userPage('following')" :class="{ active: $route.name === 'userFollowing' }">
|
|
|
|
<b>{{ user.followingCount | number }}</b>
|
|
|
|
<span>{{ $t('following') }}</span>
|
|
|
|
</router-link>
|
|
|
|
<router-link :to="user | userPage('followers')" :class="{ active: $route.name === 'userFollowers' }">
|
|
|
|
<b>{{ user.followersCount | number }}</b>
|
|
|
|
<span>{{ $t('followers') }}</span>
|
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
<router-view :user="user"></router-view>
|
|
|
|
<template v-if="$route.name == 'user'">
|
|
|
|
<sequential-entrance class="pins">
|
|
|
|
<x-note v-for="(note, i) in user.pinnedNotes" class="note" :note="note" :key="note.id" :data-index="i" :detail="true" :pinned="true"/>
|
|
|
|
</sequential-entrance>
|
|
|
|
<mk-container :body-togglable="true" class="content">
|
|
|
|
<template #header><fa :icon="faImage"/>{{ $t('images') }}</template>
|
|
|
|
<div>
|
|
|
|
<x-photos :user="user" :key="user.id"/>
|
|
|
|
</div>
|
|
|
|
</mk-container>
|
|
|
|
<mk-container :body-togglable="true" class="content">
|
|
|
|
<template #header><fa :icon="faChartBar"/>{{ $t('activity') }}</template>
|
|
|
|
<div style="padding:8px;">
|
|
|
|
<x-activity :user="user" :key="user.id"/>
|
|
|
|
</div>
|
|
|
|
</mk-container>
|
|
|
|
<x-user-timeline :user="user"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="error">
|
|
|
|
<mk-error @retry="fetch()"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faEllipsisH, faRobot, faLock, faBookmark, faExclamationTriangle, faChartBar, faImage, faBirthdayCake, faMapMarker } from '@fortawesome/free-solid-svg-icons';
|
2020-01-30 21:09:52 +01:00
|
|
|
import { faCalendarAlt, faBookmark as farBookmark } from '@fortawesome/free-regular-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
import * as age from 's-age';
|
|
|
|
import XUserTimeline from './index.timeline.vue';
|
|
|
|
import XUserMenu from '../../components/user-menu.vue';
|
|
|
|
import XNote from '../../components/note.vue';
|
2020-01-31 03:35:18 +01:00
|
|
|
import MkFollowButton from '../../components/follow-button.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import MkContainer from '../../components/ui/container.vue';
|
|
|
|
import Progress from '../../scripts/loading';
|
|
|
|
import parseAcct from '../../../misc/acct/parse';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XUserTimeline,
|
|
|
|
XNote,
|
2020-01-31 03:35:18 +01:00
|
|
|
MkFollowButton,
|
2020-01-29 20:37:25 +01:00
|
|
|
MkContainer,
|
|
|
|
XPhotos: () => import('./index.photos.vue').then(m => m.default),
|
|
|
|
XActivity: () => import('./index.activity.vue').then(m => m.default),
|
|
|
|
},
|
|
|
|
|
|
|
|
metaInfo() {
|
|
|
|
return {
|
|
|
|
title: (this.user ? '@' + Vue.filter('acct')(this.user).replace('@', ' | ') : null) as string
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
user: null,
|
|
|
|
error: null,
|
|
|
|
parallaxAnimationId: null,
|
2020-01-30 21:09:52 +01:00
|
|
|
faEllipsisH, faRobot, faLock, faBookmark, farBookmark, faExclamationTriangle, faChartBar, faImage, faBirthdayCake, faMapMarker, faCalendarAlt
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
if (this.user.bannerUrl == null) return {};
|
|
|
|
return {
|
|
|
|
backgroundImage: `url(${ this.user.bannerUrl })`
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
age(): number {
|
|
|
|
return age(this.user.birthday);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
window.requestAnimationFrame(this.parallaxLoop);
|
|
|
|
window.addEventListener('scroll', this.parallax, { passive: true });
|
|
|
|
document.addEventListener('touchmove', this.parallax, { passive: true });
|
|
|
|
this.$once('hook:beforeDestroy', () => {
|
|
|
|
window.cancelAnimationFrame(this.parallaxAnimationId);
|
|
|
|
window.removeEventListener('scroll', this.parallax);
|
|
|
|
document.removeEventListener('touchmove', this.parallax);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
|
|
|
Progress.start();
|
|
|
|
this.$root.api('users/show', parseAcct(this.$route.params.user)).then(user => {
|
|
|
|
this.user = user;
|
|
|
|
}).catch(e => {
|
|
|
|
this.error = e;
|
|
|
|
}).finally(() => {
|
|
|
|
Progress.done();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
menu() {
|
|
|
|
this.$root.new(XUserMenu, {
|
|
|
|
source: this.$refs.menu,
|
|
|
|
user: this.user
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
parallaxLoop() {
|
|
|
|
this.parallaxAnimationId = window.requestAnimationFrame(this.parallaxLoop);
|
|
|
|
this.parallax();
|
|
|
|
},
|
|
|
|
|
|
|
|
parallax() {
|
|
|
|
const banner = this.$refs.banner as any;
|
|
|
|
if (banner == null) return;
|
|
|
|
|
|
|
|
const top = window.scrollY;
|
|
|
|
|
|
|
|
if (top < 0) return;
|
|
|
|
|
|
|
|
const z = 1.75; // 奥行き(小さいほど奥)
|
|
|
|
const pos = -(top / z);
|
|
|
|
banner.style.backgroundPosition = `center calc(50% - ${pos}px)`;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-user-page {
|
|
|
|
> .remote-caution {
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 16px;
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
|
|
|
|
> a {
|
|
|
|
margin-left: 4px;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .profile {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .banner-container {
|
|
|
|
position: relative;
|
|
|
|
height: 250px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
height: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #4c5e6d;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
box-shadow: 0 0 128px rgba(0, 0, 0, 0.5) inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 78px;
|
|
|
|
background: linear-gradient(transparent, rgba(#000, 0.7));
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .followed {
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
left: 12px;
|
|
|
|
padding: 4px 6px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .actions {
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
-webkit-backdrop-filter: blur(8px);
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 24px;
|
|
|
|
|
|
|
|
> .menu {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 31px;
|
|
|
|
width: 31px;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .koudoku {
|
|
|
|
margin-left: 4px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 0 8px 154px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.8em;
|
|
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .bottom {
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 16px;
|
|
|
|
line-height: 20px;
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
|
|
&.username {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
padding: 50px 8px 16px 8px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .bottom {
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 8px;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 170px;
|
|
|
|
left: 16px;
|
|
|
|
z-index: 2;
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
box-shadow: 1px 1px 3px rgba(#000, 0.2);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
top: 90px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 92px;
|
|
|
|
height: 92px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .description {
|
|
|
|
padding: 24px 24px 24px 154px;
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fields {
|
|
|
|
padding: 24px;
|
|
|
|
font-size: 14px;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .field {
|
|
|
|
display: flex;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
width: 30%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .value {
|
|
|
|
width: 70%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.system > .field > .name {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
display: flex;
|
|
|
|
padding: 24px;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> a {
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> b {
|
|
|
|
display: block;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
font-size: 70%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .pins {
|
|
|
|
> .note {
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|