3963ed8ff7
* wip * tabun ok * better msg * oops * fix lint * Update gulpfile.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update src/client/scripts/set-i18n-contexts.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * refactor Co-authored-by: acid-chicken <root@acid-chicken.com> * ✨ * wip * fix lint * たぶんおk * fix flush * Translate Notification * remove console.log * fix * add notifications * remove san * wip * ok * ✌️ * Update src/prelude/array.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * wip * i18n refactor * Update init.ts * ✌️ Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
78 lines
1.4 KiB
Vue
78 lines
1.4 KiB
Vue
<template>
|
|
<div class="nsbbhtug" v-if="hasDisconnected" @click="resetDisconnected">
|
|
<div>{{ $t('disconnectedFromServer') }}</div>
|
|
<div class="command">
|
|
<button class="_textButton" @click="reload">{{ $t('reload') }}</button>
|
|
<button class="_textButton">{{ $t('doNothing') }}</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
hasDisconnected: false,
|
|
}
|
|
},
|
|
computed: {
|
|
stream() {
|
|
return this.$root.stream;
|
|
},
|
|
},
|
|
created() {
|
|
this.$root.stream.on('_connected_', this.onConnected);
|
|
this.$root.stream.on('_disconnected_', this.onDisconnected);
|
|
},
|
|
beforeDestroy() {
|
|
this.$root.stream.off('_connected_', this.onConnected);
|
|
this.$root.stream.off('_disconnected_', this.onDisconnected);
|
|
},
|
|
methods: {
|
|
onConnected() {
|
|
if (this.hasDisconnected) {
|
|
if (this.$store.state.device.autoReload) {
|
|
this.reload();
|
|
}
|
|
}
|
|
},
|
|
onDisconnected() {
|
|
this.hasDisconnected = true;
|
|
},
|
|
resetDisconnected() {
|
|
this.hasDisconnected = false;
|
|
},
|
|
reload() {
|
|
location.reload();
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nsbbhtug {
|
|
position: fixed;
|
|
z-index: 16385;
|
|
bottom: 8px;
|
|
right: 8px;
|
|
margin: 0;
|
|
padding: 6px 12px;
|
|
font-size: 0.9em;
|
|
color: #fff;
|
|
background: #000;
|
|
opacity: 0.8;
|
|
border-radius: 4px;
|
|
max-width: 320px;
|
|
|
|
> .command {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
|
|
> button {
|
|
padding: 0.7em;
|
|
}
|
|
}
|
|
}
|
|
</style>
|