refactor web dir

This commit is contained in:
csf 2022-05-17 22:51:40 +08:00
parent 7a3e95eddd
commit 4887cdb756
8 changed files with 53 additions and 47 deletions

View File

@ -2,8 +2,7 @@ assets
js/src/gen_js_from_hbb.ts
js/src/message.ts
js/src/rendezvous.ts
ogvjs-1.8.6
ogvjs*
libopus.js
libopus.wasm
yuv-canvas-1.2.6.js
.yarn
yuv-canvas*

View File

@ -1,5 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<!--
If you are serving your web app in a path other than the root, change the
@ -31,11 +32,11 @@
<title>RustDesk</title>
<link rel="manifest" href="manifest.json">
<script src="ogvjs-1.8.6/ogv.js"></script>
<script src="yuv.js"></script>
<script src="libs/ogvjs-1.8.6/ogv.js"></script>
<script src="libs/yuv.js"></script>
<script type="module" crossorigin src="js/dist/index.js"></script>
<link rel="modulepreload" href="js/dist/vendor.js">
<script src="yuv-canvas-1.2.6.js"></script>
<script src="libs/yuv-canvas-1.2.6.js"></script>
<style>
.loading {
display: flex;
@ -52,7 +53,7 @@
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border: 15px solid ;
border: 15px solid;
border-top: 16px solid #024eff;
border-right: 16px solid white;
border-bottom: 16px solid #024eff;
@ -67,6 +68,7 @@
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
@ -76,6 +78,7 @@
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
@ -83,10 +86,11 @@
</style>
</head>
<body>
<div class="loading">
<div class="loading">
<div class="loader"></div>
</div>
</div>
<!-- This script installs service_worker.js to provide PWA functionality to
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
@ -154,10 +158,10 @@
loadMainDartJs();
}
</script>
<script src="assets/firebase-app.js?8.10.1"></script>
<script src="assets/firebase-analytics.js?8.10.1"></script>
<script src="libs/firebase-app.js?8.10.1"></script>
<script src="libs/firebase-analytics.js?8.10.1"></script>
<script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
@ -174,6 +178,7 @@
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</script>
</body>
</html>

View File

@ -6,3 +6,4 @@ dist-ssr
*log
ogvjs
.vscode
.yarn

View File

@ -1,15 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg?v2" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="ogvjs-1.8.6/ogv.js"></script>
<script src="./yuv-canvas-1.2.6.js"></script>
<title>Vite App</title>
</head>
<body>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</body>
</html>