2018-02-13 07:17:59 +01:00
|
|
|
<template>
|
2018-02-26 20:36:16 +01:00
|
|
|
<div class="mk-messaging-room"
|
|
|
|
@dragover.prevent.stop="onDragover"
|
|
|
|
@drop.prevent.stop="onDrop"
|
|
|
|
>
|
2018-09-01 02:29:59 +02:00
|
|
|
<div class="body">
|
2019-05-18 13:36:33 +02:00
|
|
|
<p class="init" v-if="init"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}</p>
|
|
|
|
<p class="empty" v-if="!init && messages.length == 0"><fa icon="info-circle"/>{{ user ? $t('not-talked-user') : $t('not-talked-group') }}</p>
|
2019-04-18 14:34:56 +02:00
|
|
|
<p class="no-history" v-if="!init && messages.length > 0 && !existMoreMessages"><fa :icon="faFlag"/>{{ $t('no-history') }}</p>
|
2018-02-18 16:18:01 +01:00
|
|
|
<button class="more" :class="{ fetching: fetchingMoreMessages }" v-if="existMoreMessages" @click="fetchMoreMessages" :disabled="fetchingMoreMessages">
|
2018-11-13 14:45:28 +01:00
|
|
|
<template v-if="fetchingMoreMessages"><fa icon="spinner" pulse fixed-width/></template>{{ fetchingMoreMessages ? $t('@.loading') : $t('@.load-more') }}
|
2018-02-13 07:17:59 +01:00
|
|
|
</button>
|
2018-02-13 12:53:45 +01:00
|
|
|
<template v-for="(message, i) in _messages">
|
2019-05-18 13:36:33 +02:00
|
|
|
<x-message :message="message" :key="message.id" :is-group="group != null"/>
|
2018-02-20 17:39:51 +01:00
|
|
|
<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 07:17:59 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<footer>
|
2018-05-23 21:55:29 +02:00
|
|
|
<transition name="fade">
|
|
|
|
<div class="new-message" v-show="showIndicator">
|
2018-11-14 17:09:50 +01:00
|
|
|
<button @click="onIndicatorClick"><i><fa :icon="faArrowCircleDown"/></i>{{ $t('new-message') }}</button>
|
2018-05-23 21:55:29 +02:00
|
|
|
</div>
|
|
|
|
</transition>
|
2019-05-18 13:36:33 +02:00
|
|
|
<x-form :user="user" :group="group" ref="form"/>
|
2018-02-13 07:17:59 +01:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-20 17:39:51 +01:00
|
|
|
import XMessage from './messaging-room.message.vue';
|
|
|
|
import XForm from './messaging-room.form.vue';
|
2018-03-04 10:50:30 +01:00
|
|
|
import { url } from '../../../config';
|
2019-05-18 13:36:33 +02:00
|
|
|
import { faArrowCircleDown, faFlag } from '@fortawesome/free-solid-svg-icons';
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('common/views/components/messaging-room.vue'),
|
2019-05-18 13:36:33 +02:00
|
|
|
|
2018-02-20 17:39:51 +01:00
|
|
|
components: {
|
|
|
|
XMessage,
|
|
|
|
XForm
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2019-05-18 13:36:33 +02:00
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
requird: false,
|
|
|
|
},
|
|
|
|
group: {
|
|
|
|
type: Object,
|
|
|
|
requird: false,
|
|
|
|
},
|
|
|
|
isNaked: {
|
|
|
|
type: Boolean,
|
|
|
|
requird: false,
|
|
|
|
},
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
init: true,
|
|
|
|
fetchingMoreMessages: false,
|
|
|
|
messages: [],
|
|
|
|
existMoreMessages: false,
|
2018-05-23 21:55:29 +02:00
|
|
|
connection: null,
|
|
|
|
showIndicator: false,
|
2018-11-14 17:09:50 +01:00
|
|
|
timer: null,
|
2019-04-18 14:34:56 +02:00
|
|
|
faArrowCircleDown, faFlag
|
2018-02-13 07:17:59 +01:00
|
|
|
};
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
computed: {
|
|
|
|
_messages(): any[] {
|
|
|
|
return (this.messages as any).map(message => {
|
2018-03-29 07:48:47 +02:00
|
|
|
const date = new Date(message.createdAt).getDate();
|
|
|
|
const month = new Date(message.createdAt).getMonth() + 1;
|
2018-02-13 07:17:59 +01:00
|
|
|
message._date = date;
|
2018-11-08 19:44:35 +01:00
|
|
|
message._datetext = this.$t('@.month-and-day').replace('{month}', month.toString()).replace('{day}', date.toString());
|
2018-02-13 07:17:59 +01:00
|
|
|
return message;
|
|
|
|
});
|
2018-02-26 20:36:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
form(): any {
|
|
|
|
return this.$refs.form;
|
2018-02-13 07:17:59 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2019-05-18 13:36:33 +02:00
|
|
|
this.connection = this.$root.stream.connectToChannel('messaging', {
|
|
|
|
otherparty: this.user ? this.user.id : undefined,
|
|
|
|
group: this.group ? this.group.id : undefined,
|
|
|
|
});
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
this.connection.on('message', this.onMessage);
|
|
|
|
this.connection.on('read', this.onRead);
|
2018-12-26 17:24:57 +01:00
|
|
|
this.connection.on('deleted', this.onDeleted);
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-09-01 02:29:59 +02:00
|
|
|
if (this.isNaked) {
|
|
|
|
window.addEventListener('scroll', this.onScroll, { passive: true });
|
|
|
|
} else {
|
|
|
|
this.$el.addEventListener('scroll', this.onScroll, { passive: true });
|
|
|
|
}
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
document.addEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
|
|
|
|
this.fetchMessages().then(() => {
|
|
|
|
this.init = false;
|
|
|
|
this.scrollToBottom();
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
beforeDestroy() {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.connection.dispose();
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-09-01 02:29:59 +02:00
|
|
|
if (this.isNaked) {
|
|
|
|
window.removeEventListener('scroll', this.onScroll);
|
|
|
|
} else {
|
|
|
|
this.$el.removeEventListener('scroll', this.onScroll);
|
|
|
|
}
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
methods: {
|
2018-02-26 20:36:16 +01:00
|
|
|
onDragover(e) {
|
2018-02-26 22:25:17 +01: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 20:36:16 +01: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) {
|
2019-04-16 06:05:10 +02:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'error',
|
|
|
|
text: this.$t('only-one-file-attached')
|
|
|
|
});
|
2018-02-26 20:36:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-26 22:25:17 +01: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 20:36:16 +01:00
|
|
|
}
|
2018-02-26 22:25:17 +01:00
|
|
|
//#endregion
|
2018-02-26 20:36:16 +01:00
|
|
|
},
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
fetchMessages() {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const max = this.existMoreMessages ? 20 : 10;
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('messaging/messages', {
|
2019-05-18 13:36:33 +02:00
|
|
|
userId: this.user ? this.user.id : undefined,
|
|
|
|
groupId: this.group ? this.group.id : undefined,
|
2018-02-13 07:17:59 +01:00
|
|
|
limit: max + 1,
|
2018-03-29 07:48:47 +02:00
|
|
|
untilId: this.existMoreMessages ? this.messages[0].id : undefined
|
2018-02-13 07:17:59 +01: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 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
fetchMoreMessages() {
|
|
|
|
this.fetchingMoreMessages = true;
|
|
|
|
this.fetchMessages().then(() => {
|
|
|
|
this.fetchingMoreMessages = false;
|
|
|
|
});
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
onMessage(message) {
|
2018-03-04 10:50:30 +01:00
|
|
|
// サウンドを再生する
|
2018-05-20 19:13:39 +02:00
|
|
|
if (this.$store.state.device.enableSounds) {
|
2018-03-06 10:06:45 +01:00
|
|
|
const sound = new Audio(`${url}/assets/message.mp3`);
|
2018-05-20 19:13:39 +02:00
|
|
|
sound.volume = this.$store.state.device.soundVolume;
|
2018-03-06 10:06:45 +01:00
|
|
|
sound.play();
|
2018-03-04 10:50:30 +01:00
|
|
|
}
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
const isBottom = this.isBottom();
|
|
|
|
|
|
|
|
this.messages.push(message);
|
2018-05-27 06:49:09 +02:00
|
|
|
if (message.userId != this.$store.state.i.id && !document.hidden) {
|
2018-10-08 18:50:49 +02:00
|
|
|
this.connection.send('read', {
|
2018-02-13 07:17:59 +01:00
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isBottom) {
|
|
|
|
// Scroll to bottom
|
2018-02-22 20:01:22 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
this.scrollToBottom();
|
|
|
|
});
|
2018-05-27 06:49:09 +02:00
|
|
|
} else if (message.userId != this.$store.state.i.id) {
|
2018-02-13 07:17:59 +01:00
|
|
|
// Notify
|
2018-05-23 21:55:29 +02:00
|
|
|
this.notifyNewMessage();
|
2018-02-13 07:17:59 +01:00
|
|
|
}
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2019-05-18 13:36:33 +02: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);
|
|
|
|
this.messages[exist].isRead = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} 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);
|
|
|
|
this.messages[exist].reads.push(x.userId);
|
|
|
|
}
|
2018-02-13 07:17:59 +01:00
|
|
|
}
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-13 07:17:59 +01:00
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-12-26 17:24:57 +01: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 07:17:59 +01:00
|
|
|
isBottom() {
|
2018-02-22 20:01:22 +01:00
|
|
|
const asobi = 64;
|
2018-02-13 07:17:59 +01: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 20:36:16 +01:00
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
scrollToBottom() {
|
|
|
|
if (this.isNaked) {
|
|
|
|
window.scroll(0, document.body.offsetHeight);
|
|
|
|
} else {
|
|
|
|
this.$el.scrollTop = this.$el.scrollHeight;
|
|
|
|
}
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-05-23 21:55:29 +02:00
|
|
|
onIndicatorClick() {
|
|
|
|
this.showIndicator = false;
|
|
|
|
this.scrollToBottom();
|
|
|
|
},
|
|
|
|
|
|
|
|
notifyNewMessage() {
|
|
|
|
this.showIndicator = true;
|
|
|
|
|
|
|
|
if (this.timer) clearTimeout(this.timer);
|
|
|
|
|
|
|
|
this.timer = setTimeout(() => {
|
|
|
|
this.showIndicator = false;
|
2018-02-13 07:17:59 +01:00
|
|
|
}, 4000);
|
|
|
|
},
|
2018-02-26 20:36:16 +01:00
|
|
|
|
2018-09-01 02:29:59 +02:00
|
|
|
onScroll() {
|
|
|
|
const el = this.isNaked ? window.document.documentElement : this.$el;
|
|
|
|
const current = el.scrollTop + el.clientHeight;
|
|
|
|
if (current > el.scrollHeight - 1) {
|
|
|
|
this.showIndicator = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
onVisibilitychange() {
|
|
|
|
if (document.hidden) return;
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const message of this.messages) {
|
2018-05-27 06:49:09 +02:00
|
|
|
if (message.userId !== this.$store.state.i.id && !message.isRead) {
|
2018-10-08 18:50:49 +02:00
|
|
|
this.connection.send('read', {
|
2018-02-13 07:17:59 +01:00
|
|
|
id: message.id
|
|
|
|
});
|
|
|
|
}
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-13 07:17:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 14:43:11 +02:00
|
|
|
.mk-messaging-room
|
2018-02-22 20:01:22 +01:00
|
|
|
display flex
|
|
|
|
flex 1
|
|
|
|
flex-direction column
|
|
|
|
height 100%
|
2018-09-27 14:43:11 +02:00
|
|
|
background var(--messagingRoomBg)
|
2018-02-22 20:01:22 +01:00
|
|
|
|
2018-09-01 02:29:59 +02:00
|
|
|
> .body
|
2018-02-22 20:01:22 +01:00
|
|
|
width 100%
|
2018-02-13 07:17:59 +01:00
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
2018-07-14 18:07:17 +02:00
|
|
|
flex 1
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-09-27 14:43:11 +02:00
|
|
|
> .init,
|
2018-02-13 07:17:59 +01:00
|
|
|
> .empty
|
|
|
|
width 100%
|
|
|
|
margin 0
|
|
|
|
padding 16px 8px 8px 8px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-09-27 14:43:11 +02:00
|
|
|
color var(--messagingRoomInfo)
|
|
|
|
opacity 0.5
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
[data-icon]
|
2018-02-13 07:17:59 +01:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .no-history
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-09-27 14:43:11 +02:00
|
|
|
color var(--messagingRoomInfo)
|
|
|
|
opacity 0.5
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
[data-icon]
|
2018-02-13 07:17:59 +01:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .more
|
|
|
|
display block
|
|
|
|
margin 16px auto
|
|
|
|
padding 0 12px
|
|
|
|
line-height 24px
|
|
|
|
color #fff
|
2018-04-29 01:51:17 +02:00
|
|
|
background rgba(#000, 0.3)
|
2018-02-13 07:17:59 +01:00
|
|
|
border-radius 12px
|
|
|
|
|
|
|
|
&:hover
|
2018-04-29 01:51:17 +02:00
|
|
|
background rgba(#000, 0.4)
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
&:active
|
2018-04-29 01:51:17 +02:00
|
|
|
background rgba(#000, 0.5)
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
&.fetching
|
|
|
|
cursor wait
|
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-02-13 07:17:59 +01:00
|
|
|
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-09-27 14:43:11 +02:00
|
|
|
background var(--messagingRoomDateDividerLine)
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
> span
|
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
padding 0 16px
|
|
|
|
//font-weight bold
|
|
|
|
line-height 32px
|
2018-09-27 14:43:11 +02:00
|
|
|
color var(--messagingRoomDateDividerText)
|
|
|
|
background var(--messagingRoomBg)
|
2018-02-13 07:17:59 +01:00
|
|
|
|
|
|
|
> footer
|
2018-07-14 18:07:17 +02:00
|
|
|
position -webkit-sticky
|
|
|
|
position sticky
|
|
|
|
z-index 2
|
|
|
|
bottom 0
|
2018-02-13 07:17:59 +01:00
|
|
|
width 100%
|
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
|
|
|
padding 0
|
2018-10-13 11:08:30 +02:00
|
|
|
background var(--messagingRoomBg)
|
2018-02-13 07:17:59 +01:00
|
|
|
background-clip content-box
|
|
|
|
|
2018-05-23 21:55:29 +02:00
|
|
|
> .new-message
|
2018-02-13 07:17:59 +01:00
|
|
|
position absolute
|
|
|
|
top -48px
|
|
|
|
width 100%
|
|
|
|
padding 8px 0
|
|
|
|
text-align center
|
|
|
|
|
2018-05-23 21:55:29 +02:00
|
|
|
> button
|
2018-02-13 07:17:59 +01:00
|
|
|
display inline-block
|
|
|
|
margin 0
|
2018-05-23 21:56:58 +02:00
|
|
|
padding 0 12px 0 30px
|
2018-02-13 07:17:59 +01:00
|
|
|
cursor pointer
|
|
|
|
line-height 32px
|
|
|
|
font-size 12px
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background var(--primary)
|
2018-02-13 07:17:59 +01:00
|
|
|
border-radius 16px
|
2018-05-23 21:55:29 +02:00
|
|
|
|
|
|
|
&:hover
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primaryLighten10)
|
2018-05-23 21:55:29 +02:00
|
|
|
|
|
|
|
&:active
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primaryDarken10)
|
2018-02-13 07:17:59 +01:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> i
|
2018-02-13 07:17:59 +01:00
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 10px
|
|
|
|
line-height 32px
|
|
|
|
font-size 16px
|
|
|
|
|
2018-05-23 21:55:29 +02:00
|
|
|
.fade-enter-active, .fade-leave-active
|
|
|
|
transition opacity 0.1s
|
|
|
|
|
|
|
|
.fade-enter, .fade-leave-to
|
|
|
|
transition opacity 0.5s
|
|
|
|
opacity 0
|
|
|
|
|
2018-02-13 07:17:59 +01:00
|
|
|
</style>
|