inbound_info_modal.html 20 KB

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