mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-13 09:36:05 +00:00
Ports the framework-agnostic JS from web/assets/js/ into frontend/src/
so Vue 3 pages can import what they need without relying on script-tag
globals.
- web/assets/js/util/index.js (927 lines, 21 classes) →
frontend/src/utils/legacy.js + a barrel at utils/index.js. All
classes are now named exports.
- Vue.prototype.$message in HttpUtil → direct import of `message`
from ant-design-vue (Vue 3 has no Vue.prototype).
- RandomUtil.randomShadowsocksPassword previously defaulted to
SSMethods.BLAKE3_AES_256_GCM from inbound.js, creating a circular
import. Replaced with the literal string default.
- MediaQueryMixin (Vue 2 mixin) removed. Replaced by
composables/useMediaQuery.js — Vue 3 composable returning reactive
`isMobile`.
- axios-init.js wrapped as setupAxios(); Qs global → npm `qs`.
- websocket.js exported as WebSocketClient class; the implicit
window.wsClient global is gone — pages instantiate it themselves.
- model/{inbound,outbound,dbinbound,setting,reality_targets}.js
copied with `export` added on every top-level declaration. Imports
between models and utils are wired up explicitly.
- subscription.js deferred to Phase 5 (it's a Vue 2 mount, not a util).
- App.vue smoke test exercises SizeFormatter / RandomUtil / Wireguard /
useMediaQuery so the user can verify Phase 3 with `npm run dev`.
Run `cd frontend && npm install && npm run dev` — qs was added so a
fresh install is required.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
95 lines
No EOL
2.8 KiB
JavaScript
95 lines
No EOL
2.8 KiB
JavaScript
import { ObjectUtil } from '../utils/legacy.js';
|
|
|
|
export class AllSetting {
|
|
|
|
constructor(data) {
|
|
this.webListen = "";
|
|
this.webDomain = "";
|
|
this.webPort = 2053;
|
|
this.webCertFile = "";
|
|
this.webKeyFile = "";
|
|
this.webBasePath = "/";
|
|
this.sessionMaxAge = 360;
|
|
this.pageSize = 25;
|
|
this.expireDiff = 0;
|
|
this.trafficDiff = 0;
|
|
this.remarkModel = "-ieo";
|
|
this.datepicker = "gregorian";
|
|
this.tgBotEnable = false;
|
|
this.tgBotToken = "";
|
|
this.tgBotProxy = "";
|
|
this.tgBotAPIServer = "";
|
|
this.tgBotChatId = "";
|
|
this.tgRunTime = "@daily";
|
|
this.tgBotBackup = false;
|
|
this.tgBotLoginNotify = true;
|
|
this.tgCpu = 80;
|
|
this.tgLang = "en-US";
|
|
this.twoFactorEnable = false;
|
|
this.twoFactorToken = "";
|
|
this.xrayTemplateConfig = "";
|
|
this.subEnable = true;
|
|
this.subJsonEnable = false;
|
|
this.subTitle = "";
|
|
this.subSupportUrl = "";
|
|
this.subProfileUrl = "";
|
|
this.subAnnounce = "";
|
|
this.subEnableRouting = true;
|
|
this.subRoutingRules = "";
|
|
this.subListen = "";
|
|
this.subPort = 2096;
|
|
this.subPath = "/sub/";
|
|
this.subJsonPath = "/json/";
|
|
this.subClashEnable = true;
|
|
this.subClashPath = "/clash/";
|
|
this.subDomain = "";
|
|
this.externalTrafficInformEnable = false;
|
|
this.externalTrafficInformURI = "";
|
|
this.restartXrayOnClientDisable = true;
|
|
this.subCertFile = "";
|
|
this.subKeyFile = "";
|
|
this.subUpdates = 12;
|
|
this.subEncrypt = true;
|
|
this.subShowInfo = true;
|
|
this.subURI = "";
|
|
this.subJsonURI = "";
|
|
this.subClashURI = "";
|
|
this.subJsonFragment = "";
|
|
this.subJsonNoises = "";
|
|
this.subJsonMux = "";
|
|
this.subJsonRules = "";
|
|
|
|
this.timeLocation = "Local";
|
|
|
|
// LDAP settings
|
|
this.ldapEnable = false;
|
|
this.ldapHost = "";
|
|
this.ldapPort = 389;
|
|
this.ldapUseTLS = false;
|
|
this.ldapBindDN = "";
|
|
this.ldapPassword = "";
|
|
this.ldapBaseDN = "";
|
|
this.ldapUserFilter = "(objectClass=person)";
|
|
this.ldapUserAttr = "mail";
|
|
this.ldapVlessField = "vless_enabled";
|
|
this.ldapSyncCron = "@every 1m";
|
|
this.ldapFlagField = "";
|
|
this.ldapTruthyValues = "true,1,yes,on";
|
|
this.ldapInvertFlag = false;
|
|
this.ldapInboundTags = "";
|
|
this.ldapAutoCreate = false;
|
|
this.ldapAutoDelete = false;
|
|
this.ldapDefaultTotalGB = 0;
|
|
this.ldapDefaultExpiryDays = 0;
|
|
this.ldapDefaultLimitIP = 0;
|
|
|
|
if (data == null) {
|
|
return
|
|
}
|
|
ObjectUtil.cloneProps(this, data);
|
|
}
|
|
|
|
equals(other) {
|
|
return ObjectUtil.equals(this, other);
|
|
}
|
|
} |