summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/components/messaging-room-window.vue
blob: cbb58b5e9918045f1e7b21a868109cac9ba60173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="$destroy">
	<span slot="header" :class="$style.header">%fa:comments%%i18n:@title% {{ user | userName }}</span>
	<mk-messaging-room :user="user" :class="$style.content"/>
</mk-window>
</template>

<script lang="ts">
import Vue from 'vue';
import { url } from '../../../config';
import getAcct from '../../../../../acct/render';

export default Vue.extend({
	props: ['user'],
	computed: {
		popout(): string {
			return `${url}/i/messaging/${getAcct(this.user)}`;
		}
	}
});
</script>

<style lang="stylus" module>
.header
	> [data-fa]
		margin-right 4px

.content
	height 100%
	overflow auto

</style>