This commit is contained in:
Klemek
2025-03-19 11:50:01 +01:00
parent 3145fdd211
commit 420518ba6e
5 changed files with 24 additions and 1 deletions
+2 -1
View File
@@ -14,5 +14,6 @@
* [ ] Fix turn server settings to work on all servers
* [ ] Fix edge cases
* [x] DaisyUI redesign
* [ ] QRCode
* [x] QRCode
* [ ] More cleaning
* [ ] Multiple files
+1
View File
@@ -11,6 +11,7 @@ export default [
...globals.browser,
Peer: "readonly",
lucide: "readonly",
QRCode: "readonly",
},
},
},
+3
View File
@@ -7,6 +7,7 @@
<link rel="stylesheet" href="material-colors.css" />
<script src="https://cdn.jsdelivr.net/npm/peerjs@1.5.4/dist/peerjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lucide@0/dist/umd/lucide.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/qrcode-js-package@1/qrcode.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/themes.css" rel="stylesheet" type="text/css" />
@@ -63,6 +64,8 @@
<label for="file-input" class="btn btn-primary w-full"><i icon="file-up"></i> Select file</label>
<input @change="onFileChange" id="file-input" type="file" class="hidden" />
</div>
<div ref="qrcode" id="qrcode" :class="serverIsReady ? '' : 'hidden'" class="w-full mt-2">
</div>
<div v-if="serverIsReady" @click="onShare" class="mt-2 w-full btn btn-primary">
<i icon="share-2"></i> {{ shareText }}
</div>
+11
View File
@@ -10,6 +10,16 @@ const utils = {
},
});
},
makeQrCode(element, text) {
return new QRCode(element, {
text,
width: 1024,
height: 1024,
colorDark: "#ffffff",
colorLight: "#00000000",
correctLevel: QRCode.CorrectLevel.L,
});
},
userAgent(raw) {
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Browser_detection_using_the_user_agent#which_part_of_the_user_agent_contains_the_information_you_are_looking_for
const userAgents = [
@@ -341,6 +351,7 @@ const app = createApp({
this.error = null;
if (this.isServer) {
this.server.url = `${window.location.href}?s=${id}`;
utils.makeQrCode(this.$refs.qrcode, this.server.url);
} else {
this.clientOpenConnection();
}
+7
View File
@@ -20,3 +20,10 @@ h6 .lucide {
.hero {
background-image: url(./background.jpg);
}
#qrcode img,
#qrcode canvas {
object-fit: fill;
aspect-ratio: 1 / 1;
width: 100%;
}