1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-19 17:18:27 +09:00
MisskeyIO/src/client/app/desktop/views/components/messaging-room-window.vue

37 lines
811 B
Vue
Raw Normal View History

2018-02-16 20:32:22 +09:00
<template>
2018-02-22 21:15:24 +09:00
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="$destroy">
2018-04-06 01:36:34 +09:00
<span slot="header" :class="$style.header">%fa:comments%メッセージ: {{ name }}</span>
2018-02-16 20:32:22 +09: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 13:44:32 +09:00
import getAcct from '../../../../../acct/render';
2018-04-06 01:36:34 +09:00
import getUserName from '../../../../../renderers/get-user-name';
2018-02-16 20:32:22 +09:00
export default Vue.extend({
props: ['user'],
computed: {
2018-04-06 01:36:34 +09:00
name(): string {
return getUserName(this.user);
},
2018-02-16 20:32:22 +09:00
popout(): string {
2018-03-27 16:51:12 +09:00
return `${url}/i/messaging/${getAcct(this.user)}`;
2018-02-16 20:32:22 +09:00
}
}
});
</script>
<style lang="stylus" module>
.header
> [data-fa]
margin-right 4px
.content
height 100%
overflow auto
</style>