2020-02-19 18:42:36 +00:00
|
|
|
<template>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="hasDisconnected && $store.state.serverDisconnectedBehavior === 'quiet'" class="nsbbhtug" @click="resetDisconnected">
|
2022-07-20 13:24:26 +00:00
|
|
|
<div>{{ i18n.ts.disconnectedFromServer }}</div>
|
2020-02-19 18:42:36 +00:00
|
|
|
<div class="command">
|
2022-07-20 13:24:26 +00:00
|
|
|
<button class="_textButton" @click="reload">{{ i18n.ts.reload }}</button>
|
|
|
|
<button class="_textButton">{{ i18n.ts.doNothing }}</button>
|
2020-02-19 18:42:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 23:38:55 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onUnmounted } from 'vue';
|
2021-12-29 13:13:09 +00:00
|
|
|
import { stream } from '@/stream';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-02-19 18:42:36 +00:00
|
|
|
|
2022-01-15 23:38:55 +00:00
|
|
|
let hasDisconnected = $ref(false);
|
|
|
|
|
|
|
|
function onDisconnected() {
|
|
|
|
hasDisconnected = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetDisconnected() {
|
|
|
|
hasDisconnected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function reload() {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
stream.on('_disconnected_', onDisconnected);
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
stream.off('_disconnected_', onDisconnected);
|
2020-02-19 18:42:36 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-02-19 18:42:36 +00:00
|
|
|
.nsbbhtug {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 16385;
|
2023-01-10 04:50:34 +00:00
|
|
|
bottom: calc(var(--minBottomSpacing) + var(--margin));
|
|
|
|
right: var(--margin);
|
2020-02-19 18:42:36 +00:00
|
|
|
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>
|