Modifica reload anche x tablet

This commit is contained in:
Samuele Locatelli
2024-03-04 18:54:30 +01:00
parent 374dd0c318
commit 66b25571cf
6 changed files with 23 additions and 24 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.16.2403.409</Version>
<Version>6.16.2403.418</Version>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>MP_TAB3</RootNamespace>
</PropertyGroup>
+19 -3
View File
@@ -40,9 +40,25 @@
<script src="lib/WindowSize.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.js"></script>
<script src="_framework/blazor.server.js" autostart="false"></script>
@* <script src="_framework/blazor.server.js"></script> *@
@*Gestione autoriconnessione: https://github.com/dotnet/aspnetcore/issues/38305 (vedere anche https://docs.microsoft.com/it-it/aspnet/core/blazor/fundamentals/signalr?view=aspnetcore-6.0#modify-the-reconnection-handler-blazor-server)*@
<script src="_framework/blazor.server.js" autostart="false"></script>
<script>
Blazor.start({
reconnectionOptions: {
maxRetries: 600,
retryIntervalMilliseconds: 1000
},
}).then(() => {
Blazor.defaultReconnectionHandler._reconnectCallback = function (d) {
console.log("Client reconnected, waiting 5 sec and reload!");
setTimeout(function () {
document.location.reload();
}, 5000);
}
});
</script>
@* <script>
Blazor.start({
reconnectionOptions: {
@@ -68,7 +84,7 @@
});
});
</script> *@
<script>
@* <script>
Blazor.start({
reconnectionOptions: {
maxRetries: Infinity,
@@ -91,7 +107,7 @@
document.location.reload();
}
});
</script>
</script> *@
</body>
</html>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>Modulo MAPOSPEC </i>
<h4>Versione: 6.16.2403.409</h4>
<h4>Versione: 6.16.2403.418</h4>
<br /> Note di rilascio:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
6.16.2403.409
6.16.2403.418
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>6.16.2403.409</version>
<version>6.16.2403.418</version>
<url>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip</url>
<changelog>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
-17
View File
@@ -65,18 +65,6 @@
maxRetries: 600,
retryIntervalMilliseconds: 1000
},
// reconnectionHandler: {
// onConnectionDown: (options, error) => {
// console.error(error);
// // setTimeout(function () {
// // document.location.reload();
// // }, 10000);
// },
// onConnectionUp: () => {
// console.log("Client reconnected!");
// document.location.reload();
// }
// }
}).then(() => {
Blazor.defaultReconnectionHandler._reconnectCallback = function (d) {
console.log("Client reconnected, waiting 5 sec and reload!");
@@ -84,11 +72,6 @@
document.location.reload();
}, 5000);
}
// Blazor.defaultReconnectionHandler._reconnectionDisplay = {
// show: () => value.show(),
// update: (d) => value.update(d),
// rejected: (d) => document.location.reload()
// };
});
</script>