yumechi-no-kuni/src/client/app/mobile/views/pages/messaging-room.vue

43 lines
866 B
Vue
Raw Normal View History

2018-02-19 23:16:41 -06:00
<template>
<mk-ui>
<span slot="header">
2018-04-09 04:52:29 -05:00
<template v-if="user">%fa:R comments%{{ user | userName }}</template>
2018-02-19 23:16:41 -06:00
<template v-else><mk-ellipsis/></template>
</span>
2018-02-22 13:01:22 -06:00
<mk-messaging-room v-if="!fetching" :user="user" :is-naked="true"/>
2018-02-19 23:16:41 -06:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-01 23:44:32 -05:00
import parseAcct from '../../../../../acct/parse';
2018-03-27 02:51:12 -05:00
2018-02-19 23:16:41 -06:00
export default Vue.extend({
data() {
return {
fetching: true,
user: null
};
},
2018-02-22 03:06:32 -06:00
watch: {
$route: 'fetch'
},
created() {
document.documentElement.style.background = '#fff';
this.fetch();
},
methods: {
fetch() {
this.fetching = true;
2018-03-27 02:51:12 -05:00
(this as any).api('users/show', parseAcct(this.$route.params.user)).then(user => {
2018-02-22 03:06:32 -06:00
this.user = user;
this.fetching = false;
2018-02-19 23:16:41 -06:00
2018-04-14 12:36:01 -05:00
document.title = `%i18n:@messaging%: ${Vue.filter('userName')(this.user)} | Misskey`;
2018-02-22 03:06:32 -06:00
});
}
2018-02-19 23:16:41 -06:00
}
});
</script>