Sharkey/src/client/app/desktop/views/components/messaging-room-window.vue

33 lines
695 B
Vue
Raw Normal View History

2018-02-16 13:32:22 +02:00
<template>
2018-02-22 14:15:24 +02:00
<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>
2018-02-16 13:32:22 +02:00
<mk-messaging-room :user="user" :class="$style.content"/>
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
import { url } from '../../../config';
2018-04-02 07:44:32 +03:00
import getAcct from '../../../../../acct/render';
2018-02-16 13:32:22 +02:00
export default Vue.extend({
props: ['user'],
computed: {
popout(): string {
2018-03-27 10:51:12 +03:00
return `${url}/i/messaging/${getAcct(this.user)}`;
2018-02-16 13:32:22 +02:00
}
}
});
</script>
<style lang="stylus" module>
.header
> [data-fa]
margin-right 4px
.content
height 100%
overflow auto
</style>