Sharkey/src/web/app/desktop/views/pages/user/user.profile.vue

143 lines
3.1 KiB
Vue
Raw Normal View History

2018-02-14 17:32:13 +02:00
<template>
2018-02-20 18:39:51 +02:00
<div class="profile">
2018-02-18 05:35:18 +02:00
<div class="friend-form" v-if="os.isSignedIn && os.i.id != user.id">
2018-02-14 17:32:13 +02:00
<mk-follow-button :user="user" size="big"/>
<p class="followed" v-if="user.is_followed">%i18n:desktop.tags.mk-user.follows-you%</p>
<p v-if="user.is_muted">%i18n:desktop.tags.mk-user.muted% <a @click="unmute">%i18n:desktop.tags.mk-user.unmute%</a></p>
<p v-if="!user.is_muted"><a @click="mute">%i18n:desktop.tags.mk-user.mute%</a></p>
</div>
<div class="description" v-if="user.description">{{ user.description }}</div>
<div class="birthday" v-if="user.profile.birthday">
<p>%fa:birthday-cake%{{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ age }})</p>
</div>
<div class="twitter" v-if="user.twitter">
<p>%fa:B twitter%<a :href="`https://twitter.com/${user.twitter.screen_name}`" target="_blank">@{{ user.twitter.screen_name }}</a></p>
</div>
<div class="status">
2018-02-19 16:37:09 +02:00
<p class="posts-count">%fa:angle-right%<a>{{ user.posts_count }}</a><b>投稿</b></p>
2018-02-14 17:32:13 +02:00
<p class="following">%fa:angle-right%<a @click="showFollowing">{{ user.following_count }}</a>人を<b>フォロー</b></p>
<p class="followers">%fa:angle-right%<a @click="showFollowers">{{ user.followers_count }}</a>人の<b>フォロワー</b></p>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-19 16:37:09 +02:00
import age from 's-age';
import MkFollowingWindow from '../../components/following-window.vue';
import MkFollowersWindow from '../../components/followers-window.vue';
2018-02-14 17:32:13 +02:00
export default Vue.extend({
props: ['user'],
computed: {
age(): number {
return age(this.user.profile.birthday);
}
},
methods: {
showFollowing() {
2018-02-19 16:37:09 +02:00
document.body.appendChild(new MkFollowingWindow({
2018-02-14 17:32:13 +02:00
propsData: {
user: this.user
}
}).$mount().$el);
},
showFollowers() {
2018-02-19 16:37:09 +02:00
document.body.appendChild(new MkFollowersWindow({
2018-02-14 17:32:13 +02:00
propsData: {
user: this.user
}
}).$mount().$el);
},
mute() {
2018-02-18 05:35:18 +02:00
(this as any).api('mute/create', {
2018-02-14 17:32:13 +02:00
user_id: this.user.id
}).then(() => {
this.user.is_muted = true;
2018-02-19 16:37:09 +02:00
}, () => {
2018-02-14 17:32:13 +02:00
alert('error');
});
},
unmute() {
2018-02-18 05:35:18 +02:00
(this as any).api('mute/delete', {
2018-02-14 17:32:13 +02:00
user_id: this.user.id
}).then(() => {
this.user.is_muted = false;
2018-02-19 16:37:09 +02:00
}, () => {
2018-02-14 17:32:13 +02:00
alert('error');
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-02-20 18:39:51 +02:00
.profile
2018-02-14 17:32:13 +02:00
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
> *:first-child
border-top none !important
> .friend-form
padding 16px
border-top solid 1px #eee
2018-02-16 20:01:00 +02:00
> .mk-big-follow-button
2018-02-14 17:32:13 +02:00
width 100%
> .followed
margin 12px 0 0 0
padding 0
text-align center
line-height 24px
font-size 0.8em
color #71afc7
background #eefaff
border-radius 4px
> .description
padding 16px
color #555
border-top solid 1px #eee
> .birthday
padding 16px
color #555
border-top solid 1px #eee
> p
margin 0
> i
margin-right 8px
> .twitter
padding 16px
color #555
border-top solid 1px #eee
> p
margin 0
> i
margin-right 8px
> .status
padding 16px
color #555
border-top solid 1px #eee
> p
margin 8px 0
> i
margin-left 8px
margin-right 8px
</style>