Sharkey/src/client/app/mobile/views/pages/messaging-room.vue

55 lines
1.2 KiB
Vue
Raw Normal View History

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