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

61 lines
1.5 KiB
Vue
Raw Normal View History

2018-02-20 06:16:41 +01:00
<template>
<mk-ui>
<span slot="header">
<template v-if="user"><span style="margin-right:4px;"><fa :icon="['far', 'comments']"/></span>{{ user | userName }}</template>
2018-02-20 06:16:41 +01:00
<template v-else><mk-ellipsis/></template>
</span>
<x-messaging-room v-if="!fetching" :user="user" :is-naked="true"/>
2018-02-20 06:16:41 +01:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-07-07 12:19:00 +02:00
import parseAcct from '../../../../../misc/acct/parse';
2018-03-27 09:51:12 +02:00
2018-02-20 06:16:41 +01:00
export default Vue.extend({
i18n: i18n(),
components: {
XMessagingRoom: () => import('../../../common/views/components/messaging-room.vue').then(m => m.default)
},
2018-02-20 06:16:41 +01:00
data() {
return {
fetching: true,
2018-05-23 22:46:09 +02:00
user: null,
unwatchDarkmode: null
2018-02-20 06:16:41 +01:00
};
},
2018-02-22 10:06:32 +01:00
watch: {
$route: 'fetch'
},
created() {
2018-05-23 22:46:09 +02:00
const applyBg = v =>
document.documentElement.style.setProperty('background', v ? '#191b22' : '#fff', 'important');
2018-05-23 22:57:27 +02:00
applyBg(this.$store.state.device.darkmode);
2018-05-23 22:46:09 +02:00
this.unwatchDarkmode = this.$store.watch(s => {
return s.device.darkmode;
}, applyBg);
2018-02-22 10:06:32 +01:00
this.fetch();
},
2018-05-23 22:46:09 +02:00
beforeDestroy() {
document.documentElement.style.removeProperty('background');
2018-05-24 02:00:16 +02:00
document.documentElement.style.removeProperty('background-color'); // for safari's bug
2018-05-23 22:46:09 +02:00
this.unwatchDarkmode();
},
2018-02-22 10:06:32 +01:00
methods: {
fetch() {
this.fetching = true;
2018-11-09 00:13:34 +01:00
this.$root.api('users/show', parseAcct(this.$route.params.user)).then(user => {
2018-02-22 10:06:32 +01:00
this.user = user;
this.fetching = false;
2018-02-20 06:16:41 +01:00
2018-11-09 00:26:32 +01:00
document.title = `${this.$t('@.messaging')}: ${Vue.filter('userName')(this.user)} | ${this.$root.instanceName}`;
2018-02-22 10:06:32 +01:00
});
}
2018-02-20 06:16:41 +01:00
}
});
</script>