Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-24 12:57:37 +0300
committerShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-24 12:57:37 +0300
commit14253c35864828458ef3eeecb05591a7ae6e641e (patch)
tree0689a64cc3c2224baf5e26bdc91faad6813b34bb /web/html/common/qrcode_modal.html
parent7b15274c842b31e8caded3e7f272237f31824852 (diff)
chore: moving the modals to a separate directory
Diffstat (limited to 'web/html/common/qrcode_modal.html')
-rw-r--r--web/html/common/qrcode_modal.html161
1 files changed, 0 insertions, 161 deletions
diff --git a/web/html/common/qrcode_modal.html b/web/html/common/qrcode_modal.html
deleted file mode 100644
index 93d66fc2..00000000
--- a/web/html/common/qrcode_modal.html
+++ /dev/null
@@ -1,161 +0,0 @@
-{{define "qrcodeModal"}}
-<a-modal id="qrcode-modal" v-model="qrModal.visible" :title="qrModal.title"
- :dialog-style="DeviceUtils.isMobile() ? { top: '18px' } : {}"
- :closable="true"
- :class="themeSwitcher.currentTheme"
- :footer="null" width="fit-content">
- <tr-qr-modal class="qr-modal">
- <template v-if="app.subSettings.enable && qrModal.subId">
- <tr-qr-box class="qr-box">
- <a-tag color="purple" class="qr-tag"><span>{{ i18n "pages.settings.subSettings"}}</span></a-tag>
- <tr-qr-bg class="qr-bg-sub">
- <tr-qr-bg-inner class="qr-bg-sub-inner">
- <canvas @click="copy(genSubLink(qrModal.client.subId))" id="qrCode-sub" class="qr-cv"></canvas>
- </tr-qr-bg-inner>
- </tr-qr-bg>
- </tr-qr-box>
- <tr-qr-box class="qr-box">
- <a-tag color="purple" class="qr-tag"><span>{{ i18n "pages.settings.subSettings"}} Json</span></a-tag>
- <tr-qr-bg class="qr-bg-sub">
- <tr-qr-bg-inner class="qr-bg-sub-inner">
- <canvas @click="copy(genSubJsonLink(qrModal.client.subId))" id="qrCode-subJson" class="qr-cv"></canvas>
- </tr-qr-bg-inner>
- </tr-qr-bg>
- </tr-qr-box>
- </template>
- <template v-for="(row, index) in qrModal.qrcodes">
- <tr-qr-box class="qr-box">
- <a-tag color="green" class="qr-tag"><span>[[ row.remark ]]</span></a-tag>
- <tr-qr-bg class="qr-bg">
- <canvas @click="copy(row.link)" :id="'qrCode-'+index" class="qr-cv"></canvas>
- </tr-qr-bg>
- </tr-qr-box>
- </template>
- </tr-qr-modal>
-</a-modal>
-
-<script>
- const qrModal = {
- title: '',
- dbInbound: new DBInbound(),
- client: null,
- qrcodes: [],
- visible: false,
- subId: '',
- show: function(title = '', dbInbound, client) {
- this.title = title;
- this.dbInbound = dbInbound;
- this.inbound = dbInbound.toInbound();
- this.client = client;
- this.subId = '';
- this.qrcodes = [];
- if (this.inbound.protocol == Protocols.WIREGUARD) {
- this.inbound.genInboundLinks(dbInbound.remark).split('\r\n').forEach((l, index) => {
- this.qrcodes.push({
- remark: "Peer " + (index + 1),
- link: l
- });
- });
- } else {
- this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, client).forEach(l => {
- this.qrcodes.push({
- remark: l.remark,
- link: l.link
- });
- });
- }
- this.visible = true;
- },
- close: function() {
- this.visible = false;
- },
- };
- const qrModalApp = new Vue({
- delimiters: ['[[', ']]'],
- el: '#qrcode-modal',
- data: {
- qrModal: qrModal,
- },
- methods: {
- copy(content) {
- ClipboardManager
- .copyText(content)
- .then(() => {
- app.$message.success('{{ i18n "copied" }}')
- })
- },
- setQrCode(elementId, content) {
- new QRious({
- element: document.querySelector('#' + elementId),
- size: 400,
- value: content,
- background: 'white',
- backgroundAlpha: 0,
- foreground: 'black',
- padding: 2,
- level: 'L'
- });
- },
- genSubLink(subID) {
- return app.subSettings.subURI + subID;
- },
- genSubJsonLink(subID) {
- return app.subSettings.subJsonURI + subID;
- },
- revertOverflow() {
- const elements = document.querySelectorAll(".qr-tag");
- elements.forEach((element) => {
- element.classList.remove("tr-marquee");
- element.children[0].style.animation = '';
- while (element.children.length > 1) {
- element.removeChild(element.lastChild);
- }
- });
- }
- },
- updated() {
- if (this.qrModal.visible) {
- fixOverflow();
- } else {
- this.revertOverflow();
- }
- if (qrModal.client && qrModal.client.subId) {
- qrModal.subId = qrModal.client.subId;
- this.setQrCode("qrCode-sub", this.genSubLink(qrModal.subId));
- this.setQrCode("qrCode-subJson", this.genSubJsonLink(qrModal.subId));
- }
- qrModal.qrcodes.forEach((element, index) => {
- this.setQrCode("qrCode-" + index, element.link);
- });
- }
- });
-
- function fixOverflow() {
- const elements = document.querySelectorAll(".qr-tag");
- elements.forEach((element) => {
- function isElementOverflowing(element) {
- const overflowX = element.offsetWidth < element.scrollWidth,
- overflowY = element.offsetHeight < element.scrollHeight;
- return overflowX || overflowY;
- }
-
- function wrapContentsInMarquee(element) {
- element.classList.add("tr-marquee");
- element.children[0].style.animation = `move-ltr ${
- (element.children[0].clientWidth / element.clientWidth) * 5
- }s ease-in-out infinite`;
- const marqueeText = element.children[0];
- if (element.children.length < 2) {
- for (let i = 0; i < 1; i++) {
- const marqueeText = element.children[0].cloneNode(true);
- element.children[0].after(marqueeText);
- }
- }
- }
- if (isElementOverflowing(element)) {
- wrapContentsInMarquee(element);
- }
- });
- }
-</script>
-{{end}}