瀏覽代碼

chore: make class to get the device form factor

Shishkevich D. 2 周之前
父節點
當前提交
6f4eefe601
共有 5 個文件被更改,包括 11 次插入6 次删除
  1. 6 0
      web/assets/js/util/index.js
  2. 1 2
      web/html/common/qrcode_modal.html
  3. 2 2
      web/html/xui/inbounds.html
  4. 1 1
      web/html/xui/index.html
  5. 1 1
      web/html/xui/xray.html

+ 6 - 0
web/assets/js/util/index.js

@@ -780,4 +780,10 @@ class LanguageManager {
     
         return languageFilter.length > 0;
     }    
+}
+
+class DeviceUtils {
+    static isMobile() {
+        return window.innerWidth <= 768;
+    }
 }

+ 1 - 2
web/html/common/qrcode_modal.html

@@ -1,6 +1,6 @@
 {{define "qrcodeModal"}}
 <a-modal id="qrcode-modal" v-model="qrModal.visible" :title="qrModal.title"
-    :dialog-style="isMobileQr ? { top: '18px' } : {}"
+    :dialog-style="DeviceUtils.isMobile() ? { top: '18px' } : {}"
     :closable="true"
     :class="themeSwitcher.currentTheme"
     :footer="null" width="fit-content">
@@ -35,7 +35,6 @@
 </a-modal>
 
 <script>
-  const isMobileQr = window.innerWidth <= 768;
   const qrModal = {
     title: '',
     dbInbound: new DBInbound(),

+ 2 - 2
web/html/xui/inbounds.html

@@ -709,7 +709,7 @@
             showAlert: false,
             ipLimitEnable: false,
             pageSize: 50,
-            isMobile: window.innerWidth <= 768,
+            isMobile: DeviceUtils.isMobile(),
         },
         methods: {
             loading(spinning = true) {
@@ -1473,7 +1473,7 @@
                 return false
             },
             onResize() {
-                this.isMobile = window.innerWidth <= 768;
+              this.isMobile = DeviceUtils.isMobile();
             }
         },
         watch: {

+ 1 - 1
web/html/xui/index.html

@@ -601,7 +601,7 @@
             loadingTip: '{{ i18n "loading"}}',
             showAlert: false,
             showIp: false,
-            isMobile: window.innerWidth <= 768
+            isMobile: DeviceUtils.isMobile()
         },
         methods: {
             loading(spinning, tip = '{{ i18n "loading"}}') {

+ 1 - 1
web/html/xui/xray.html

@@ -877,7 +877,7 @@
             refreshing: false,
             restartResult: '',
             showAlert: false,
-            isMobile: window.innerWidth <= 768,
+            isMobile: DeviceUtils.isMobile(),
             advSettings: 'xraySetting',
             obsSettings: '',
             cm: null,