2018-10-18 16:18:33 -05:00
|
|
|
<template>
|
|
|
|
<x-column>
|
2019-02-17 20:13:56 -06:00
|
|
|
<template #header>
|
2019-03-01 17:13:09 -06:00
|
|
|
<fa icon="user"/><mk-user-name :user="user" v-if="user" :key="user.id"/>
|
2019-02-17 18:48:00 -06:00
|
|
|
</template>
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
<div class="zubukjlciycdsyynicqrnlsmdwmymzqu" v-if="user">
|
2018-10-20 10:18:01 -05:00
|
|
|
<div class="is-remote" v-if="user.host != null">
|
|
|
|
<details>
|
2018-11-08 12:44:35 -06:00
|
|
|
<summary><fa icon="exclamation-triangle"/> {{ $t('@.is-remote-user') }}</summary>
|
2019-04-11 11:52:25 -05:00
|
|
|
<a :href="user.url" target="_blank">{{ $t('@.view-on-remote') }}</a>
|
2018-10-20 10:18:01 -05:00
|
|
|
</details>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
<header :style="bannerStyle">
|
|
|
|
<div>
|
2018-11-05 10:40:11 -06:00
|
|
|
<button class="menu" @click="menu" ref="menu"><fa icon="ellipsis-h"/></button>
|
2018-11-13 01:19:46 -06:00
|
|
|
<mk-follow-button v-if="$store.getters.isSignedIn && user.id != $store.state.i.id" :user="user" class="follow" mini/>
|
2019-03-01 17:13:09 -06:00
|
|
|
<mk-avatar class="avatar" :user="user" :disable-preview="true" :key="user.id"/>
|
2019-02-17 20:16:52 -06:00
|
|
|
<router-link class="name" :to="user | userPage()">
|
2019-03-01 17:13:09 -06:00
|
|
|
<mk-user-name :user="user" :key="user.id"/>
|
2019-02-17 20:16:52 -06:00
|
|
|
</router-link>
|
2019-01-05 04:59:10 -06:00
|
|
|
<span class="acct">@{{ user | acct }} <fa v-if="user.isLocked == true" class="locked" icon="lock" fixed-width/></span>
|
2019-02-09 14:26:49 -06:00
|
|
|
<span class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</span>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="info">
|
|
|
|
<div class="description">
|
2019-03-01 17:13:09 -06:00
|
|
|
<mfm v-if="user.description" :text="user.description" :is-note="false" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :key="user.id"/>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
2018-12-11 05:18:12 -06:00
|
|
|
<div class="fields" v-if="user.fields">
|
|
|
|
<dl class="field" v-for="(field, i) in user.fields" :key="i">
|
2018-12-11 11:46:40 -06:00
|
|
|
<dt class="name">
|
2019-01-18 17:45:12 -06:00
|
|
|
<mfm :text="field.name" :should-break="false" :plain-text="true" :custom-emojis="user.emojis"/>
|
2018-12-11 11:46:40 -06:00
|
|
|
</dt>
|
2018-12-11 05:18:12 -06:00
|
|
|
<dd class="value">
|
2019-01-18 17:45:12 -06:00
|
|
|
<mfm :text="field.value" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/>
|
2018-12-11 05:18:12 -06:00
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div class="counts">
|
|
|
|
<div>
|
2019-02-15 19:58:44 -06:00
|
|
|
<router-link :to="user | userPage()">
|
|
|
|
<b>{{ user.notesCount | number }}</b>
|
|
|
|
<span>{{ $t('posts') }}</span>
|
|
|
|
</router-link>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-02-14 23:27:16 -06:00
|
|
|
<router-link :to="user | userPage('following')">
|
|
|
|
<b>{{ user.followingCount | number }}</b>
|
|
|
|
<span>{{ $t('following') }}</span>
|
|
|
|
</router-link>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-02-14 23:27:16 -06:00
|
|
|
<router-link :to="user | userPage('followers')">
|
|
|
|
<b>{{ user.followersCount | number }}</b>
|
|
|
|
<span>{{ $t('followers') }}</span>
|
|
|
|
</router-link>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
2019-02-15 19:58:44 -06:00
|
|
|
<router-view :user="user"></router-view>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-02-14 14:08:59 -06:00
|
|
|
import i18n from '../../../i18n';
|
|
|
|
import parseAcct from '../../../../../misc/acct/parse';
|
2018-10-18 16:18:33 -05:00
|
|
|
import XColumn from './deck.column.vue';
|
2019-02-14 14:08:59 -06:00
|
|
|
import XUserMenu from '../../../common/views/components/user-menu.vue';
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('deck/deck.user-column.vue'),
|
2018-10-18 16:18:33 -05:00
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
user: null,
|
|
|
|
fetching: true,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
bannerStyle(): any {
|
|
|
|
if (this.user == null) return {};
|
|
|
|
if (this.user.bannerUrl == null) return {};
|
|
|
|
return {
|
2019-04-08 05:56:42 -05:00
|
|
|
backgroundColor: this.user.bannerColor,
|
2018-10-18 16:18:33 -05:00
|
|
|
backgroundImage: `url(${ this.user.bannerUrl })`
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-02-14 14:08:59 -06:00
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
|
2018-10-18 16:18:33 -05:00
|
|
|
created() {
|
2019-02-14 14:08:59 -06:00
|
|
|
this.fetch();
|
|
|
|
},
|
2018-10-18 16:18:33 -05:00
|
|
|
|
2019-02-14 14:08:59 -06:00
|
|
|
methods: {
|
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
this.$root.api('users/show', parseAcct(this.$route.params.user)).then(user => {
|
|
|
|
this.user = user;
|
|
|
|
this.fetching = false;
|
2018-10-18 16:18:33 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-10-20 01:41:27 -05:00
|
|
|
menu() {
|
2019-01-19 04:16:48 -06:00
|
|
|
this.$root.new(XUserMenu, {
|
2018-10-20 01:41:27 -05:00
|
|
|
source: this.$refs.menu,
|
2019-01-19 04:16:48 -06:00
|
|
|
user: this.user
|
2018-10-20 01:41:27 -05:00
|
|
|
});
|
|
|
|
}
|
2018-10-18 16:18:33 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.zubukjlciycdsyynicqrnlsmdwmymzqu
|
2018-10-22 08:00:32 -05:00
|
|
|
background var(--deckColumnBg)
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
> .is-remote
|
|
|
|
padding 8px 16px
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
&.is-remote
|
|
|
|
color var(--remoteInfoFg)
|
|
|
|
background var(--remoteInfoBg)
|
|
|
|
|
|
|
|
> a
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
> header
|
|
|
|
overflow hidden
|
|
|
|
background-size cover
|
|
|
|
background-position center
|
|
|
|
|
|
|
|
> div
|
|
|
|
padding 32px
|
|
|
|
background rgba(#000, 0.5)
|
|
|
|
color #fff
|
|
|
|
text-align center
|
|
|
|
|
2018-10-20 01:41:27 -05:00
|
|
|
> .menu
|
|
|
|
position absolute
|
|
|
|
top 8px
|
|
|
|
left 8px
|
|
|
|
padding 8px
|
|
|
|
font-size 16px
|
|
|
|
text-shadow 0 0 8px #000
|
|
|
|
|
2018-10-18 16:18:33 -05:00
|
|
|
> .follow
|
|
|
|
position absolute
|
|
|
|
top 16px
|
|
|
|
right 16px
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
display block
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
margin 0 auto
|
|
|
|
|
|
|
|
> .name
|
|
|
|
display block
|
|
|
|
margin-top 8px
|
|
|
|
font-weight bold
|
|
|
|
text-shadow 0 0 8px #000
|
2019-02-17 20:16:52 -06:00
|
|
|
color #fff
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
> .acct
|
2019-02-09 14:26:49 -06:00
|
|
|
display block
|
2018-10-18 16:18:33 -05:00
|
|
|
font-size 14px
|
|
|
|
opacity 0.7
|
|
|
|
text-shadow 0 0 8px #000
|
|
|
|
|
2019-01-05 04:59:10 -06:00
|
|
|
> .locked
|
|
|
|
opacity 0.8
|
|
|
|
|
2019-02-09 14:26:49 -06:00
|
|
|
> .followed
|
|
|
|
display inline-block
|
|
|
|
font-size 12px
|
|
|
|
background rgba(0, 0, 0, 0.5)
|
|
|
|
opacity 0.7
|
|
|
|
margin-top: 2px
|
|
|
|
padding 4px
|
|
|
|
border-radius 4px
|
|
|
|
|
2018-10-18 16:18:33 -05:00
|
|
|
> .info
|
|
|
|
padding 16px
|
2018-10-20 09:44:35 -05:00
|
|
|
font-size 12px
|
2018-10-18 16:18:33 -05:00
|
|
|
color var(--text)
|
|
|
|
text-align center
|
|
|
|
background var(--face)
|
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display blcok
|
|
|
|
position absolute
|
|
|
|
top -32px
|
|
|
|
left 0
|
|
|
|
right 0
|
|
|
|
width 0px
|
|
|
|
margin 0 auto
|
|
|
|
border-top solid 16px transparent
|
|
|
|
border-left solid 16px transparent
|
|
|
|
border-right solid 16px transparent
|
|
|
|
border-bottom solid 16px var(--face)
|
|
|
|
|
2018-12-11 05:18:12 -06:00
|
|
|
> .fields
|
|
|
|
margin-top 8px
|
|
|
|
|
|
|
|
> .field
|
|
|
|
display flex
|
|
|
|
padding 0
|
|
|
|
margin 0
|
2018-12-11 11:46:40 -06:00
|
|
|
align-items center
|
2018-12-11 05:18:12 -06:00
|
|
|
|
|
|
|
> .name
|
|
|
|
padding 4px
|
|
|
|
margin 4px
|
|
|
|
width 30%
|
|
|
|
overflow hidden
|
|
|
|
white-space nowrap
|
|
|
|
text-overflow ellipsis
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
> .value
|
|
|
|
padding 4px
|
|
|
|
margin 4px
|
|
|
|
width 70%
|
|
|
|
overflow hidden
|
|
|
|
white-space nowrap
|
|
|
|
text-overflow ellipsis
|
|
|
|
|
2018-10-22 22:32:24 -05:00
|
|
|
> .counts
|
|
|
|
display grid
|
2019-01-19 04:16:48 -06:00
|
|
|
grid-template-columns 2fr 2fr 2fr
|
2018-10-22 22:32:24 -05:00
|
|
|
margin-top 8px
|
2018-12-29 23:00:57 -06:00
|
|
|
border-top solid var(--lineWidth) var(--faceDivider)
|
2018-10-22 22:32:24 -05:00
|
|
|
|
|
|
|
> div
|
|
|
|
padding 8px 8px 0 8px
|
|
|
|
text-align center
|
|
|
|
|
2019-02-14 23:27:16 -06:00
|
|
|
> a
|
|
|
|
color var(--text)
|
|
|
|
|
2019-02-15 19:58:44 -06:00
|
|
|
> b
|
|
|
|
display block
|
|
|
|
font-size 110%
|
2018-10-18 16:18:33 -05:00
|
|
|
|
2019-02-15 19:58:44 -06:00
|
|
|
> span
|
|
|
|
display block
|
|
|
|
font-size 80%
|
|
|
|
opacity 0.7
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
</style>
|