2018-02-07 00:16:01 -06:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<p v-if=" stream.state == 'initializing' ">
|
|
|
|
%fa:spinner .pulse%
|
|
|
|
<span>%i18n:common.tags.mk-stream-indicator.connecting%<mk-ellipsis/></span>
|
|
|
|
</p>
|
|
|
|
<p v-if=" stream.state == 'reconnecting' ">
|
|
|
|
%fa:spinner .pulse%
|
|
|
|
<span>%i18n:common.tags.mk-stream-indicator.reconnecting%<mk-ellipsis/></span>
|
|
|
|
</p>
|
|
|
|
<p v-if=" stream.state == 'connected' ">
|
|
|
|
%fa:check%
|
|
|
|
<span>%i18n:common.tags.mk-stream-indicator.connected%</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-07 03:47:29 -06:00
|
|
|
<script lang="typescript">
|
2018-02-12 18:27:57 -06:00
|
|
|
import * as anime from 'animejs';
|
2018-02-07 00:16:01 -06:00
|
|
|
import Ellipsis from './ellipsis.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: ['stream'],
|
2018-02-07 23:25:49 -06:00
|
|
|
created() {
|
2018-02-07 00:16:01 -06:00
|
|
|
if (this.stream.state == 'connected') {
|
|
|
|
this.root.style.opacity = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.stream.on('_connected_', () => {
|
|
|
|
setTimeout(() => {
|
|
|
|
anime({
|
|
|
|
targets: this.root,
|
|
|
|
opacity: 0,
|
|
|
|
easing: 'linear',
|
|
|
|
duration: 200
|
|
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.stream.on('_closed_', () => {
|
|
|
|
anime({
|
|
|
|
targets: this.root,
|
|
|
|
opacity: 1,
|
|
|
|
easing: 'linear',
|
|
|
|
duration: 100
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2018-02-07 03:30:17 -06:00
|
|
|
<style lang="stylus" scoped>
|
2018-02-07 00:16:01 -06:00
|
|
|
> div
|
|
|
|
display block
|
|
|
|
pointer-events none
|
|
|
|
position fixed
|
|
|
|
z-index 16384
|
|
|
|
bottom 8px
|
|
|
|
right 8px
|
|
|
|
margin 0
|
|
|
|
padding 6px 12px
|
|
|
|
font-size 0.9em
|
|
|
|
color #fff
|
|
|
|
background rgba(0, 0, 0, 0.8)
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
> p
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 0.25em
|
|
|
|
|
|
|
|
</style>
|