Sharkey/src/client/app/mobile/views/pages/user.vue

345 lines
7.8 KiB
Vue
Raw Normal View History

2018-02-15 11:33:34 +02:00
<template>
2018-02-22 10:32:58 +02:00
<mk-ui>
2018-07-24 17:43:14 +03:00
<template slot="header" v-if="!fetching"><img :src="user.avatarUrl" alt="">{{ user | userName }}</template>
2018-09-28 08:26:20 +03:00
<main v-if="!fetching">
<div class="is-suspended" v-if="user.isSuspended"><p><fa icon="exclamation-triangle"/> {{ $t('is-suspended') }}</p></div>
<div class="is-remote" v-if="user.host != null"><p><fa icon="exclamation-triangle"/> {{ $t('@.is-remote-user') }}<a :href="user.url || user.uri" target="_blank">{{ $t('@.view-on-remote') }}</a></p></div>
2018-02-15 11:33:34 +02:00
<header>
2018-05-07 11:05:05 +03:00
<div class="banner" :style="style"></div>
2018-02-15 11:33:34 +02:00
<div class="body">
<div class="top">
<a class="avatar">
<img :src="user.avatarUrl" alt="avatar"/>
2018-02-15 11:33:34 +02:00
</a>
<button class="menu" ref="menu" @click="menu"><fa icon="ellipsis-h"/></button>
2018-05-27 07:49:09 +03:00
<mk-follow-button v-if="$store.getters.isSignedIn && $store.state.i.id != user.id" :user="user"/>
2018-02-15 11:33:34 +02:00
</div>
<div class="title">
2018-04-09 12:52:29 +03:00
<h1>{{ user | userName }}</h1>
2018-09-05 21:21:11 +03:00
<span class="username"><mk-acct :user="user" :detail="true" /></span>
<span class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</span>
2018-02-15 11:33:34 +02:00
</div>
2018-06-20 13:55:34 +03:00
<div class="description">
<misskey-flavored-markdown v-if="user.description" :text="user.description" :i="$store.state.i"/>
</div>
2018-02-15 11:33:34 +02:00
<div class="info">
2018-04-07 21:58:11 +03:00
<p class="location" v-if="user.host === null && user.profile.location">
<fa icon="map-marker"/>{{ user.profile.location }}
2018-02-15 11:33:34 +02:00
</p>
2018-04-07 21:58:11 +03:00
<p class="birthday" v-if="user.host === null && user.profile.birthday">
2018-11-09 17:28:50 +02:00
<fa icon="birthday-cake"/>{{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ $t('years-old', { age }) }})
2018-02-15 11:33:34 +02:00
</p>
</div>
<div class="status">
2018-02-21 14:08:03 +02:00
<a>
2018-04-07 20:30:37 +03:00
<b>{{ user.notesCount | number }}</b>
<i>{{ $t('notes') }}</i>
2018-02-15 11:33:34 +02:00
</a>
2018-04-09 13:23:52 +03:00
<a :href="user | userPage('following')">
2018-03-29 08:48:47 +03:00
<b>{{ user.followingCount | number }}</b>
<i>{{ $t('following') }}</i>
2018-02-15 11:33:34 +02:00
</a>
2018-04-09 13:23:52 +03:00
<a :href="user | userPage('followers')">
2018-03-29 08:48:47 +03:00
<b>{{ user.followersCount | number }}</b>
<i>{{ $t('followers') }}</i>
2018-02-15 11:33:34 +02:00
</a>
</div>
</div>
</header>
<nav>
<div class="nav-container">
<a :data-active="page == 'home'" @click="page = 'home'"><fa icon="home"/> {{ $t('overview') }}</a>
<a :data-active="page == 'notes'" @click="page = 'notes'"><fa :icon="['far', 'comment-alt']"/> {{ $t('timeline') }}</a>
<a :data-active="page == 'media'" @click="page = 'media'"><fa icon="image"/> {{ $t('media') }}</a>
</div>
</nav>
2018-02-15 11:33:34 +02:00
<div class="body">
2018-02-22 10:32:58 +02:00
<x-home v-if="page == 'home'" :user="user"/>
2018-04-16 09:13:31 +03:00
<mk-user-timeline v-if="page == 'notes'" :user="user" key="tl"/>
<mk-user-timeline v-if="page == 'media'" :user="user" :with-media="true" key="media"/>
2018-02-15 11:33:34 +02:00
</div>
2018-02-22 10:32:58 +02:00
</main>
2018-02-15 11:33:34 +02:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-22 15:03:44 +02:00
import * as age from 's-age';
2018-07-07 13:19:00 +03:00
import parseAcct from '../../../../../misc/acct/parse';
2018-02-16 06:11:54 +02:00
import Progress from '../../../common/scripts/loading';
import Menu from '../../../common/views/components/menu.vue';
2018-02-22 10:32:58 +02:00
import XHome from './user/home.vue';
2018-02-15 11:33:34 +02:00
export default Vue.extend({
i18n: i18n('mobile/views/pages/user.vue'),
2018-02-22 10:32:58 +02:00
components: {
XHome
},
2018-02-15 11:33:34 +02:00
data() {
return {
fetching: true,
2018-02-23 01:07:30 +02:00
user: null,
2018-04-09 12:52:29 +03:00
page: 'home'
2018-02-15 11:33:34 +02:00
};
},
computed: {
age(): number {
2018-04-07 21:58:11 +03:00
return age(this.user.profile.birthday);
2018-05-07 11:05:05 +03:00
},
style(): any {
if (this.user.bannerUrl == null) return {};
return {
backgroundColor: this.user.bannerColor && this.user.bannerColor.length == 3 ? `rgb(${ this.user.bannerColor.join(',') })` : null,
2018-05-07 11:05:05 +03:00
backgroundImage: `url(${ this.user.bannerUrl })`
};
2018-02-15 11:33:34 +02:00
}
},
2018-02-22 10:06:19 +02:00
watch: {
$route: 'fetch'
},
2018-02-22 14:23:10 +02:00
created() {
this.fetch();
},
2018-02-22 10:06:19 +02:00
methods: {
fetch() {
Progress.start();
2018-11-09 01:13:34 +02:00
this.$root.api('users/show', parseAcct(this.$route.params.user)).then(user => {
2018-02-22 10:06:19 +02:00
this.user = user;
this.fetching = false;
2018-02-16 06:11:54 +02:00
2018-02-22 10:06:19 +02:00
Progress.done();
2018-11-09 01:26:32 +02:00
document.title = `${Vue.filter('userName')(this.user)} | ${this.$root.instanceName}`;
2018-02-22 10:06:19 +02:00
});
},
menu() {
let menu = [{
icon: this.user.isMuted ? ['fas', 'eye'] : ['far', 'eye-slash'],
text: this.user.isMuted ? this.$t('unmute') : this.$t('mute'),
action: () => {
if (this.user.isMuted) {
2018-11-09 01:13:34 +02:00
this.$root.api('mute/delete', {
userId: this.user.id
}).then(() => {
this.user.isMuted = false;
}, () => {
alert('error');
});
} else {
2018-11-09 01:13:34 +02:00
this.$root.api('mute/create', {
userId: this.user.id
}).then(() => {
this.user.isMuted = true;
}, () => {
alert('error');
});
}
}
}, {
2018-11-14 11:03:38 +02:00
icon: 'ban',
text: this.user.isBlocking ? this.$t('unblock') : this.$t('block'),
action: () => {
if (this.user.isBlocking) {
2018-11-09 01:13:34 +02:00
this.$root.api('blocking/delete', {
userId: this.user.id
}).then(() => {
this.user.isBlocking = false;
}, () => {
alert('error');
});
} else {
2018-11-09 01:13:34 +02:00
this.$root.api('blocking/create', {
userId: this.user.id
}).then(() => {
this.user.isBlocking = true;
}, () => {
alert('error');
});
}
}
}];
2018-11-09 01:13:34 +02:00
this.$root.new(Menu, {
source: this.$refs.menu,
compact: true,
items: menu
});
},
2018-02-15 11:33:34 +02:00
}
});
</script>
2018-02-22 10:32:58 +02:00
<style lang="stylus" scoped>
2018-09-28 05:18:56 +03:00
main
$bg = var(--face)
2018-04-28 04:59:37 +03:00
2018-04-19 12:54:34 +03:00
> .is-suspended
2018-04-15 12:38:40 +03:00
> .is-remote
2018-04-19 12:54:34 +03:00
&.is-suspended
color #570808
background #ffdbdb
&.is-remote
color #573c08
background #fff0db
2018-04-15 12:38:40 +03:00
> p
margin 0 auto
2018-04-19 20:09:53 +03:00
padding 14px
max-width 600px
2018-04-18 10:25:33 +03:00
font-size 14px
2018-04-15 12:38:40 +03:00
> a
font-weight bold
2018-04-16 09:17:20 +03:00
@media (max-width 500px)
2018-04-19 20:09:53 +03:00
padding 12px
2018-04-16 09:17:20 +03:00
font-size 12px
2018-02-15 11:33:34 +02:00
> header
2018-04-28 04:59:37 +03:00
background $bg
2018-02-15 11:33:34 +02:00
> .banner
padding-bottom 33.3%
2018-09-28 05:18:56 +03:00
background-color rgba(0, 0, 0, 0.1)
2018-02-15 11:33:34 +02:00
background-size cover
background-position center
> .body
padding 12px
margin 0 auto
max-width 600px
> .top
display flex
2018-02-15 11:33:34 +02:00
> .avatar
display block
width 25%
height 40px
> img
display block
position absolute
left -2px
bottom -2px
width 100%
2018-04-28 04:59:37 +03:00
background $bg
border 3px solid $bg
2018-02-15 11:33:34 +02:00
border-radius 6px
@media (min-width 500px)
left -4px
bottom -4px
2018-04-28 04:59:37 +03:00
border 4px solid $bg
2018-02-15 11:33:34 +02:00
border-radius 12px
> .menu
margin 0 0 0 auto
padding 8px
margin-right 8px
font-size 18px
color var(--text)
2018-08-22 09:54:22 +03:00
2018-02-15 11:33:34 +02:00
> .title
margin 8px 0
> h1
margin 0
line-height 22px
font-size 20px
2018-09-28 05:18:56 +03:00
color var(--mobileUserPageName)
2018-02-15 11:33:34 +02:00
> .username
display inline-block
line-height 20px
font-size 16px
font-weight bold
2018-09-28 05:18:56 +03:00
color var(--mobileUserPageAcct)
2018-02-15 11:33:34 +02:00
> .followed
margin-left 8px
padding 2px 4px
font-size 12px
2018-09-28 05:18:56 +03:00
color var(--mobileUserPageFollowedFg)
background var(--mobileUserPageFollowedBg)
2018-02-15 11:33:34 +02:00
border-radius 4px
> .description
margin 8px 0
2018-09-28 05:18:56 +03:00
color var(--mobileUserPageDescription)
2018-02-15 11:33:34 +02:00
> .info
margin 8px 0
> p
display inline
margin 0 16px 0 0
2018-09-28 05:18:56 +03:00
color var(--text)
2018-02-15 11:33:34 +02:00
> i
margin-right 4px
> .status
> a
2018-09-28 05:18:56 +03:00
color var(--text)
2018-02-15 11:33:34 +02:00
&:not(:last-child)
margin-right 16px
> b
margin-right 4px
font-size 16px
2018-09-28 05:18:56 +03:00
color var(--mobileUserPageStatusHighlight)
2018-02-15 11:33:34 +02:00
> i
font-size 14px
> nav
2018-04-09 20:04:30 +03:00
position -webkit-sticky
position sticky
2018-04-27 15:06:28 +03:00
top 47px
2018-09-28 05:18:56 +03:00
box-shadow 0 4px 4px var(--mobileUserPageHeaderShadow)
2018-04-28 04:59:37 +03:00
background-color $bg
2018-08-19 20:05:57 +03:00
z-index 2
2018-04-09 20:04:30 +03:00
> .nav-container
2018-02-15 11:33:34 +02:00
display flex
justify-content center
margin 0 auto
max-width 600px
> a
display block
flex 1 1
text-align center
2018-04-28 04:59:37 +03:00
line-height 48px
font-size 12px
2018-02-15 11:33:34 +02:00
text-decoration none
2018-09-28 05:18:56 +03:00
color var(--text)
2018-02-15 11:33:34 +02:00
border-bottom solid 2px transparent
2018-04-28 04:59:37 +03:00
@media (min-width 400px)
line-height 52px
font-size 14px
2018-04-26 08:38:37 +03:00
&[data-active]
2018-02-15 11:33:34 +02:00
font-weight bold
2018-09-26 14:19:35 +03:00
color var(--primary)
border-color var(--primary)
2018-02-15 11:33:34 +02:00
> .body
2018-04-27 15:06:28 +03:00
max-width 680px
margin 0 auto
2018-02-15 11:33:34 +02:00
padding 8px
@media (min-width 500px)
padding 16px
2018-04-27 15:06:28 +03:00
@media (min-width 600px)
padding 32px
2018-02-15 11:33:34 +02:00
</style>