inbound_info_modal.html 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. {{define "inboundInfoModal"}}
  2. <a-modal id="inbound-info-modal" v-model="infoModal.visible" title='{{ i18n "pages.inbounds.details"}}' :closable="true" :mask-closable="true" :footer="null" width="600px" :class="themeSwitcher.currentTheme">
  3. <a-row>
  4. <a-col :xs="24" :md="12">
  5. <table>
  6. <tr>
  7. <td>{{ i18n "protocol" }}</td>
  8. <td>
  9. <a-tag color="purple">[[ dbInbound.protocol ]]</a-tag>
  10. </td>
  11. </tr>
  12. <tr>
  13. <td>{{ i18n "pages.inbounds.address" }}</td>
  14. <td>
  15. <a-tooltip :title="[[ dbInbound.address ]]">
  16. <a-tag class="info-large-tag">[[ dbInbound.address ]]</a-tag>
  17. </a-tooltip>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td>{{ i18n "pages.inbounds.port" }}</td>
  22. <td>
  23. <a-tag>[[ dbInbound.port ]]</a-tag>
  24. </td>
  25. </tr>
  26. </table>
  27. </a-col>
  28. <a-col :xs="24" :md="12">
  29. <template v-if="dbInbound.isVMess || dbInbound.isVLess || dbInbound.isTrojan || dbInbound.isSS">
  30. <table>
  31. <tr>
  32. <td>{{ i18n "transmission" }}</td>
  33. <td>
  34. <a-tag color="green">[[ inbound.network ]]</a-tag>
  35. </td>
  36. </tr>
  37. <template v-if="inbound.isTcp || inbound.isWs || inbound.isH2 || inbound.isHttpupgrade || inbound.isSplithttp">
  38. <tr>
  39. <td>{{ i18n "host" }}</td>
  40. <td v-if="inbound.host">
  41. <a-tooltip :title="[[ inbound.host ]]">
  42. <a-tag class="info-large-tag">[[ inbound.host ]]</a-tag>
  43. </a-tooltip>
  44. </td>
  45. <td v-else>
  46. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  47. </td>
  48. </tr>
  49. </tr>
  50. <tr>
  51. <td>{{ i18n "path" }}</td>
  52. <td v-if="inbound.path">
  53. <a-tooltip :title="[[ inbound.path ]]">
  54. <a-tag class="info-large-tag">[[ inbound.path ]]</a-tag>
  55. </a-tooltip>
  56. <td v-else>
  57. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  58. </td>
  59. </tr>
  60. </template>
  61. <template v-if="inbound.isQuic">
  62. <tr>
  63. <td>quic {{ i18n "encryption" }}</td>
  64. <td>
  65. <a-tag>[[ inbound.quicSecurity ]]</a-tag>
  66. </td>
  67. </tr>
  68. <tr>
  69. <td>quic {{ i18n "password" }}</td>
  70. <td>
  71. <a-tag>[[ inbound.quicKey ]]</a-tag>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td>quic {{ i18n "camouflage" }}</td>
  76. <td>
  77. <a-tag>[[ inbound.quicType ]]</a-tag>
  78. </td>
  79. </tr>
  80. </template>
  81. <template v-if="inbound.isKcp">
  82. <tr>
  83. <td>kcp {{ i18n "encryption" }}</td>
  84. <td>
  85. <a-tag>[[ inbound.kcpType ]]</a-tag>
  86. </td>
  87. </tr>
  88. <tr>
  89. <td>kcp {{ i18n "password" }}</td>
  90. <td>
  91. <a-tag>[[ inbound.kcpSeed ]]</a-tag>
  92. </td>
  93. </tr>
  94. </template>
  95. <template v-if="inbound.isGrpc">
  96. <tr>
  97. <td>grpc serviceName</td>
  98. <td>
  99. <a-tooltip :title="[[ inbound.serviceName ]]">
  100. <a-tag class="info-large-tag">[[ inbound.serviceName ]]</a-tag>
  101. </a-tooltip>
  102. <tr>
  103. <td>grpc multiMode</td>
  104. <td>
  105. <a-tag>[[ inbound.stream.grpc.multiMode ]]</a-tag>
  106. </td>
  107. </tr>
  108. </template>
  109. </table>
  110. </template>
  111. </a-col>
  112. <template v-if="dbInbound.hasLink()">
  113. {{ i18n "security" }}
  114. <a-tag :color="inbound.stream.security == 'none' ? 'red' : 'green'">[[ inbound.stream.security ]]</a-tag>
  115. <br />
  116. <template v-if="inbound.stream.security != 'none'">
  117. {{ i18n "domainName" }}
  118. <a-tag v-if="inbound.serverName" :color="inbound.serverName ? 'green' : 'orange'">[[ inbound.serverName ? inbound.serverName : '' ]]</a-tag>
  119. <a-tag v-else color="orange">{{ i18n "none" }}</a-tag>
  120. </template>
  121. </template>
  122. <table v-if="dbInbound.isSS" style="margin-bottom: 10px; width: 100%;">
  123. <tr>
  124. <td>{{ i18n "encryption" }}</td>
  125. <td>
  126. <a-tag color="green">[[ inbound.settings.method ]]</a-tag>
  127. </td>
  128. </tr>
  129. <tr v-if="inbound.isSS2022">
  130. <td>{{ i18n "password" }}</td>
  131. <td>
  132. <a-tooltip :title="[[ inbound.settings.password ]]">
  133. <a-tag class="info-large-tag">[[ inbound.settings.password ]]</a-tag>
  134. </a-tooltip>
  135. </td>
  136. </tr>
  137. <tr>
  138. <td>{{ i18n "pages.inbounds.network" }}</td>
  139. <td>
  140. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  141. </td>
  142. </tr>
  143. </table>
  144. <template v-if="infoModal.clientSettings">
  145. <a-divider>{{ i18n "pages.inbounds.client" }}</a-divider>
  146. <table style="margin-bottom: 10px;">
  147. <tr>
  148. <td>{{ i18n "pages.inbounds.email" }}</td>
  149. <td v-if="infoModal.clientSettings.email">
  150. <a-tag color="green">[[ infoModal.clientSettings.email ]]</a-tag>
  151. </td>
  152. <td v-else>
  153. <a-tag color="red">{{ i18n "none" }}</a-tag>
  154. </td>
  155. </tr>
  156. <tr v-if="infoModal.clientSettings.id">
  157. <td>ID</td>
  158. <td>
  159. <a-tag>[[ infoModal.clientSettings.id ]]</a-tag>
  160. </td>
  161. </tr>
  162. <tr v-if="infoModal.inbound.canEnableTlsFlow()">
  163. <td>Flow</td>
  164. <td v-if="infoModal.clientSettings.flow">
  165. <a-tag>[[ infoModal.clientSettings.flow ]]</a-tag>
  166. </td>
  167. <td v-else>
  168. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  169. </td>
  170. </tr>
  171. <tr v-if="infoModal.inbound.xtls">
  172. <td>Flow</td>
  173. <td v-if="infoModal.clientSettings.flow">
  174. <a-tag>[[ infoModal.clientSettings.flow ]]</a-tag>
  175. </td>
  176. <td v-else>
  177. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  178. </td>
  179. </tr>
  180. <tr v-if="infoModal.clientSettings.password">
  181. <td>{{ i18n "password" }}</td>
  182. <td>
  183. <a-tooltip :title="[[ infoModal.clientSettings.password ]]">
  184. <a-tag class="info-large-tag">[[ infoModal.clientSettings.password ]]</a-tag>
  185. </a-tooltip>
  186. </td>
  187. </tr>
  188. <tr>
  189. <td>{{ i18n "status" }}</td>
  190. <td>
  191. <a-tag v-if="isEnable" color="green">{{ i18n "enabled" }}</a-tag>
  192. <a-tag v-else>{{ i18n "disabled" }}</a-tag>
  193. <a-tag v-if="!isActive" color="red">{{ i18n "depleted" }}</a-tag>
  194. </td>
  195. </tr>
  196. <tr v-if="infoModal.clientStats">
  197. <td>{{ i18n "usage" }}</td>
  198. <td>
  199. <a-tag color="green">[[ sizeFormat(infoModal.clientStats.up + infoModal.clientStats.down) ]]</a-tag>
  200. <a-tag>↑ [[ sizeFormat(infoModal.clientStats.up) ]] / [[ sizeFormat(infoModal.clientStats.down) ]] ↓</a-tag>
  201. </td>
  202. </tr>
  203. </table>
  204. <table style="display: inline-table; margin-block: 10px; width: 100%; text-align: center;">
  205. <tr>
  206. <th>{{ i18n "remained" }}</th>
  207. <th>{{ i18n "pages.inbounds.totalFlow" }}</th>
  208. <th>{{ i18n "pages.inbounds.expireDate" }}</th>
  209. </tr>
  210. <tr>
  211. <td>
  212. <a-tag v-if="infoModal.clientStats && infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ getRemStats() ]] </a-tag>
  213. </td>
  214. <td>
  215. <a-tag v-if="infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ sizeFormat(infoModal.clientSettings.totalGB) ]] </a-tag>
  216. <a-tag v-else color="purple" class="infinite-tag">
  217. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  218. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  219. </svg>
  220. </a-tag>
  221. </td>
  222. <td>
  223. <template v-if="infoModal.clientSettings.expiryTime > 0">
  224. <a-tag :color="usageColor(new Date().getTime(), app.expireDiff, infoModal.clientSettings.expiryTime)">
  225. <template v-if="app.datepicker === 'gregorian'">
  226. [[ DateUtil.formatMillis(infoModal.clientSettings.expiryTime) ]]
  227. </template>
  228. <template v-else>
  229. [[ DateUtil.convertToJalalian(moment(infoModal.clientSettings.expiryTime)) ]]
  230. </template>
  231. </a-tag>
  232. </template>
  233. <a-tag v-else-if="infoModal.clientSettings.expiryTime < 0" color="green">[[ infoModal.clientSettings.expiryTime / -86400000 ]] {{ i18n "pages.client.days" }}
  234. </a-tag>
  235. <a-tag v-else color="purple" class="infinite-tag">
  236. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  237. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  238. </svg>
  239. </a-tag>
  240. </td>
  241. </tr>
  242. </table>
  243. <template v-if="app.subSettings.enable && infoModal.clientSettings.subId">
  244. <a-divider>Subscription URL</a-divider>
  245. <tr-info-row class="tr-info-row">
  246. <tr-info-title class="tr-info-title">
  247. <a-tag color="purple">Subscription Link</a-tag>
  248. <a-tooltip title='{{ i18n "copy" }}'>
  249. <a-button size="small" icon="snippets" id="copy-sub-link" @click="copyToClipboard('copy-sub-link', infoModal.subLink)"></a-button>
  250. </a-tooltip>
  251. </tr-info-title>
  252. <a :href="[[ infoModal.subLink ]]" target="_blank">[[ infoModal.subLink ]]</a>
  253. </tr-info-row>
  254. <tr-info-row class="tr-info-row">
  255. <tr-info-title class="tr-info-title">
  256. <a-tag color="purple">Json Link</a-tag>
  257. <a-tooltip title='{{ i18n "copy" }}'>
  258. <a-button size="small" icon="snippets" id="copy-subJson-link" @click="copyToClipboard('copy-subJson-link', infoModal.subJsonLink)"></a-button>
  259. </a-tooltip>
  260. </tr-info-title>
  261. <a :href="[[ infoModal.subJsonLink ]]" target="_blank">[[ infoModal.subJsonLink ]]</a>
  262. </tr-info-row>
  263. </template>
  264. <template v-if="app.tgBotEnable && infoModal.clientSettings.tgId">
  265. <a-divider>Telegram ChatID</a-divider>
  266. <tr-info-row class="tr-info-row">
  267. <tr-info-title class="tr-info-title">
  268. <a-tag color="blue">[[ infoModal.clientSettings.tgId ]]</a-tag>
  269. <a-tooltip title='{{ i18n "copy" }}'>
  270. <a-button size="small" icon="snippets" id="copy-tg-link" @click="copyToClipboard('copy-tg-link', infoModal.clientSettings.tgId)"></a-button>
  271. </a-tooltip>
  272. </tr-info-title>
  273. </tr-info-row>
  274. </template>
  275. <template v-if="dbInbound.hasLink()">
  276. <a-divider>URL</a-divider>
  277. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  278. <tr-info-title class="tr-info-title">
  279. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  280. <a-tooltip title='{{ i18n "copy" }}'>
  281. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  282. </a-tooltip>
  283. </tr-info-title>
  284. <code>[[ link.link ]]</code>
  285. </tr-info-row>
  286. </template>
  287. </template>
  288. <template v-else>
  289. <template v-if="dbInbound.isSS && !inbound.isSSMultiUser">
  290. <a-divider>URL</a-divider>
  291. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  292. <tr-info-title class="tr-info-title">
  293. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  294. <a-tooltip title='{{ i18n "copy" }}'>
  295. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  296. </a-tooltip>
  297. </tr-info-title>
  298. <code>[[ link.link ]]</code>
  299. </tr-info-row>
  300. </template>
  301. <table v-if="inbound.protocol == Protocols.DOKODEMO" class="tr-info-table">
  302. <tr>
  303. <th>{{ i18n "pages.inbounds.targetAddress" }}</th>
  304. <th>{{ i18n "pages.inbounds.destinationPort" }}</th>
  305. <th>{{ i18n "pages.inbounds.network" }}</th>
  306. <th>FollowRedirect</th>
  307. </tr>
  308. <tr>
  309. <td>
  310. <a-tag color="green">[[ inbound.settings.address ]]</a-tag>
  311. </td>
  312. <td>
  313. <a-tag color="green">[[ inbound.settings.port ]]</a-tag>
  314. </td>
  315. <td>
  316. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  317. </td>
  318. <td>
  319. <a-tag color="green">[[ inbound.settings.followRedirect ]]</a-tag>
  320. </td>
  321. </tr>
  322. </table>
  323. <table v-if="dbInbound.isSocks" class="tr-info-table">
  324. <tr>
  325. <th>{{ i18n "password" }} Auth</th>
  326. <th>{{ i18n "pages.inbounds.enable" }} udp</th>
  327. <th>IP</th>
  328. </tr>
  329. <tr>
  330. <td>
  331. <a-tag color="green">[[ inbound.settings.auth ]]</a-tag>
  332. </td>
  333. <td>
  334. <a-tag color="green">[[ inbound.settings.udp]]</a-tag>
  335. </td>
  336. <td>
  337. <a-tag color="green">[[ inbound.settings.ip ]]</a-tag>
  338. </td>
  339. </tr>
  340. <template v-if="inbound.settings.auth == 'password'">
  341. <tr>
  342. <td></td>
  343. <td>{{ i18n "username" }}</td>
  344. <td>{{ i18n "password" }}</td>
  345. </tr>
  346. <tr v-for="account,index in inbound.settings.accounts">
  347. <td>[[ index ]]</td>
  348. <td>
  349. <a-tag color="green">[[ account.user ]]</a-tag>
  350. </td>
  351. <td>
  352. <a-tag color="green">[[ account.pass ]]</a-tag>
  353. </td>
  354. </tr>
  355. </template>
  356. </table>
  357. <table v-if="dbInbound.isHTTP" class="tr-info-table">
  358. <tr>
  359. <th></th>
  360. <th>{{ i18n "username" }}</th>
  361. <th>{{ i18n "password" }}</th>
  362. </tr>
  363. <tr v-for="account,index in inbound.settings.accounts">
  364. <td>[[ index ]]</td>
  365. <td>
  366. <a-tag color="green">[[ account.user ]]</a-tag>
  367. </td>
  368. <td>
  369. <a-tag color="green">[[ account.pass ]]</a-tag>
  370. </td>
  371. </tr>
  372. </table>
  373. <table v-if="dbInbound.isWireguard" class="tr-info-table">
  374. <tr class="client-table-odd-row">
  375. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  376. <td>[[ inbound.settings.secretKey ]]</td>
  377. </tr>
  378. <tr>
  379. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  380. <td>[[ inbound.settings.pubKey ]]</td>
  381. </tr>
  382. <tr class="client-table-odd-row">
  383. <td>MTU</td>
  384. <td>[[ inbound.settings.mtu ]]</td>
  385. </tr>
  386. <tr>
  387. <td>Kernel Mode</td>
  388. <td>[[ inbound.settings.kernelMode ]]</td>
  389. </tr>
  390. <template v-for="(peer, index) in inbound.settings.peers">
  391. <tr>
  392. <td colspan="2">
  393. <a-divider>Peer [[ index + 1 ]]</a-divider>
  394. </td>
  395. </tr>
  396. <tr class="client-table-odd-row">
  397. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  398. <td>[[ peer.privateKey ]]</td>
  399. </tr>
  400. <tr>
  401. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  402. <td>[[ peer.publicKey ]]</td>
  403. </tr>
  404. <tr class="client-table-odd-row">
  405. <td>{{ i18n "pages.xray.wireguard.psk" }}</td>
  406. <td>[[ peer.psk ]]</td>
  407. </tr>
  408. <tr>
  409. <td>{{ i18n "pages.xray.wireguard.allowedIPs" }}</td>
  410. <td>[[ peer.allowedIPs.join(",") ]]</td>
  411. </tr>
  412. <tr class="client-table-odd-row">
  413. <td>Keep Alive</td>
  414. <td>[[ peer.keepAlive ]]</td>
  415. </tr>
  416. <tr>
  417. <td colspan="2">
  418. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  419. <tr-info-title class="tr-info-title">
  420. <a-tag color="blue">Config</a-tag>
  421. <a-tooltip title='{{ i18n "copy" }}'>
  422. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, infoModal.links[index])"></a-button>
  423. </a-tooltip>
  424. </tr-info-title>
  425. <div v-html="infoModal.links[index].replaceAll(`\n`,`<br />`)" style="border-radius: 1rem; padding: 0.5rem;" class="client-table-odd-row">
  426. </div>
  427. </tr-info-row>
  428. </td>
  429. </tr>
  430. </table>
  431. </template>
  432. </template>
  433. </a-modal>
  434. <script>
  435. const infoModal = {
  436. visible: false,
  437. inbound: new Inbound(),
  438. dbInbound: new DBInbound(),
  439. clientSettings: null,
  440. clientStats: [],
  441. upStats: 0,
  442. downStats: 0,
  443. clipboard: null,
  444. links: [],
  445. index: null,
  446. isExpired: false,
  447. subLink: '',
  448. subJsonLink: '',
  449. show(dbInbound, index) {
  450. this.index = index;
  451. this.inbound = dbInbound.toInbound();
  452. this.dbInbound = new DBInbound(dbInbound);
  453. this.clientSettings = this.inbound.clients ? this.inbound.clients[index] : null;
  454. this.isExpired = this.inbound.clients ? this.inbound.isExpiry(index) : this.dbInbound.isExpiry;
  455. this.clientStats = this.inbound.clients ? this.dbInbound.clientStats.find(row => row.email === this.clientSettings.email) : [];
  456. if (this.inbound.protocol == Protocols.WIREGUARD) {
  457. this.links = this.inbound.genInboundLinks(dbInbound.remark).split('\r\n')
  458. } else {
  459. this.links = this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, this.clientSettings);
  460. }
  461. if (this.clientSettings) {
  462. if (this.clientSettings.subId) {
  463. this.subLink = this.genSubLink(this.clientSettings.subId);
  464. this.subJsonLink = this.genSubJsonLink(this.clientSettings.subId);
  465. }
  466. }
  467. this.visible = true;
  468. },
  469. close() {
  470. infoModal.visible = false;
  471. },
  472. genSubLink(subID) {
  473. return app.subSettings.subURI + subID;
  474. },
  475. genSubJsonLink(subID) {
  476. return app.subSettings.subJsonURI + subID;
  477. }
  478. };
  479. const infoModalApp = new Vue({
  480. delimiters: ['[[', ']]'],
  481. el: '#inbound-info-modal',
  482. data: {
  483. infoModal,
  484. get dbInbound() {
  485. return this.infoModal.dbInbound;
  486. },
  487. get inbound() {
  488. return this.infoModal.inbound;
  489. },
  490. get isActive() {
  491. if (infoModal.clientStats) {
  492. return infoModal.clientStats.enable;
  493. }
  494. return true;
  495. },
  496. get isEnable() {
  497. if (infoModal.clientSettings) {
  498. return infoModal.clientSettings.enable;
  499. }
  500. return infoModal.dbInbound.isEnable;
  501. },
  502. },
  503. methods: {
  504. copyToClipboard(elementId, content) {
  505. this.infoModal.clipboard = new ClipboardJS('#' + elementId, {
  506. text: () => content,
  507. });
  508. this.infoModal.clipboard.on('success', () => {
  509. app.$message.success('{{ i18n "copied" }}')
  510. this.infoModal.clipboard.destroy();
  511. });
  512. },
  513. statsColor(stats) {
  514. return usageColor(stats.up + stats.down, app.trafficDiff, stats.total);
  515. },
  516. getRemStats() {
  517. remained = this.infoModal.clientStats.total - this.infoModal.clientStats.up - this.infoModal.clientStats.down;
  518. return remained > 0 ? sizeFormat(remained) : '-';
  519. },
  520. },
  521. });
  522. </script>
  523. {{end}}