2018-02-13 00:17:59 -06:00
|
|
|
<template>
|
2020-10-17 06:12:00 -05:00
|
|
|
<div class="_section"
|
2018-02-26 13:36:16 -06:00
|
|
|
@dragover.prevent.stop="onDragover"
|
|
|
|
@drop.prevent.stop="onDrop"
|
|
|
|
>
|
2020-10-17 06:12:00 -05:00
|
|
|
<div class="_content mk-messaging-room">
|
|
|
|
<div class="body">
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<p class="empty" v-if="!fetching && messages.length == 0"><Fa :icon="faInfoCircle"/>{{ $t('noMessagesYet') }}</p>
|
|
|
|
<p class="no-history" v-if="!fetching && messages.length > 0 && !existMoreMessages"><Fa :icon="faFlag"/>{{ $t('noMoreHistory') }}</p>
|
|
|
|
<button class="more _button" ref="loadMore" :class="{ fetching: fetchingMoreMessages }" v-show="existMoreMessages" @click="fetchMoreMessages" :disabled="fetchingMoreMessages">
|
|
|
|
<template v-if="fetchingMoreMessages"><Fa icon="spinner" pulse fixed-width/></template>{{ fetchingMoreMessages ? $t('loading') : $t('loadMore') }}
|
|
|
|
</button>
|
|
|
|
<XList class="messages" :items="messages" v-slot="{ item: message }" direction="up" reversed>
|
|
|
|
<XMessage :message="message" :is-group="group != null" :key="message.id"/>
|
|
|
|
</XList>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<transition name="fade">
|
|
|
|
<div class="new-message" v-show="showIndicator">
|
|
|
|
<button class="_buttonPrimary" @click="onIndicatorClick"><i><Fa :icon="faArrowCircleDown"/></i>{{ $t('newMessageExists') }}</button>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
<XForm v-if="!fetching" :user="user" :group="group" ref="form"/>
|
|
|
|
</footer>
|
2018-02-13 00:17:59 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { computed, defineComponent } from 'vue';
|
|
|
|
import { faArrowCircleDown, faFlag, faUsers, faInfoCircle, faEllipsisH, faExternalLinkAlt } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faWindowMaximize } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import XList from '@/components/date-separated-list.vue';
|
2018-02-20 10:39:51 -06:00
|
|
|
import XMessage from './messaging-room.message.vue';
|
|
|
|
import XForm from './messaging-room.form.vue';
|
2020-03-22 00:38:33 -05:00
|
|
|
import parseAcct from '../../../misc/acct/parse';
|
2020-10-17 06:12:00 -05:00
|
|
|
import { isBottom, onScrollBottom, scroll } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { popout } from '@/scripts/popout';
|
2020-11-25 06:31:34 -06:00
|
|
|
import * as sound from '@/scripts/sound';
|
2018-02-13 00:17:59 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
const Component = defineComponent({
|
2018-02-20 10:39:51 -06:00
|
|
|
components: {
|
|
|
|
XMessage,
|
2020-01-29 13:37:25 -06:00
|
|
|
XForm,
|
|
|
|
XList,
|
2019-05-18 06:36:33 -05:00
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
inject: ['inWindow'],
|
|
|
|
|
|
|
|
props: {
|
|
|
|
userAcct: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
groupId: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 06:12:00 -05:00
|
|
|
INFO: computed(() => !this.fetching ? this.user ? {
|
2020-11-03 05:36:12 -06:00
|
|
|
userName: this.user,
|
|
|
|
avatar: this.user,
|
2020-10-17 06:12:00 -05:00
|
|
|
action: {
|
|
|
|
icon: faEllipsisH,
|
|
|
|
handler: this.menu,
|
|
|
|
},
|
|
|
|
} : {
|
2020-11-03 05:36:12 -06:00
|
|
|
title: this.group.name,
|
|
|
|
icon: faUsers,
|
2020-10-17 06:12:00 -05:00
|
|
|
action: {
|
|
|
|
icon: faEllipsisH,
|
|
|
|
handler: this.menu,
|
|
|
|
},
|
|
|
|
} : null),
|
2020-01-29 13:37:25 -06:00
|
|
|
fetching: true,
|
|
|
|
user: null,
|
|
|
|
group: null,
|
2018-02-13 00:17:59 -06:00
|
|
|
fetchingMoreMessages: false,
|
|
|
|
messages: [],
|
|
|
|
existMoreMessages: false,
|
2018-05-23 14:55:29 -05:00
|
|
|
connection: null,
|
|
|
|
showIndicator: false,
|
2018-11-14 10:09:50 -06:00
|
|
|
timer: null,
|
2020-05-30 22:53:06 -05:00
|
|
|
ilObserver: new IntersectionObserver(
|
|
|
|
(entries) => entries.some((entry) => entry.isIntersecting)
|
|
|
|
&& !this.fetching
|
|
|
|
&& !this.fetchingMoreMessages
|
|
|
|
&& this.existMoreMessages
|
|
|
|
&& this.fetchMoreMessages()
|
|
|
|
),
|
2020-10-17 06:12:00 -05:00
|
|
|
faArrowCircleDown, faFlag, faInfoCircle
|
2018-02-13 00:17:59 -06:00
|
|
|
};
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
computed: {
|
2018-02-26 13:36:16 -06:00
|
|
|
form(): any {
|
|
|
|
return this.$refs.form;
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
watch: {
|
2020-10-17 06:12:00 -05:00
|
|
|
userAcct: 'fetch',
|
|
|
|
groupId: 'fetch',
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2018-02-13 00:17:59 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
2020-05-30 22:53:06 -05:00
|
|
|
if (this.$store.state.device.enableInfiniteScroll) {
|
|
|
|
this.$nextTick(() => this.ilObserver.observe(this.$refs.loadMore as Element));
|
|
|
|
}
|
2018-02-13 00:17:59 -06:00
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
beforeUnmount() {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection.dispose();
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
2020-05-30 22:53:06 -05:00
|
|
|
|
|
|
|
this.ilObserver.disconnect();
|
2018-02-13 00:17:59 -06:00
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
methods: {
|
2020-01-29 13:37:25 -06:00
|
|
|
async fetch() {
|
|
|
|
this.fetching = true;
|
2020-10-17 06:12:00 -05:00
|
|
|
if (this.userAcct) {
|
|
|
|
const user = await os.api('users/show', parseAcct(this.userAcct));
|
2020-01-29 13:37:25 -06:00
|
|
|
this.user = user;
|
|
|
|
} else {
|
2020-10-17 06:12:00 -05:00
|
|
|
const group = await os.api('users/groups/show', { groupId: this.groupId });
|
2020-01-29 13:37:25 -06:00
|
|
|
this.group = group;
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
this.connection = os.stream.connectToChannel('messaging', {
|
2020-01-29 13:37:25 -06:00
|
|
|
otherparty: this.user ? this.user.id : undefined,
|
|
|
|
group: this.group ? this.group.id : undefined,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.connection.on('message', this.onMessage);
|
|
|
|
this.connection.on('read', this.onRead);
|
|
|
|
this.connection.on('deleted', this.onDeleted);
|
|
|
|
|
|
|
|
document.addEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
|
|
|
|
this.fetchMessages().then(() => {
|
|
|
|
this.scrollToBottom();
|
2020-05-30 22:53:06 -05:00
|
|
|
|
|
|
|
// もっと見るの交差検知を発火させないためにfetchは
|
|
|
|
// スクロールが終わるまでfalseにしておく
|
|
|
|
// scrollendのようなイベントはないのでsetTimeoutで
|
|
|
|
setTimeout(() => this.fetching = false, 300);
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-26 13:36:16 -06:00
|
|
|
onDragover(e) {
|
2018-02-26 15:25:17 -06:00
|
|
|
const isFile = e.dataTransfer.items[0].kind == 'file';
|
2020-10-17 06:12:00 -05:00
|
|
|
const isDriveFile = e.dataTransfer.types[0] == _DATA_TRANSFER_DRIVE_FILE_;
|
2018-02-26 15:25:17 -06:00
|
|
|
|
|
|
|
if (isFile || isDriveFile) {
|
|
|
|
e.dataTransfer.dropEffect = e.dataTransfer.effectAllowed == 'all' ? 'copy' : 'move';
|
|
|
|
} else {
|
|
|
|
e.dataTransfer.dropEffect = 'none';
|
|
|
|
}
|
2018-02-26 13:36:16 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
onDrop(e): void {
|
|
|
|
// ファイルだったら
|
|
|
|
if (e.dataTransfer.files.length == 1) {
|
|
|
|
this.form.upload(e.dataTransfer.files[0]);
|
|
|
|
return;
|
|
|
|
} else if (e.dataTransfer.files.length > 1) {
|
2020-10-17 06:12:00 -05:00
|
|
|
os.dialog({
|
2019-04-15 23:05:10 -05:00
|
|
|
type: 'error',
|
2020-02-11 15:27:11 -06:00
|
|
|
text: this.$t('onlyOneFileCanBeAttached')
|
2019-04-15 23:05:10 -05:00
|
|
|
});
|
2018-02-26 13:36:16 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-26 15:25:17 -06:00
|
|
|
//#region ドライブのファイル
|
2020-10-17 06:12:00 -05:00
|
|
|
const driveFile = e.dataTransfer.getData(_DATA_TRANSFER_DRIVE_FILE_);
|
2018-02-26 15:25:17 -06:00
|
|
|
if (driveFile != null && driveFile != '') {
|
|
|
|
const file = JSON.parse(driveFile);
|
|
|
|
this.form.file = file;
|
2018-02-26 13:36:16 -06:00
|
|
|
}
|
2018-02-26 15:25:17 -06:00
|
|
|
//#endregion
|
2018-02-26 13:36:16 -06:00
|
|
|
},
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
fetchMessages() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const max = this.existMoreMessages ? 20 : 10;
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('messaging/messages', {
|
2019-05-18 06:36:33 -05:00
|
|
|
userId: this.user ? this.user.id : undefined,
|
|
|
|
groupId: this.group ? this.group.id : undefined,
|
2018-02-13 00:17:59 -06:00
|
|
|
limit: max + 1,
|
2018-03-29 00:48:47 -05:00
|
|
|
untilId: this.existMoreMessages ? this.messages[0].id : undefined
|
2018-02-13 00:17:59 -06:00
|
|
|
}).then(messages => {
|
|
|
|
if (messages.length == max + 1) {
|
|
|
|
this.existMoreMessages = true;
|
|
|
|
messages.pop();
|
|
|
|
} else {
|
|
|
|
this.existMoreMessages = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.messages.unshift.apply(this.messages, messages.reverse());
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
fetchMoreMessages() {
|
|
|
|
this.fetchingMoreMessages = true;
|
|
|
|
this.fetchMessages().then(() => {
|
|
|
|
this.fetchingMoreMessages = false;
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
onMessage(message) {
|
2020-11-25 06:31:34 -06:00
|
|
|
sound.play('chat');
|
2018-03-04 03:50:30 -06:00
|
|
|
|
2020-07-18 22:26:05 -05:00
|
|
|
const _isBottom = isBottom(this.$el, 64);
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
this.messages.push(message);
|
2018-05-26 23:49:09 -05:00
|
|
|
if (message.userId != this.$store.state.i.id && !document.hidden) {
|
2018-10-08 11:50:49 -05:00
|
|
|
this.connection.send('read', {
|
2018-02-13 00:17:59 -06:00
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-18 22:26:05 -05:00
|
|
|
if (_isBottom) {
|
2018-02-13 00:17:59 -06:00
|
|
|
// Scroll to bottom
|
2018-02-22 13:01:22 -06:00
|
|
|
this.$nextTick(() => {
|
|
|
|
this.scrollToBottom();
|
|
|
|
});
|
2018-05-26 23:49:09 -05:00
|
|
|
} else if (message.userId != this.$store.state.i.id) {
|
2018-02-13 00:17:59 -06:00
|
|
|
// Notify
|
2018-05-23 14:55:29 -05:00
|
|
|
this.notifyNewMessage();
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2019-05-18 06:36:33 -05:00
|
|
|
onRead(x) {
|
|
|
|
if (this.user) {
|
|
|
|
if (!Array.isArray(x)) x = [x];
|
|
|
|
for (const id of x) {
|
|
|
|
if (this.messages.some(x => x.id == id)) {
|
|
|
|
const exist = this.messages.map(x => x.id).indexOf(id);
|
2020-08-01 23:59:05 -05:00
|
|
|
this.messages[exist] = {
|
|
|
|
...this.messages[exist],
|
|
|
|
isRead: true,
|
|
|
|
};
|
2019-05-18 06:36:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (this.group) {
|
|
|
|
for (const id of x.ids) {
|
|
|
|
if (this.messages.some(x => x.id == id)) {
|
|
|
|
const exist = this.messages.map(x => x.id).indexOf(id);
|
2020-08-01 23:59:05 -05:00
|
|
|
this.messages[exist] = {
|
|
|
|
...this.messages[exist],
|
|
|
|
reads: [...this.messages[exist].reads, x.userId]
|
|
|
|
};
|
2019-05-18 06:36:33 -05:00
|
|
|
}
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
2018-12-11 05:36:55 -06:00
|
|
|
}
|
2018-02-13 00:17:59 -06:00
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-12-26 10:24:57 -06:00
|
|
|
onDeleted(id) {
|
|
|
|
const msg = this.messages.find(m => m.id === id);
|
|
|
|
if (msg) {
|
|
|
|
this.messages = this.messages.filter(m => m.id !== msg.id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
scrollToBottom() {
|
2020-10-17 06:12:00 -05:00
|
|
|
scroll(this.$el, this.$el.offsetHeight);
|
2018-02-13 00:17:59 -06:00
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-05-23 14:55:29 -05:00
|
|
|
onIndicatorClick() {
|
|
|
|
this.showIndicator = false;
|
|
|
|
this.scrollToBottom();
|
|
|
|
},
|
|
|
|
|
|
|
|
notifyNewMessage() {
|
|
|
|
this.showIndicator = true;
|
|
|
|
|
2020-07-18 22:26:05 -05:00
|
|
|
onScrollBottom(this.$el, () => {
|
|
|
|
this.showIndicator = false;
|
|
|
|
});
|
|
|
|
|
2018-05-23 14:55:29 -05:00
|
|
|
if (this.timer) clearTimeout(this.timer);
|
|
|
|
|
|
|
|
this.timer = setTimeout(() => {
|
|
|
|
this.showIndicator = false;
|
2018-02-13 00:17:59 -06:00
|
|
|
}, 4000);
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
onVisibilitychange() {
|
|
|
|
if (document.hidden) return;
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const message of this.messages) {
|
2018-05-26 23:49:09 -05:00
|
|
|
if (message.userId !== this.$store.state.i.id && !message.isRead) {
|
2018-10-08 11:50:49 -05:00
|
|
|
this.connection.send('read', {
|
2018-02-13 00:17:59 -06:00
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
2018-12-11 05:36:55 -06:00
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
menu(ev) {
|
2020-11-02 19:06:19 -06:00
|
|
|
const path = this.groupId ? `/my/messaging/group/${this.groupId}` : `/my/messaging/${this.userAcct}`;
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
os.modalMenu([this.inWindow ? undefined : {
|
|
|
|
text: this.$t('openInWindow'),
|
|
|
|
icon: faWindowMaximize,
|
|
|
|
action: () => {
|
2020-11-02 19:06:19 -06:00
|
|
|
os.pageWindow(path);
|
2020-10-17 06:12:00 -05:00
|
|
|
this.$router.back();
|
|
|
|
},
|
|
|
|
}, this.inWindow ? undefined : {
|
|
|
|
text: this.$t('popout'),
|
|
|
|
icon: faExternalLinkAlt,
|
|
|
|
action: () => {
|
2020-11-02 19:06:19 -06:00
|
|
|
popout(path);
|
2020-10-17 06:12:00 -05:00
|
|
|
this.$router.back();
|
|
|
|
},
|
|
|
|
}], ev.currentTarget || ev.target);
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
export default Component;
|
2018-02-13 00:17:59 -06:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-messaging-room {
|
|
|
|
> .body {
|
|
|
|
> .empty {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px 8px 8px 8px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
[data-icon] {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .no-history {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: var(--messagingRoomInfo);
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
[data-icon] {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .more {
|
|
|
|
display: block;
|
|
|
|
margin: 16px auto;
|
|
|
|
padding: 0 12px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(#000, 0.3);
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(#000, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: rgba(#000, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fetching {
|
|
|
|
cursor: wait;
|
|
|
|
}
|
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .messages {
|
2020-10-17 06:12:00 -05:00
|
|
|
> ::v-deep(*) {
|
2020-01-29 13:37:25 -06:00
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> .new-message {
|
|
|
|
position: absolute;
|
|
|
|
top: -48px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px 0;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 12px 0 30px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 10px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
transition: opacity 0.1s;
|
|
|
|
}
|
2018-05-23 14:55:29 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
.fade-enter-from, .fade-leave-to {
|
2020-01-29 13:37:25 -06:00
|
|
|
transition: opacity 0.5s;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2018-02-13 00:17:59 -06:00
|
|
|
</style>
|