This commit is contained in:
Jiang Yio 2023-05-01 19:32:23 -04:00
parent a5b041ae9a
commit 00c638f7e7
3 changed files with 67 additions and 3 deletions

View File

@ -1,6 +1,7 @@
<template> <template>
<div class="container-fluid" style="padding-top: 5rem;"> <div class="container-fluid" style="padding-top: 5rem;">
<Navbar v-model:server="server" :user="user" /> <Navbar v-model:server="server" :user="user" />
<Throbber :client="client" />
<div class="container"> <div class="container">
<Login :secret="secret" v-model:client="client" v-model:server="server" v-model:user="user" /> <Login :secret="secret" v-model:client="client" v-model:server="server" v-model:user="user" />
<router-view v-if="user" :client="client"></router-view> <router-view v-if="user" :client="client"></router-view>
@ -10,6 +11,7 @@
<script> <script>
import Navbar from './Navbar.vue'; import Navbar from './Navbar.vue';
import Throbber from './Throbber.vue';
import Login from './Login.vue'; import Login from './Login.vue';
import RouteSchedule from './RouteSchedule.vue'; import RouteSchedule from './RouteSchedule.vue';
import RoutePatientLookup from './RoutePatientLookup.vue'; import RoutePatientLookup from './RoutePatientLookup.vue';
@ -21,7 +23,7 @@
export default { export default {
components: { components: {
Navbar, Login Navbar, Throbber, Login
}, },
props: { props: {
secret: String secret: String

57
htdocs/Throbber.vue Normal file
View File

@ -0,0 +1,57 @@
<template>
<div :class="{ connected, idle }" />
</template>
<style scoped>
div {
position: fixed;
top: 59px;
right: 0;
left: 0;
height: 0.5rem;
z-index: 1030;
background-color: #dc3545;
}
div.connected {
background-color: #0d6efd;
background-image: repeating-linear-gradient(
-45deg,
rgba(255, 255, 255, 0.1),
rgba(255, 255, 255, 0.1) 10px,
rgba(0, 0, 0, 0.1) 10px,
rgba(0, 0, 0, 0.1) 20px
);
background-size: 200% 200%;
animation: barberpole 60s linear infinite;
animation-direction: reverse;
}
div.idle {
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.5s, opacity 0.5s linear;
}
@keyframes barberpole {
100% {
background-position: 100% 100%;
}
}
</style>
<script>
export default {
props: {
client: {
type: Object,
default: null
}
},
computed: {
connected() {
return (this.client) && (this.client.status) && (this.client.status.connected);
},
idle() {
return this.connected ? this.client.status.requests < 1 : false;
}
}
};
</script>

View File

@ -284,7 +284,7 @@ export function Client(cid, secret) {
this.secret = secret; this.secret = secret;
this.cid = cid; this.cid = cid;
this.status = reactive({ connected: true }); this.status = reactive({ connected: true, requests: 0 });
this.close = function() { this.close = function() {
console.log('CLOSE', cid); console.log('CLOSE', cid);
@ -298,7 +298,12 @@ export function Client(cid, secret) {
if(body.params) Array.prototype.push.apply(body.params, params); if(body.params) Array.prototype.push.apply(body.params, params);
else body.params = params; else body.params = params;
} }
var res = await vista.call(cid, body); this.status.requests++;
try {
var res = await vista.call(cid, body);
} finally {
this.status.requests--;
}
if((res.error) && (res.error.type == 'ConnectionResetError')) this.close(); if((res.error) && (res.error.type == 'ConnectionResetError')) this.close();
res._request = body; res._request = body;
return res; return res;