qrcode_modal.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. {{define "qrcodeModal"}}
  2. <a-modal id="qrcode-modal" v-model="qrModal.visible" :title="qrModal.title"
  3. :dialog-style="isMobileQr ? { top: '18px' } : {}"
  4. :closable="true"
  5. :class="themeSwitcher.currentTheme"
  6. :footer="null" width="fit-content">
  7. <tr-qr-modal class="qr-modal">
  8. <template v-if="app.subSettings.enable && qrModal.subId">
  9. <tr-qr-box class="qr-box">
  10. <a-tag color="purple" class="qr-tag"><span>{{ i18n "pages.settings.subSettings"}}</span></a-tag>
  11. <tr-qr-bg class="qr-bg-sub">
  12. <tr-qr-bg-inner class="qr-bg-sub-inner">
  13. <canvas @click="qrModal.copy(genSubLink(qrModal.client.subId))" id="qrCode-sub" class="qr-cv"></canvas>
  14. </tr-qr-bg-inner>
  15. </tr-qr-bg>
  16. </tr-qr-box>
  17. <tr-qr-box class="qr-box">
  18. <a-tag color="purple" class="qr-tag"><span>{{ i18n "pages.settings.subSettings"}} Json</span></a-tag>
  19. <tr-qr-bg class="qr-bg-sub">
  20. <tr-qr-bg-inner class="qr-bg-sub-inner">
  21. <canvas @click="qrModal.copy(genSubJsonLink(qrModal.client.subId))" id="qrCode-subJson" class="qr-cv"></canvas>
  22. </tr-qr-bg-inner>
  23. </tr-qr-bg>
  24. </tr-qr-box>
  25. </template>
  26. <template v-for="(row, index) in qrModal.qrcodes">
  27. <tr-qr-box class="qr-box">
  28. <a-tag color="green" class="qr-tag"><span>[[ row.remark ]]</span></a-tag>
  29. <tr-qr-bg class="qr-bg">
  30. <canvas @click="qrModal.copy(row.link)" :id="'qrCode-'+index" class="qr-cv"></canvas>
  31. </tr-qr-bg>
  32. </tr-qr-box>
  33. </template>
  34. </tr-qr-modal>
  35. </a-modal>
  36. <script>
  37. const isMobileQr = window.innerWidth <= 768;
  38. const qrModal = {
  39. title: '',
  40. dbInbound: new DBInbound(),
  41. client: null,
  42. qrcodes: [],
  43. visible: false,
  44. subId: '',
  45. show: function(title = '', dbInbound, client) {
  46. this.title = title;
  47. this.dbInbound = dbInbound;
  48. this.inbound = dbInbound.toInbound();
  49. this.client = client;
  50. this.subId = '';
  51. this.qrcodes = [];
  52. if (this.inbound.protocol == Protocols.WIREGUARD) {
  53. this.inbound.genInboundLinks(dbInbound.remark).split('\r\n').forEach((l, index) => {
  54. this.qrcodes.push({
  55. remark: "Peer " + (index + 1),
  56. link: l
  57. });
  58. });
  59. } else {
  60. this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, client).forEach(l => {
  61. this.qrcodes.push({
  62. remark: l.remark,
  63. link: l.link
  64. });
  65. });
  66. }
  67. this.visible = true;
  68. },
  69. close: function() {
  70. this.visible = false;
  71. },
  72. };
  73. const qrModalApp = new Vue({
  74. delimiters: ['[[', ']]'],
  75. el: '#qrcode-modal',
  76. data: {
  77. qrModal: qrModal,
  78. },
  79. methods: {
  80. copy(content) {
  81. ClipboardManager
  82. .copyText(content)
  83. .then(() => {
  84. app.$message.success('{{ i18n "copied" }}')
  85. })
  86. },
  87. setQrCode(elementId, content) {
  88. new QRious({
  89. element: document.querySelector('#' + elementId),
  90. size: 400,
  91. value: content,
  92. background: 'white',
  93. backgroundAlpha: 0,
  94. foreground: 'black',
  95. padding: 2,
  96. level: 'L'
  97. });
  98. },
  99. genSubLink(subID) {
  100. return app.subSettings.subURI + subID;
  101. },
  102. genSubJsonLink(subID) {
  103. return app.subSettings.subJsonURI + subID;
  104. },
  105. revertOverflow() {
  106. const elements = document.querySelectorAll(".qr-tag");
  107. elements.forEach((element) => {
  108. element.classList.remove("tr-marquee");
  109. element.children[0].style.animation = '';
  110. while (element.children.length > 1) {
  111. element.removeChild(element.lastChild);
  112. }
  113. });
  114. }
  115. },
  116. updated() {
  117. if (this.qrModal.visible) {
  118. fixOverflow();
  119. } else {
  120. this.revertOverflow();
  121. }
  122. if (qrModal.client && qrModal.client.subId) {
  123. qrModal.subId = qrModal.client.subId;
  124. this.setQrCode("qrCode-sub", this.genSubLink(qrModal.subId));
  125. this.setQrCode("qrCode-subJson", this.genSubJsonLink(qrModal.subId));
  126. }
  127. qrModal.qrcodes.forEach((element, index) => {
  128. this.setQrCode("qrCode-" + index, element.link);
  129. });
  130. }
  131. });
  132. function fixOverflow() {
  133. const elements = document.querySelectorAll(".qr-tag");
  134. elements.forEach((element) => {
  135. function isElementOverflowing(element) {
  136. const overflowX = element.offsetWidth < element.scrollWidth,
  137. overflowY = element.offsetHeight < element.scrollHeight;
  138. return overflowX || overflowY;
  139. }
  140. function wrapContentsInMarquee(element) {
  141. element.classList.add("tr-marquee");
  142. element.children[0].style.animation = `move-ltr ${
  143. (element.children[0].clientWidth / element.clientWidth) * 5
  144. }s ease-in-out infinite`;
  145. const marqueeText = element.children[0];
  146. if (element.children.length < 2) {
  147. for (let i = 0; i < 1; i++) {
  148. const marqueeText = element.children[0].cloneNode(true);
  149. element.children[0].after(marqueeText);
  150. }
  151. }
  152. }
  153. if (isElementOverflowing(element)) {
  154. wrapContentsInMarquee(element);
  155. }
  156. });
  157. }
  158. </script>
  159. {{end}}