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

38 lines
942 B
Vue
Raw Normal View History

2018-02-16 13:32:22 +02:00
<template>
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="destroyDom">
<span slot="header" :class="$style.header"><fa icon="comments"/>{{ $t('title') }} {{ user | userName }}</span>
<x-messaging-room :user="user" :class="$style.content"/>
2018-02-16 13:32:22 +02:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-16 13:32:22 +02:00
import { url } from '../../../config';
2018-07-07 13:19:00 +03:00
import getAcct from '../../../../../misc/acct/render';
2018-02-16 13:32:22 +02:00
export default Vue.extend({
i18n: i18n('desktop/views/components/messaging-room-window.vue'),
components: {
XMessagingRoom: () => import('../../../common/views/components/messaging-room.vue').then(m => m.default)
},
2018-02-16 13:32:22 +02:00
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-icon]
2018-02-16 13:32:22 +02:00
margin-right 4px
.content
height 100%
overflow auto
</style>