mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 22:23:08 +02:00
7f7e6d5aba
* 「メッセージ」「トーク」「ダイレクト投稿」
トーク: 一対一のチャット機能・画面
メッセージ: トークでやり取りする発言
ダイレクト投稿: 自分向けのダイレクト投稿が一覧されるTL
* Fix display of messaging
* ✌️
* Update ja-JP.yml
37 lines
810 B
Vue
37 lines
810 B
Vue
<template>
|
|
<mk-window ref="window" width="500px" height="560px" @closed="destroyDom">
|
|
<template #header :class="$style.header"><fa icon="comments"/>{{ $t('@.messaging') }}</template>
|
|
<x-messaging :class="$style.content" @navigate="navigate"/>
|
|
</mk-window>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../../i18n';
|
|
import MkMessagingRoomWindow from './messaging-room-window.vue';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n(),
|
|
components: {
|
|
XMessaging: () => import('../../../common/views/components/messaging.vue').then(m => m.default)
|
|
},
|
|
methods: {
|
|
navigate(user) {
|
|
this.$root.new(MkMessagingRoomWindow, {
|
|
user: user
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" module>
|
|
.header
|
|
> [data-icon]
|
|
margin-right 4px
|
|
|
|
.content
|
|
height 100%
|
|
overflow auto
|
|
|
|
</style>
|