Sharkey/src/web/app/desktop/views/pages/messaging-room.vue

52 lines
869 B
Vue
Raw Normal View History

2018-02-16 10:20:55 +02:00
<template>
<div class="mk-messaging-room-page">
2018-02-22 14:15:24 +02:00
<mk-messaging-room v-if="user" :user="user" :is-naked="true"/>
2018-02-16 10:20:55 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
data() {
return {
fetching: true,
user: null
};
},
2018-02-22 14:15:24 +02:00
watch: {
$route: 'fetch'
},
created() {
this.fetch();
},
2018-02-16 10:20:55 +02:00
mounted() {
document.documentElement.style.background = '#fff';
2018-02-22 14:15:24 +02:00
},
methods: {
fetch() {
Progress.start();
this.fetching = true;
(this as any).api('users/show', {
username: this.$route.params.username
}).then(user => {
this.user = user;
this.fetching = false;
document.title = 'メッセージ: ' + this.user.name;
Progress.done();
});
}
2018-02-16 10:20:55 +02:00
}
});
</script>
<style lang="stylus" scoped>
.mk-messaging-room-page
background #fff
</style>