2018-02-16 12:32:22 +01:00
|
|
|
<template>
|
2018-09-17 22:35:06 +02:00
|
|
|
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="destroyDom">
|
2018-11-08 19:44:35 +01:00
|
|
|
<span slot="header" :class="$style.header"><fa icon="comments"/>{{ $t('title') }} {{ user | userName }}</span>
|
2018-11-11 21:35:09 +01:00
|
|
|
<x-messaging-room :user="user" :class="$style.content"/>
|
2018-02-16 12:32:22 +01:00
|
|
|
</mk-window>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-16 12:32:22 +01:00
|
|
|
import { url } from '../../../config';
|
2018-07-07 12:19:00 +02:00
|
|
|
import getAcct from '../../../../../misc/acct/render';
|
2018-02-16 12:32:22 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('desktop/views/components/messaging-room-window.vue'),
|
2018-11-11 21:35:09 +01:00
|
|
|
components: {
|
|
|
|
XMessagingRoom: () => import('../../../common/views/components/messaging-room.vue').then(m => m.default)
|
|
|
|
},
|
2018-02-16 12:32:22 +01:00
|
|
|
props: ['user'],
|
|
|
|
computed: {
|
|
|
|
popout(): string {
|
2018-03-27 09:51:12 +02:00
|
|
|
return `${url}/i/messaging/${getAcct(this.user)}`;
|
2018-02-16 12:32:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
|
|
|
.header
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-02-16 12:32:22 +01:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
.content
|
|
|
|
height 100%
|
|
|
|
overflow auto
|
|
|
|
|
|
|
|
</style>
|