2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div>
|
|
|
|
<div class="ftskorzw wide _section" v-if="user && narrow === false">
|
2020-11-29 03:46:05 +00:00
|
|
|
<MkRemoteCaution v-if="user.host != null" :href="user.url" class="_vMargin"/>
|
|
|
|
|
|
|
|
<div class="banner-container _vMargin" :style="style">
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="banner" ref="banner" :style="style"></div>
|
2020-11-28 15:18:54 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="contents">
|
|
|
|
<div class="side _forceContainerFull_">
|
|
|
|
<MkAvatar class="avatar" :user="user" :disable-preview="true"/>
|
|
|
|
<div class="name">
|
|
|
|
<MkUserName :user="user" :nowrap="false" class="name"/>
|
|
|
|
<MkAcct :user="user" :detail="true" class="acct"/>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2020-12-26 01:47:36 +00:00
|
|
|
<div class="followed" v-if="$i && $i.id != user.id && user.isFollowed"><span>{{ $ts.followsYou }}</span></div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="status">
|
|
|
|
<MkA :to="userPage(user)" :class="{ active: page === 'index' }">
|
|
|
|
<b>{{ number(user.notesCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.notes }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'following')" :class="{ active: page === 'following' }">
|
|
|
|
<b>{{ number(user.followingCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.following }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'followers')" :class="{ active: page === 'followers' }">
|
|
|
|
<b>{{ number(user.followersCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.followers }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<div class="description">
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm v-if="user.description" :text="user.description" :is-note="false" :author="user" :i="$i" :custom-emojis="user.emojis"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<p v-else class="empty">{{ $ts.noAccountDescription }}</p>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="fields system">
|
|
|
|
<dl class="field" v-if="user.location">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faMapMarker" fixed-width/> {{ $ts.location }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ user.location }}</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field" v-if="user.birthday">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faBirthdayCake" fixed-width/> {{ $ts.birthday }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ user.birthday.replace('-', '/').replace('-', '/') }} ({{ $t('yearsOld', { age }) }})</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faCalendarAlt" fixed-width/> {{ $ts.registeredDate }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ new Date(user.createdAt).toLocaleString() }} (<MkTime :time="user.createdAt"/>)</dd>
|
|
|
|
</dl>
|
2020-11-25 12:31:34 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<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">
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm :text="field.value" :author="user" :i="$i" :custom-emojis="user.emojis" :colored="false"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<XActivity :user="user" :key="user.id" class="_vMargin"/>
|
|
|
|
<XPhotos :user="user" :key="user.id" class="_vMargin"/>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="nav _vMargin">
|
|
|
|
<MkA :to="userPage(user)" :class="{ active: page === 'index' }" class="link">
|
2020-11-29 03:34:39 +00:00
|
|
|
<Fa :icon="faCommentAlt" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.notes }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'clips')" :class="{ active: page === 'clips' }" class="link">
|
2020-11-29 03:34:39 +00:00
|
|
|
<Fa :icon="faPaperclip" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.clips }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'pages')" :class="{ active: page === 'pages' }" class="link">
|
2020-11-29 03:34:39 +00:00
|
|
|
<Fa :icon="faFileAlt" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.pages }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<div class="actions">
|
|
|
|
<button @click="menu" class="menu _button"><Fa :icon="faEllipsisH"/></button>
|
2020-12-19 01:55:52 +00:00
|
|
|
<MkFollowButton v-if="!$i || $i.id != user.id" :user="user" :inline="true" :transparent="false" :full="true" large class="koudoku"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template v-if="page === 'index'">
|
|
|
|
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
2020-12-31 03:14:56 +00:00
|
|
|
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :pinned="true"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
<div class="_vMargin">
|
|
|
|
<XUserTimeline :user="user"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<XFollowList v-else-if="page === 'following'" type="following" :user="user" class="_vMargin"/>
|
|
|
|
<XFollowList v-else-if="page === 'followers'" type="followers" :user="user" class="_vMargin"/>
|
2020-11-29 03:34:39 +00:00
|
|
|
<XClips v-else-if="page === 'clips'" :user="user" class="_vMargin"/>
|
|
|
|
<XPages v-else-if="page === 'pages'" :user="user" class="_vMargin"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2020-11-25 12:31:34 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="ftskorzw narrow _section" v-else-if="user && narrow === true" v-size="{ max: [500] }">
|
|
|
|
<!-- TODO -->
|
2020-12-26 01:47:36 +00:00
|
|
|
<!-- <div class="punished" v-if="user.isSuspended"><Fa :icon="faExclamationTriangle" style="margin-right: 8px;"/> {{ $ts.userSuspended }}</div> -->
|
|
|
|
<!-- <div class="punished" v-if="user.isSilenced"><Fa :icon="faExclamationTriangle" style="margin-right: 8px;"/> {{ $ts.userSilenced }}</div> -->
|
2020-11-28 15:43:03 +00:00
|
|
|
|
|
|
|
<div class="profile _content _vMargin">
|
|
|
|
<MkRemoteCaution v-if="user.host != null" :href="user.url" class="_vMargin"/>
|
|
|
|
|
|
|
|
<div class="_vMargin _panel main" :key="user.id">
|
|
|
|
<div class="banner-container" :style="style">
|
|
|
|
<div class="banner" ref="banner" :style="style"></div>
|
|
|
|
<div class="fade"></div>
|
|
|
|
<div class="title">
|
|
|
|
<MkUserName class="name" :user="user" :nowrap="true"/>
|
|
|
|
<div class="bottom">
|
|
|
|
<span class="username"><MkAcct :user="user" :detail="true" /></span>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span v-if="user.isAdmin" :title="$ts.isAdmin" style="color: var(--badge);"><Fa :icon="faBookmark"/></span>
|
|
|
|
<span v-if="!user.isAdmin && user.isModerator" :title="$ts.isModerator" style="color: var(--badge);"><Fa :icon="farBookmark"/></span>
|
|
|
|
<span v-if="user.isLocked" :title="$ts.isLocked"><Fa :icon="faLock"/></span>
|
|
|
|
<span v-if="user.isBot" :title="$ts.isBot"><Fa :icon="faRobot"/></span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span class="followed" v-if="$i && $i.id != user.id && user.isFollowed">{{ $ts.followsYou }}</span>
|
2020-12-19 01:55:52 +00:00
|
|
|
<div class="actions" v-if="$i">
|
2020-11-28 15:43:03 +00:00
|
|
|
<button @click="menu" class="menu _button"><Fa :icon="faEllipsisH"/></button>
|
2020-12-19 01:55:52 +00:00
|
|
|
<MkFollowButton v-if="$i.id != user.id" :user="user" :inline="true" :transparent="false" :full="true" class="koudoku"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<MkAvatar class="avatar" :user="user" :disable-preview="true"/>
|
2020-11-28 15:18:54 +00:00
|
|
|
<div class="title">
|
2020-11-28 15:43:03 +00:00
|
|
|
<MkUserName :user="user" :nowrap="false" class="name"/>
|
2020-11-28 15:18:54 +00:00
|
|
|
<div class="bottom">
|
|
|
|
<span class="username"><MkAcct :user="user" :detail="true" /></span>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span v-if="user.isAdmin" :title="$ts.isAdmin" style="color: var(--badge);"><Fa :icon="faBookmark"/></span>
|
|
|
|
<span v-if="!user.isAdmin && user.isModerator" :title="$ts.isModerator" style="color: var(--badge);"><Fa :icon="farBookmark"/></span>
|
|
|
|
<span v-if="user.isLocked" :title="$ts.isLocked"><Fa :icon="faLock"/></span>
|
|
|
|
<span v-if="user.isBot" :title="$ts.isBot"><Fa :icon="faRobot"/></span>
|
2020-11-28 15:18:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="description">
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm v-if="user.description" :text="user.description" :is-note="false" :author="user" :i="$i" :custom-emojis="user.emojis"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<p v-else class="empty">{{ $ts.noAccountDescription }}</p>
|
2020-11-28 15:18:54 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="fields system">
|
|
|
|
<dl class="field" v-if="user.location">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faMapMarker" fixed-width/> {{ $ts.location }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ user.location }}</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field" v-if="user.birthday">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faBirthdayCake" fixed-width/> {{ $ts.birthday }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ user.birthday.replace('-', '/').replace('-', '/') }} ({{ $t('yearsOld', { age }) }})</dd>
|
|
|
|
</dl>
|
|
|
|
<dl class="field">
|
2020-12-26 01:47:36 +00:00
|
|
|
<dt class="name"><Fa :icon="faCalendarAlt" fixed-width/> {{ $ts.registeredDate }}</dt>
|
2020-11-28 15:43:03 +00:00
|
|
|
<dd class="value">{{ new Date(user.createdAt).toLocaleString() }} (<MkTime :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">
|
2020-12-19 01:55:52 +00:00
|
|
|
<Mfm :text="field.value" :author="user" :i="$i" :custom-emojis="user.emojis" :colored="false"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="status">
|
|
|
|
<MkA :to="userPage(user)" :class="{ active: page === 'index' }">
|
|
|
|
<b>{{ number(user.notesCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.notes }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'following')" :class="{ active: page === 'following' }">
|
|
|
|
<b>{{ number(user.followingCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.following }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'followers')" :class="{ active: page === 'followers' }">
|
|
|
|
<b>{{ number(user.followersCount) }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.followers }}</span>
|
2020-11-28 15:43:03 +00:00
|
|
|
</MkA>
|
2020-11-28 15:18:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-11-29 08:47:49 +00:00
|
|
|
<div class="nav _vMargin">
|
|
|
|
<MkA :to="userPage(user)" :class="{ active: page === 'index' }" class="link">
|
|
|
|
<Fa :icon="faCommentAlt" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.notes }}</span>
|
2020-11-29 08:47:49 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'clips')" :class="{ active: page === 'clips' }" class="link">
|
|
|
|
<Fa :icon="faPaperclip" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.clips }}</span>
|
2020-11-29 08:47:49 +00:00
|
|
|
</MkA>
|
|
|
|
<MkA :to="userPage(user, 'pages')" :class="{ active: page === 'pages' }" class="link">
|
|
|
|
<Fa :icon="faFileAlt" class="icon"/>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.pages }}</span>
|
2020-11-29 08:47:49 +00:00
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
|
2020-11-28 15:43:03 +00:00
|
|
|
<template v-if="page === 'index'">
|
|
|
|
<div class="_content _vMargin">
|
|
|
|
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
2020-12-31 03:14:56 +00:00
|
|
|
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :pinned="true"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
<XPhotos :user="user" :key="user.id" class="_vMargin"/>
|
|
|
|
<XActivity :user="user" :key="user.id" class="_vMargin"/>
|
2020-11-28 15:18:54 +00:00
|
|
|
</div>
|
2020-11-28 15:43:03 +00:00
|
|
|
<div class="_content _vMargin">
|
|
|
|
<XUserTimeline :user="user" class="_content"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<XFollowList v-else-if="page === 'following'" type="following" :user="user" class="_content _vMargin"/>
|
|
|
|
<XFollowList v-else-if="page === 'followers'" type="followers" :user="user" class="_content _vMargin"/>
|
2020-11-29 08:47:49 +00:00
|
|
|
<XClips v-else-if="page === 'clips'" :user="user" class="_vMargin"/>
|
|
|
|
<XPages v-else-if="page === 'pages'" :user="user" class="_vMargin"/>
|
2020-11-28 15:43:03 +00:00
|
|
|
</div>
|
|
|
|
<div v-else-if="error">
|
|
|
|
<MkError @retry="fetch()"/>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent, defineAsyncComponent, computed } from 'vue';
|
2020-11-29 03:34:39 +00:00
|
|
|
import { faExclamationTriangle, faEllipsisH, faRobot, faLock, faBookmark, faChartBar, faImage, faBirthdayCake, faMapMarker, faPaperclip, faFileAlt } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faCalendarAlt, faBookmark as farBookmark, faCommentAlt } from '@fortawesome/free-regular-svg-icons';
|
2020-01-29 19:37:25 +00:00
|
|
|
import * as age from 's-age';
|
|
|
|
import XUserTimeline from './index.timeline.vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import XNote from '@client/components/note.vue';
|
|
|
|
import MkFollowButton from '@client/components/follow-button.vue';
|
|
|
|
import MkContainer from '@client/components/ui/container.vue';
|
|
|
|
import MkFolder from '@client/components/ui/folder.vue';
|
|
|
|
import MkRemoteCaution from '@client/components/remote-caution.vue';
|
|
|
|
import MkTab from '@client/components/tab.vue';
|
|
|
|
import Progress from '@client/scripts/loading';
|
2021-03-23 08:43:07 +00:00
|
|
|
import parseAcct from '@/misc/acct/parse';
|
2021-03-23 08:30:14 +00:00
|
|
|
import { getScrollPosition } from '@client/scripts/scroll';
|
|
|
|
import { getUserMenu } from '@client/scripts/get-user-menu';
|
2020-10-17 11:12:00 +00:00
|
|
|
import number from '../../filters/number';
|
2020-10-24 16:21:41 +00:00
|
|
|
import { userPage, acct as getAcct } from '../../filters/user';
|
2021-03-23 08:30:14 +00:00
|
|
|
import * as os from '@client/os';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-01-29 19:37:25 +00:00
|
|
|
components: {
|
|
|
|
XUserTimeline,
|
|
|
|
XNote,
|
2020-01-31 02:35:18 +00:00
|
|
|
MkFollowButton,
|
2020-01-29 19:37:25 +00:00
|
|
|
MkContainer,
|
2020-03-21 04:07:02 +00:00
|
|
|
MkRemoteCaution,
|
2020-10-17 11:12:00 +00:00
|
|
|
MkFolder,
|
2020-11-28 15:18:54 +00:00
|
|
|
MkTab,
|
2020-10-24 16:21:41 +00:00
|
|
|
XFollowList: defineAsyncComponent(() => import('./follow-list.vue')),
|
2020-11-29 03:34:39 +00:00
|
|
|
XClips: defineAsyncComponent(() => import('./clips.vue')),
|
|
|
|
XPages: defineAsyncComponent(() => import('./pages.vue')),
|
2020-10-17 11:12:00 +00:00
|
|
|
XPhotos: defineAsyncComponent(() => import('./index.photos.vue')),
|
|
|
|
XActivity: defineAsyncComponent(() => import('./index.activity.vue')),
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
2020-10-24 16:21:41 +00:00
|
|
|
props: {
|
|
|
|
acct: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
page: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: 'index'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 11:12:00 +00:00
|
|
|
INFO: computed(() => this.user ? {
|
2020-11-03 11:36:12 +00:00
|
|
|
userName: this.user,
|
|
|
|
avatar: this.user,
|
2020-10-17 11:12:00 +00:00
|
|
|
action: {
|
|
|
|
icon: faEllipsisH,
|
|
|
|
handler: this.menu
|
|
|
|
}
|
|
|
|
} : null),
|
2020-01-29 19:37:25 +00:00
|
|
|
user: null,
|
|
|
|
error: null,
|
|
|
|
parallaxAnimationId: null,
|
2020-11-25 12:31:34 +00:00
|
|
|
narrow: null,
|
2020-11-29 03:34:39 +00:00
|
|
|
faExclamationTriangle, faEllipsisH, faRobot, faLock, faBookmark, farBookmark, faChartBar, faImage, faBirthdayCake, faMapMarker, faCalendarAlt, faCommentAlt, faPaperclip, faFileAlt,
|
2020-01-29 19:37:25 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
if (this.user.bannerUrl == null) return {};
|
|
|
|
return {
|
|
|
|
backgroundImage: `url(${ this.user.bannerUrl })`
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
age(): number {
|
|
|
|
return age(this.user.birthday);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
2020-10-24 16:21:41 +00:00
|
|
|
acct: 'fetch'
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
window.requestAnimationFrame(this.parallaxLoop);
|
2020-11-25 12:31:34 +00:00
|
|
|
this.narrow = this.$el.clientWidth < 1000;
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
beforeUnmount() {
|
|
|
|
window.cancelAnimationFrame(this.parallaxAnimationId);
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-10-24 16:21:41 +00:00
|
|
|
getAcct,
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
fetch() {
|
2020-10-24 16:21:41 +00:00
|
|
|
if (this.acct == null) return;
|
2020-01-29 19:37:25 +00:00
|
|
|
Progress.start();
|
2020-10-24 16:21:41 +00:00
|
|
|
os.api('users/show', parseAcct(this.acct)).then(user => {
|
2020-01-29 19:37:25 +00:00
|
|
|
this.user = user;
|
|
|
|
}).catch(e => {
|
|
|
|
this.error = e;
|
|
|
|
}).finally(() => {
|
|
|
|
Progress.done();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
menu(ev) {
|
|
|
|
os.modalMenu(getUserMenu(this.user), ev.currentTarget || ev.target);
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
parallaxLoop() {
|
|
|
|
this.parallaxAnimationId = window.requestAnimationFrame(this.parallaxLoop);
|
|
|
|
this.parallax();
|
|
|
|
},
|
|
|
|
|
|
|
|
parallax() {
|
|
|
|
const banner = this.$refs.banner as any;
|
|
|
|
if (banner == null) return;
|
|
|
|
|
2020-07-11 01:13:11 +00:00
|
|
|
const top = getScrollPosition(this.$el);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
if (top < 0) return;
|
|
|
|
|
|
|
|
const z = 1.75; // 奥行き(小さいほど奥)
|
|
|
|
const pos = -(top / z);
|
|
|
|
banner.style.backgroundPosition = `center calc(50% - ${pos}px)`;
|
|
|
|
},
|
2020-07-29 14:02:59 +00:00
|
|
|
|
|
|
|
pinnedNoteUpdated(oldValue, newValue) {
|
|
|
|
const i = this.user.pinnedNotes.findIndex(n => n === oldValue);
|
2020-10-17 11:12:00 +00:00
|
|
|
this.user.pinnedNotes[i] = newValue;
|
2020-07-29 14:02:59 +00:00
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
number,
|
|
|
|
|
|
|
|
userPage
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-11-28 15:18:54 +00:00
|
|
|
.ftskorzw.wide {
|
|
|
|
max-width: 1150px;
|
2020-11-25 12:31:34 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .banner-container {
|
|
|
|
position: relative;
|
|
|
|
height: 450px;
|
|
|
|
border-radius: 16px;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #4c5e6d;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
box-shadow: 0 0 128px rgba(0, 0, 0, 0.5) inset;
|
|
|
|
will-change: background-position;
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2020-11-28 15:18:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .contents {
|
|
|
|
display: flex;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .side {
|
|
|
|
width: 360px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
2020-11-29 08:32:51 +00:00
|
|
|
width: 180px;
|
|
|
|
height: 180px;
|
|
|
|
margin: -130px auto 0 auto;
|
2020-11-28 15:18:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .name {
|
|
|
|
padding: 16px 0px 20px 0;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
2020-11-29 08:32:51 +00:00
|
|
|
font-size: 1.75em;
|
2020-11-28 15:18:54 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .followed {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 80%;
|
|
|
|
padding: 8px 12px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: 999px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
display: flex;
|
|
|
|
padding: 20px 16px;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> b {
|
|
|
|
display: block;
|
|
|
|
line-height: 16px;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> span {
|
|
|
|
font-size: 75%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .description {
|
|
|
|
padding: 20px 16px;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fields {
|
|
|
|
padding: 20px 16px;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
|
|
> .field {
|
|
|
|
display: flex;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .name {
|
|
|
|
width: 30%;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .value {
|
|
|
|
width: 70%;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
margin-left: var(--margin);
|
2020-11-29 12:53:21 +00:00
|
|
|
min-width: 0;
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .nav {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: var(--margin);
|
2020-11-29 03:34:39 +00:00
|
|
|
//font-size: 120%;
|
|
|
|
font-weight: bold;
|
2020-11-28 15:18:54 +00:00
|
|
|
|
|
|
|
> .link {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 15px 24px 12px 24px;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: solid 3px transparent;
|
|
|
|
|
2020-11-29 03:34:39 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
border-bottom-color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.active):hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
> .menu {
|
|
|
|
padding: 12px 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ftskorzw.narrow {
|
2020-11-29 02:25:43 +00:00
|
|
|
max-width: 100vw;
|
|
|
|
box-sizing: border-box;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-29 02:25:43 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .punished {
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .profile {
|
2020-11-29 02:25:43 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .main {
|
|
|
|
position: relative;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
|
|
|
|
> .banner-container {
|
|
|
|
position: relative;
|
|
|
|
height: 250px;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #4c5e6d;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
box-shadow: 0 0 128px rgba(0, 0, 0, 0.5) inset;
|
|
|
|
will-change: background-position;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 78px;
|
|
|
|
background: linear-gradient(transparent, rgba(#000, 0.7));
|
|
|
|
}
|
|
|
|
|
|
|
|
> .followed {
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
left: 12px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
font-size: 0.7em;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .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;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> .title {
|
2020-11-28 15:18:54 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 0 8px 154px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.8em;
|
|
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
> .bottom {
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
2020-11-28 15:18:54 +00:00
|
|
|
margin-right: 16px;
|
|
|
|
line-height: 20px;
|
2020-10-17 11:12:00 +00:00
|
|
|
opacity: 0.8;
|
2020-11-28 15:18:54 +00:00
|
|
|
|
|
|
|
&.username {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-11-28 15:18:54 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .title {
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
padding: 50px 8px 16px 8px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
|
|
|
|
> .bottom {
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 8px;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-11-28 15:18:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .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);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .description {
|
|
|
|
padding: 24px 24px 24px 154px;
|
|
|
|
font-size: 0.95em;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
opacity: 0.5;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-11-28 15:18:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .fields {
|
|
|
|
padding: 24px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
border-top: solid 1px var(--divider);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .field {
|
|
|
|
display: flex;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
align-items: center;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .name {
|
|
|
|
width: 30%;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .value {
|
|
|
|
width: 70%;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-11-28 15:18:54 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-11-29 02:25:43 +00:00
|
|
|
margin: 0;
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&.system > .field > .name {
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .status {
|
|
|
|
display: flex;
|
|
|
|
padding: 24px;
|
|
|
|
border-top: solid 1px var(--divider);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> a {
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> b {
|
|
|
|
display: block;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
font-size: 70%;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-29 08:47:49 +00:00
|
|
|
> .nav {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: var(--margin);
|
|
|
|
//font-size: 120%;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
> .link {
|
|
|
|
flex: 1;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: solid 3px transparent;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
border-bottom-color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.active):hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 15:18:54 +00:00
|
|
|
> .content {
|
|
|
|
margin-bottom: var(--margin);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
|
|
|
&.max-width_500px {
|
2020-11-28 15:43:03 +00:00
|
|
|
> .profile > .main {
|
2020-07-11 01:13:11 +00:00
|
|
|
> .banner-container {
|
|
|
|
height: 140px;
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
top: 90px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 92px;
|
|
|
|
height: 92px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .description {
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fields {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 08:47:49 +00:00
|
|
|
|
|
|
|
> .nav {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|