2018-02-16 09:20:55 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-messaging-room-page">
|
2018-02-22 13:15:24 +01:00
|
|
|
<mk-messaging-room v-if="user" :user="user" :is-naked="true"/>
|
2018-02-16 09:20:55 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Progress from '../../../common/scripts/loading';
|
2018-04-02 06:44:32 +02:00
|
|
|
import parseAcct from '../../../../../acct/parse';
|
2018-04-05 18:36:34 +02:00
|
|
|
import getUserName from '../../../../../renderers/get-user-name';
|
2018-02-16 09:20:55 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
user: null
|
|
|
|
};
|
|
|
|
},
|
2018-02-22 13:15:24 +01:00
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
created() {
|
2018-05-23 23:08:23 +02:00
|
|
|
const applyBg = v =>
|
|
|
|
document.documentElement.style.setProperty('background', v ? '#191b22' : '#fff', 'important');
|
|
|
|
|
|
|
|
applyBg(this.$store.state.device.darkmode);
|
|
|
|
|
|
|
|
this.unwatchDarkmode = this.$store.watch(s => {
|
|
|
|
return s.device.darkmode;
|
|
|
|
}, applyBg);
|
|
|
|
|
2018-02-22 13:15:24 +01:00
|
|
|
this.fetch();
|
|
|
|
},
|
2018-05-23 23:08:23 +02:00
|
|
|
beforeDestroy() {
|
|
|
|
document.documentElement.style.removeProperty('background');
|
|
|
|
this.unwatchDarkmode();
|
2018-02-22 13:15:24 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
|
|
|
Progress.start();
|
|
|
|
this.fetching = true;
|
|
|
|
|
2018-03-27 09:51:12 +02:00
|
|
|
(this as any).api('users/show', parseAcct(this.$route.params.user)).then(user => {
|
2018-02-22 13:15:24 +01:00
|
|
|
this.user = user;
|
|
|
|
this.fetching = false;
|
|
|
|
|
2018-04-05 18:36:34 +02:00
|
|
|
document.title = 'メッセージ: ' + getUserName(this.user);
|
2018-02-22 13:15:24 +01:00
|
|
|
|
|
|
|
Progress.done();
|
|
|
|
});
|
|
|
|
}
|
2018-02-16 09:20:55 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-messaging-room-page
|
2018-02-22 20:01:22 +01:00
|
|
|
display flex
|
|
|
|
flex 1
|
|
|
|
flex-direction column
|
|
|
|
min-height 100%
|
2018-02-16 09:20:55 +01:00
|
|
|
|
|
|
|
</style>
|