2018-02-20 06:16:41 +01:00
|
|
|
<template>
|
|
|
|
<mk-ui>
|
2018-11-08 19:44:35 +01:00
|
|
|
<span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'comments']"/></span>{{ $t('@.messaging') }}</span>
|
2018-02-24 19:17:13 +01:00
|
|
|
<mk-messaging @navigate="navigate" :header-top="48"/>
|
2018-02-20 06:16:41 +01:00
|
|
|
</mk-ui>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-07-07 12:19:00 +02:00
|
|
|
import getAcct from '../../../../../misc/acct/render';
|
2018-03-27 09:51:12 +02:00
|
|
|
|
2018-02-20 06:16:41 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n(),
|
2018-02-20 06:16:41 +01:00
|
|
|
mounted() {
|
2018-11-09 00:13:34 +01:00
|
|
|
document.title = `${this.$root.os.instanceName} ${this.$t('@.messaging')}`;
|
2018-02-20 06:16:41 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
navigate(user) {
|
2018-03-27 09:51:12 +02:00
|
|
|
(this as any).$router.push(`/i/messaging/${getAcct(user)}`);
|
2018-02-20 06:16:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|