2018-02-13 00:17:59 -06:00
|
|
|
<template>
|
2018-02-26 13:36:16 -06:00
|
|
|
<div class="mk-messaging-room"
|
|
|
|
@dragover.prevent.stop="onDragover"
|
|
|
|
@drop.prevent.stop="onDrop"
|
|
|
|
>
|
2018-02-13 00:17:59 -06:00
|
|
|
<div class="stream">
|
|
|
|
<p class="init" v-if="init">%fa:spinner .spin%%i18n:common.loading%</p>
|
2018-04-14 11:04:40 -05:00
|
|
|
<p class="empty" v-if="!init && messages.length == 0">%fa:info-circle%%i18n:@empty%</p>
|
|
|
|
<p class="no-history" v-if="!init && messages.length > 0 && !existMoreMessages">%fa:flag%%i18n:@no-history%</p>
|
2018-02-18 09:18:01 -06:00
|
|
|
<button class="more" :class="{ fetching: fetchingMoreMessages }" v-if="existMoreMessages" @click="fetchMoreMessages" :disabled="fetchingMoreMessages">
|
2018-04-15 17:07:32 -05:00
|
|
|
<template v-if="fetchingMoreMessages">%fa:spinner .pulse .fw%</template>{{ fetchingMoreMessages ? '%i18n:!common.loading%' : '%i18n:!@more%' }}
|
2018-02-13 00:17:59 -06:00
|
|
|
</button>
|
2018-02-13 05:53:45 -06:00
|
|
|
<template v-for="(message, i) in _messages">
|
2018-02-20 10:39:51 -06:00
|
|
|
<x-message :message="message" :key="message.id"/>
|
|
|
|
<p class="date" v-if="i != messages.length - 1 && message._date != _messages[i + 1]._date">
|
|
|
|
<span>{{ _messages[i + 1]._datetext }}</span>
|
|
|
|
</p>
|
2018-02-13 00:17:59 -06:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<footer>
|
2018-02-21 16:06:47 -06:00
|
|
|
<div ref="notifications" class="notifications"></div>
|
2018-02-26 13:36:16 -06:00
|
|
|
<x-form :user="user" ref="form"/>
|
2018-02-13 00:17:59 -06:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-07 02:48:32 -06:00
|
|
|
import { MessagingStream } from '../../scripts/streaming/messaging';
|
2018-02-20 10:39:51 -06:00
|
|
|
import XMessage from './messaging-room.message.vue';
|
|
|
|
import XForm from './messaging-room.form.vue';
|
2018-03-04 03:50:30 -06:00
|
|
|
import { url } from '../../../config';
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-20 10:39:51 -06:00
|
|
|
components: {
|
|
|
|
XMessage,
|
|
|
|
XForm
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
props: ['user', 'isNaked'],
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
init: true,
|
|
|
|
fetchingMoreMessages: false,
|
|
|
|
messages: [],
|
|
|
|
existMoreMessages: false,
|
|
|
|
connection: null
|
|
|
|
};
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
computed: {
|
|
|
|
_messages(): any[] {
|
|
|
|
return (this.messages as any).map(message => {
|
2018-03-29 00:48:47 -05:00
|
|
|
const date = new Date(message.createdAt).getDate();
|
|
|
|
const month = new Date(message.createdAt).getMonth() + 1;
|
2018-02-13 00:17:59 -06:00
|
|
|
message._date = date;
|
|
|
|
message._datetext = `${month}月 ${date}日`;
|
|
|
|
return message;
|
|
|
|
});
|
2018-02-26 13:36:16 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
form(): any {
|
|
|
|
return this.$refs.form;
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2018-03-15 05:53:46 -05:00
|
|
|
this.connection = new MessagingStream((this as any).os, (this as any).os.i, this.user.id);
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
this.connection.on('message', this.onMessage);
|
|
|
|
this.connection.on('read', this.onRead);
|
|
|
|
|
|
|
|
document.addEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
|
|
|
|
this.fetchMessages().then(() => {
|
|
|
|
this.init = false;
|
|
|
|
this.scrollToBottom();
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('message', this.onMessage);
|
|
|
|
this.connection.off('read', this.onRead);
|
|
|
|
this.connection.close();
|
|
|
|
|
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
methods: {
|
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';
|
|
|
|
const isDriveFile = e.dataTransfer.types[0] == 'mk_drive_file';
|
|
|
|
|
|
|
|
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) {
|
|
|
|
alert('メッセージに添付できるのはひとつのファイルのみです');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-26 15:25:17 -06:00
|
|
|
//#region ドライブのファイル
|
|
|
|
const driveFile = e.dataTransfer.getData('mk_drive_file');
|
|
|
|
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;
|
|
|
|
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('messaging/messages', {
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: this.user.id,
|
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) {
|
2018-03-04 03:50:30 -06:00
|
|
|
// サウンドを再生する
|
|
|
|
if ((this as any).os.isEnableSounds) {
|
2018-03-06 03:06:45 -06:00
|
|
|
const sound = new Audio(`${url}/assets/message.mp3`);
|
2018-04-11 16:20:32 -05:00
|
|
|
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 0.5;
|
2018-03-06 03:06:45 -06:00
|
|
|
sound.play();
|
2018-03-04 03:50:30 -06:00
|
|
|
}
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
const isBottom = this.isBottom();
|
|
|
|
|
|
|
|
this.messages.push(message);
|
2018-03-29 00:48:47 -05:00
|
|
|
if (message.userId != (this as any).os.i.id && !document.hidden) {
|
2018-02-13 00:17:59 -06:00
|
|
|
this.connection.send({
|
|
|
|
type: 'read',
|
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isBottom) {
|
|
|
|
// Scroll to bottom
|
2018-02-22 13:01:22 -06:00
|
|
|
this.$nextTick(() => {
|
|
|
|
this.scrollToBottom();
|
|
|
|
});
|
2018-03-29 00:48:47 -05:00
|
|
|
} else if (message.userId != (this as any).os.i.id) {
|
2018-02-13 00:17:59 -06:00
|
|
|
// Notify
|
2018-04-15 17:07:32 -05:00
|
|
|
this.notify('%i18n:!@new-message%');
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
onRead(ids) {
|
|
|
|
if (!Array.isArray(ids)) ids = [ids];
|
|
|
|
ids.forEach(id => {
|
|
|
|
if (this.messages.some(x => x.id == id)) {
|
|
|
|
const exist = this.messages.map(x => x.id).indexOf(id);
|
2018-03-29 00:48:47 -05:00
|
|
|
this.messages[exist].isRead = true;
|
2018-02-13 00:17:59 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
isBottom() {
|
2018-02-22 13:01:22 -06:00
|
|
|
const asobi = 64;
|
2018-02-13 00:17:59 -06:00
|
|
|
const current = this.isNaked
|
|
|
|
? window.scrollY + window.innerHeight
|
|
|
|
: this.$el.scrollTop + this.$el.offsetHeight;
|
|
|
|
const max = this.isNaked
|
|
|
|
? document.body.offsetHeight
|
|
|
|
: this.$el.scrollHeight;
|
|
|
|
return current > (max - asobi);
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
scrollToBottom() {
|
|
|
|
if (this.isNaked) {
|
|
|
|
window.scroll(0, document.body.offsetHeight);
|
|
|
|
} else {
|
|
|
|
this.$el.scrollTop = this.$el.scrollHeight;
|
|
|
|
}
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
notify(message) {
|
|
|
|
const n = document.createElement('p') as any;
|
|
|
|
n.innerHTML = '%fa:arrow-circle-down%' + message;
|
|
|
|
n.onclick = () => {
|
|
|
|
this.scrollToBottom();
|
|
|
|
n.parentNode.removeChild(n);
|
|
|
|
};
|
|
|
|
(this.$refs.notifications as any).appendChild(n);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
n.style.opacity = 0;
|
|
|
|
setTimeout(() => n.parentNode.removeChild(n), 1000);
|
|
|
|
}, 4000);
|
|
|
|
},
|
2018-02-26 13:36:16 -06:00
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
onVisibilitychange() {
|
|
|
|
if (document.hidden) return;
|
|
|
|
this.messages.forEach(message => {
|
2018-03-29 00:48:47 -05:00
|
|
|
if (message.userId !== (this as any).os.i.id && !message.isRead) {
|
2018-02-13 00:17:59 -06:00
|
|
|
this.connection.send({
|
|
|
|
type: 'read',
|
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-02 22:47:55 -06:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
.mk-messaging-room
|
2018-02-22 13:01:22 -06:00
|
|
|
display flex
|
|
|
|
flex 1
|
|
|
|
flex-direction column
|
|
|
|
height 100%
|
|
|
|
|
2018-02-13 00:17:59 -06:00
|
|
|
> .stream
|
2018-02-22 13:01:22 -06:00
|
|
|
width 100%
|
2018-02-13 00:17:59 -06:00
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
2018-02-22 13:01:22 -06:00
|
|
|
flex 1
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
> .init
|
|
|
|
width 100%
|
|
|
|
margin 0
|
|
|
|
padding 16px 8px 8px 8px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-04-28 18:51:17 -05:00
|
|
|
color rgba(#000, 0.4)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .empty
|
|
|
|
width 100%
|
|
|
|
margin 0
|
|
|
|
padding 16px 8px 8px 8px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-04-28 18:51:17 -05:00
|
|
|
color rgba(#000, 0.4)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .no-history
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-04-28 18:51:17 -05:00
|
|
|
color rgba(#000, 0.4)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .more
|
|
|
|
display block
|
|
|
|
margin 16px auto
|
|
|
|
padding 0 12px
|
|
|
|
line-height 24px
|
|
|
|
color #fff
|
2018-04-28 18:51:17 -05:00
|
|
|
background rgba(#000, 0.3)
|
2018-02-13 00:17:59 -06:00
|
|
|
border-radius 12px
|
|
|
|
|
|
|
|
&:hover
|
2018-04-28 18:51:17 -05:00
|
|
|
background rgba(#000, 0.4)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
&:active
|
2018-04-28 18:51:17 -05:00
|
|
|
background rgba(#000, 0.5)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
&.fetching
|
|
|
|
cursor wait
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .message
|
|
|
|
// something
|
|
|
|
|
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 8px 0
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
&:before
|
|
|
|
content ''
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
height 1px
|
|
|
|
width 90%
|
|
|
|
top 16px
|
|
|
|
left 0
|
|
|
|
right 0
|
|
|
|
margin 0 auto
|
2018-04-28 18:51:17 -05:00
|
|
|
background rgba(#000, 0.1)
|
2018-02-13 00:17:59 -06:00
|
|
|
|
|
|
|
> span
|
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
padding 0 16px
|
|
|
|
//font-weight bold
|
|
|
|
line-height 32px
|
2018-04-28 18:51:17 -05:00
|
|
|
color rgba(#000, 0.3)
|
2018-02-13 00:17:59 -06:00
|
|
|
background #fff
|
|
|
|
|
|
|
|
> footer
|
|
|
|
position -webkit-sticky
|
|
|
|
position sticky
|
|
|
|
z-index 2
|
|
|
|
bottom 0
|
|
|
|
width 100%
|
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
|
|
|
padding 0
|
|
|
|
background rgba(255, 255, 255, 0.95)
|
|
|
|
background-clip content-box
|
|
|
|
|
2018-02-21 16:06:47 -06:00
|
|
|
> .notifications
|
2018-02-13 00:17:59 -06:00
|
|
|
position absolute
|
|
|
|
top -48px
|
|
|
|
width 100%
|
|
|
|
padding 8px 0
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
|
|
|
> p
|
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
padding 0 12px 0 28px
|
|
|
|
cursor pointer
|
|
|
|
line-height 32px
|
|
|
|
font-size 12px
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color
|
|
|
|
border-radius 16px
|
|
|
|
transition opacity 1s ease
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 10px
|
|
|
|
line-height 32px
|
|
|
|
font-size 16px
|
|
|
|
|
|
|
|
</style>
|