diff options
Diffstat (limited to 'web/html')
| -rw-r--r-- | web/html/component/aClientTable.html | 4 | ||||
| -rw-r--r-- | web/html/form/client.html | 112 | ||||
| -rw-r--r-- | web/html/form/inbound.html | 8 | ||||
| -rw-r--r-- | web/html/form/protocol/hysteria.html | 32 | ||||
| -rw-r--r-- | web/html/form/stream/stream_hysteria.html | 75 | ||||
| -rw-r--r-- | web/html/form/stream/stream_settings.html | 8 | ||||
| -rw-r--r-- | web/html/form/tls_settings.html | 21 | ||||
| -rw-r--r-- | web/html/inbounds.html | 483 | ||||
| -rw-r--r-- | web/html/modals/client_bulk_modal.html | 104 | ||||
| -rw-r--r-- | web/html/modals/client_modal.html | 16 |
10 files changed, 626 insertions, 237 deletions
diff --git a/web/html/component/aClientTable.html b/web/html/component/aClientTable.html index d9a9b5f5..0e32d45c 100644 --- a/web/html/component/aClientTable.html +++ b/web/html/component/aClientTable.html @@ -30,7 +30,7 @@ </a-tooltip> </template> <template slot="enable" slot-scope="text, client, index"> - <a-switch v-model="client.enable" @change="switchEnableClient(record.id,client)"></a-switch> + <a-switch v-model="client.enable" @change="switchEnableClient(record.id, client, $event)"></a-switch> </template> <template slot="online" slot-scope="text, client, index"> <a-popover :overlay-class-name="themeSwitcher.currentTheme"> @@ -165,7 +165,7 @@ <span :style="{ color: '#FF4D4F' }"> {{ i18n "delete"}}</span> </a-menu-item> <a-menu-item> - <a-switch v-model="client.enable" size="small" @change="switchEnableClient(record.id,client)"></a-switch> + <a-switch v-model="client.enable" size="small" @change="switchEnableClient(record.id, client, $event)"></a-switch> {{ i18n "enable"}} </a-menu-item> </a-menu> diff --git a/web/html/form/client.html b/web/html/form/client.html index 908f28d2..da19fe8f 100644 --- a/web/html/form/client.html +++ b/web/html/form/client.html @@ -1,5 +1,6 @@ {{define "form/client"}} -<a-form layout="horizontal" v-if="client" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> +<a-form layout="horizontal" v-if="client" :colon="false" + :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label='{{ i18n "pages.inbounds.enable" }}'> <a-switch v-model="client.enable"></a-switch> </a-form-item> @@ -10,38 +11,62 @@ <span>{{ i18n "pages.inbounds.emailDesc" }}</span> </template> {{ i18n "pages.inbounds.email" }} - <a-icon type="sync" @click="client.email = RandomUtil.randomLowerAndNum(9)"></a-icon> + <a-icon type="sync" + @click="client.email = RandomUtil.randomLowerAndNum(9)"></a-icon> </a-tooltip> </template> <a-input v-model.trim="client.email"></a-input> </a-form-item> - <a-form-item v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS"> + <a-form-item + v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS"> <template slot="label"> <a-tooltip> <template slot="title"> <span>{{ i18n "reset" }}</span> </template> {{ i18n "password" }} - <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS" @click="client.password = RandomUtil.randomShadowsocksPassword(inbound.settings.method)" type="sync"></a-icon> - <a-icon v-if="inbound.protocol === Protocols.TROJAN" @click="client.password = RandomUtil.randomSeq(10)"type="sync"> </a-icon> + <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS" + @click="client.password = RandomUtil.randomShadowsocksPassword(inbound.settings.method)" + type="sync"></a-icon> + <a-icon v-if="inbound.protocol === Protocols.TROJAN" + @click="client.password = RandomUtil.randomSeq(10)" + type="sync"> </a-icon> </a-tooltip> </template> <a-input v-model.trim="client.password"></a-input> </a-form-item> - <a-form-item v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS"> + <a-form-item v-if="inbound.protocol === Protocols.HYSTERIA"> <template slot="label"> <a-tooltip> <template slot="title"> <span>{{ i18n "reset" }}</span> </template> - ID <a-icon @click="client.id = RandomUtil.randomUUID()" type="sync"></a-icon> + Auth Password + <a-icon @click="client.auth = RandomUtil.randomSeq(10)" + type="sync"></a-icon> + </a-tooltip> + </template> + <a-input v-model.trim="client.auth"></a-input> + </a-form-item> + <a-form-item + v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS"> + <template slot="label"> + <a-tooltip> + <template slot="title"> + <span>{{ i18n "reset" }}</span> + </template> + ID <a-icon @click="client.id = RandomUtil.randomUUID()" + type="sync"></a-icon> </a-tooltip> </template> <a-input v-model.trim="client.id"></a-input> </a-form-item> - <a-form-item v-if="inbound.protocol === Protocols.VMESS" label='{{ i18n "security" }}'> - <a-select v-model="client.security" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key ]]</a-select-option> + <a-form-item v-if="inbound.protocol === Protocols.VMESS" + label='{{ i18n "security" }}'> + <a-select v-model="client.security" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key + ]]</a-select-option> </a-select> </a-form-item> <a-form-item v-if="client.email && app.subSettings?.enable"> @@ -51,7 +76,8 @@ <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span> </template> Subscription - <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon> + <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" + type="sync"></a-icon> </a-tooltip> </template> <a-input v-model.trim="client.subId"></a-input> @@ -66,7 +92,8 @@ <a-icon type="question-circle"></a-icon> </a-tooltip> </template> - <a-input-number :style="{ width: '50%' }" v-model.number="client.tgId" min="0"></a-input-number> + <a-input-number :style="{ width: '50%' }" v-model.number="client.tgId" + min="0"></a-input-number> </a-form-item> <a-form-item v-if="client.email" label='{{ i18n "comment" }}'> <a-input v-model.trim="client.comment"></a-input> @@ -77,19 +104,21 @@ <template slot="title"> <span>{{ i18n "pages.inbounds.IPLimitDesc"}}</span> </template> - <span>{{ i18n "pages.inbounds.IPLimit"}} </span> + <span>{{ i18n "pages.inbounds.IPLimit"}} </span> <a-icon type="question-circle"></a-icon> </a-tooltip> </template> - <a-input-number v-model.number="client.limitIp" min="0"></a-input-number> + <a-input-number v-model.number="client.limitIp" + min="0"></a-input-number> </a-form-item> - <a-form-item v-if="app.ipLimitEnable && client.limitIp > 0 && client.email && isEdit"> + <a-form-item + v-if="app.ipLimitEnable && client.limitIp > 0 && client.email && isEdit"> <template slot="label"> <a-tooltip> <template slot="title"> <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span> </template> - <span>{{ i18n "pages.inbounds.IPLimitlog" }} </span> + <span>{{ i18n "pages.inbounds.IPLimitlog" }} </span> <a-icon type="question-circle"></a-icon> </a-tooltip> </template> @@ -98,19 +127,24 @@ <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span> </template> <span :style="{ color: '#FF4D4F' }"> - <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon> + <a-icon type="delete" + @click="clearDBClientIps(client.email)"></a-icon> </span> </a-tooltip> <a-form layout="block"> - <a-textarea id="clientIPs" readonly @click="getDBClientIps(client.email)" placeholder="Click To Get IPs" + <a-textarea id="clientIPs" readonly + @click="getDBClientIps(client.email)" + placeholder="Click To Get IPs" :auto-size="{ minRows: 5, maxRows: 10 }"> </a-textarea> </a-form> </a-form-item> <a-form-item v-if="inbound.canEnableTlsFlow()" label='Flow'> - <a-select v-model="client.flow" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option value="" selected>{{ i18n "none" }}</a-select-option> - <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option> + <a-select v-model="client.flow" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option value selected>{{ i18n "none" }}</a-select-option> + <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key + ]]</a-select-option> </a-select> </a-form-item> <a-form-item> @@ -123,45 +157,57 @@ <a-icon type="question-circle"></a-icon> </a-tooltip> </template> - <a-input-number v-model.number="client._totalGB" :min="0"></a-input-number> + <a-input-number v-model.number="client._totalGB" + :min="0"></a-input-number> </a-form-item> <a-form-item v-if="isEdit && clientStats" label='{{ i18n "usage" }}'> - <a-tag :color="ColorUtils.clientUsageColor(clientStats, app.trafficDiff)"> + <a-tag + :color="ColorUtils.clientUsageColor(clientStats, app.trafficDiff)"> [[ SizeFormatter.sizeFormat(clientStats.up) ]] / [[ SizeFormatter.sizeFormat(clientStats.down) ]] ([[ SizeFormatter.sizeFormat(clientStats.up + clientStats.down) ]]) </a-tag> <a-tooltip> - <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template> + <template slot="title">{{ i18n "pages.inbounds.resetTraffic" + }}</template> <a-icon type="retweet" @click="resetClientTraffic(client.email,clientStats.inboundId,$event.target)" v-if="client.email.length > 0"></a-icon> </a-tooltip> </a-form-item> <a-form-item label='{{ i18n "pages.client.delayedStart" }}'> - <a-switch v-model="delayedStart" @click="client._expiryTime=0"></a-switch> + <a-switch v-model="delayedStart" + @click="client._expiryTime=0"></a-switch> </a-form-item> - <a-form-item v-if="delayedStart" label='{{ i18n "pages.client.expireDays" }}'> - <a-input-number v-model.number="delayedExpireDays" :min="0"></a-input-number> + <a-form-item v-if="delayedStart" + label='{{ i18n "pages.client.expireDays" }}'> + <a-input-number v-model.number="delayedExpireDays" + :min="0"></a-input-number> </a-form-item> <a-form-item v-else> <template slot="label"> <a-tooltip> - <template slot="title">{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</template> + <template slot="title">{{ i18n + "pages.inbounds.leaveBlankToNeverExpire" }}</template> {{ i18n "pages.inbounds.expireDate" }} <a-icon type="question-circle"></a-icon> </a-tooltip> </template> - <a-date-picker v-if="datepicker == 'gregorian'" :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss" - :dropdown-class-name="themeSwitcher.currentTheme" v-model="client._expiryTime"></a-date-picker> - <a-persian-datepicker v-else placeholder='{{ i18n "pages.settings.datepickerPlaceholder" }}' - value="client._expiryTime" v-model="client._expiryTime"></a-persian-datepicker> + <a-date-picker v-if="datepicker == 'gregorian'" + :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss" + :dropdown-class-name="themeSwitcher.currentTheme" + v-model="client._expiryTime"></a-date-picker> + <a-persian-datepicker v-else + placeholder='{{ i18n "pages.settings.datepickerPlaceholder" }}' + value="client._expiryTime" + v-model="client._expiryTime"></a-persian-datepicker> <a-tag color="red" v-if="isEdit && isExpiry">Expired</a-tag> </a-form-item> <a-form-item v-if="client.expiryTime != 0"> <template slot="label"> <a-tooltip> - <template slot="title">{{ i18n "pages.client.renewDesc" }}</template> + <template slot="title">{{ i18n "pages.client.renewDesc" + }}</template> {{ i18n "pages.client.renew" }} <a-icon type="question-circle"></a-icon> </a-tooltip> diff --git a/web/html/form/inbound.html b/web/html/form/inbound.html index 5c982b6c..4e89024d 100644 --- a/web/html/form/inbound.html +++ b/web/html/form/inbound.html @@ -74,7 +74,8 @@ <a-select-option value="never">{{ i18n "pages.inbounds.periodicTrafficReset.never" }}</a-select-option> <a-select-option value="hourly">{{ i18n - "pages.inbounds.periodicTrafficReset.hourly" }}</a-select-option> + "pages.inbounds.periodicTrafficReset.hourly" + }}</a-select-option> <a-select-option value="daily">{{ i18n "pages.inbounds.periodicTrafficReset.daily" }}</a-select-option> <a-select-option value="weekly">{{ i18n @@ -154,6 +155,11 @@ {{template "form/tun"}} </template> +<!-- hysteria --> +<template v-if="inbound.protocol === Protocols.HYSTERIA"> + {{template "form/hysteria"}} +</template> + <!-- stream settings --> <template v-if="inbound.canEnableStream()"> {{template "form/streamSettings"}} diff --git a/web/html/form/protocol/hysteria.html b/web/html/form/protocol/hysteria.html new file mode 100644 index 00000000..f612f056 --- /dev/null +++ b/web/html/form/protocol/hysteria.html @@ -0,0 +1,32 @@ +{{define "form/hysteria"}} +<a-collapse activeKey="0" + v-for="(client, index) in inbound.settings.hysterias.slice(0,1)" + v-if="!isEdit"> + <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> + {{template "form/client"}} + </a-collapse-panel> +</a-collapse> +<a-collapse v-else> + <a-collapse-panel :header="'{{ i18n "pages.client.clientCount"}} : ' + + inbound.settings.hysterias.length"> + <table width="100%"> + <tr class="client-table-header"> + <th>{{ i18n "pages.inbounds.email" }}</th> + <th>Auth</th> + </tr> + <tr v-for="(client, index) in inbound.settings.hysterias" + :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> + <td>[[ client.email ]]</td> + <td>[[ client.auth ]]</td> + </tr> + </table> + </a-collapse-panel> +</a-collapse> +<a-form :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> + <a-form-item :label="'{{ i18n "pages.inbounds.stream.tcp.version" }}'"> + <a-input-number v-model.number="inbound.settings.version" :min="2" + :max="2" disabled></a-input-number> + </a-form-item> +</a-form> +{{end}}
\ No newline at end of file diff --git a/web/html/form/stream/stream_hysteria.html b/web/html/form/stream/stream_hysteria.html new file mode 100644 index 00000000..5e43d462 --- /dev/null +++ b/web/html/form/stream/stream_hysteria.html @@ -0,0 +1,75 @@ +{{define "form/streamHysteria"}} +<a-form :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> + <a-form-item label='Auth Password'> + <a-input v-model.trim="inbound.stream.hysteria.auth"></a-input> + </a-form-item> + <a-form-item label='UDP Idle Timeout'> + <a-input-number v-model.number="inbound.stream.hysteria.udpIdleTimeout" + :min="0"></a-input-number> + </a-form-item> + <a-form-item label='Masquerade'> + <a-switch v-model="inbound.stream.hysteria.masqueradeSwitch"></a-switch> + </a-form-item> + <template v-if="inbound.stream.hysteria.masqueradeSwitch"> + <a-divider :style="{ margin: '5px 0 0' }">Masquerade</a-divider> + <a-form-item label='Type'> + <a-select v-model="inbound.stream.hysteria.masquerade.type" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option value="file">File</a-select-option> + <a-select-option value="proxy">Proxy</a-select-option> + <a-select-option value="string">String</a-select-option> + </a-select> + </a-form-item> + <a-form-item label='Dir' + v-if="inbound.stream.hysteria.masquerade.type === 'file'"> + <a-input + v-model.trim="inbound.stream.hysteria.masquerade.dir"></a-input> + </a-form-item> + <template v-if="inbound.stream.hysteria.masquerade.type === 'proxy'"> + <a-form-item label='URL'> + <a-input + v-model.trim="inbound.stream.hysteria.masquerade.url"></a-input> + </a-form-item> + <a-form-item label='Rewrite Host'> + <a-switch + v-model="inbound.stream.hysteria.masquerade.rewriteHost"></a-switch> + </a-form-item> + <a-form-item label='Insecure'> + <a-switch + v-model="inbound.stream.hysteria.masquerade.insecure"></a-switch> + </a-form-item> + </template> + <template v-if="inbound.stream.hysteria.masquerade.type === 'string'"> + <a-form-item label='Content'> + <a-input + v-model.trim="inbound.stream.hysteria.masquerade.content"></a-input> + </a-form-item> + <a-form-item + label='{{ i18n "pages.inbounds.stream.tcp.requestHeader" }}'> + <a-button size="small" + @click="inbound.stream.hysteria.masquerade.addHeader('', '')">+</a-button> + </a-form-item> + <a-form-item :wrapper-col="{span:24}"> + <a-input-group compact + v-for="(header, index) in inbound.stream.hysteria.masquerade.headers"> + <a-input style="width: 50%" v-model.trim="header.name" + placeholder='{{ i18n "pages.inbounds.stream.general.name"}}'> + <template slot="addonBefore" style="margin: 0;">[[ + index+1 ]]</template> + </a-input> + <a-input style="width: 50%" v-model.trim="header.value" + placeholder='{{ i18n "pages.inbounds.stream.general.value" }}'> + <a-button slot="addonAfter" size="small" + @click="inbound.stream.hysteria.masquerade.removeHeader(index)">-</a-button> + </a-input> + </a-input-group> + </a-form-item> + <a-form-item label='Status Code'> + <a-input-number + v-model.number="inbound.stream.hysteria.masquerade.statusCode"></a-input-number> + </a-form-item> + </template> + </template> +</a-form> +{{end}}
\ No newline at end of file diff --git a/web/html/form/stream/stream_settings.html b/web/html/form/stream/stream_settings.html index 5b00ef25..700fe793 100644 --- a/web/html/form/stream/stream_settings.html +++ b/web/html/form/stream/stream_settings.html @@ -1,7 +1,8 @@ {{define "form/streamSettings"}} <!-- select stream network --> <a-form :colon="false" :label-col="{ md: {span:8} }" - :wrapper-col="{ md: {span:14} }"> + :wrapper-col="{ md: {span:14} }" + v-if="inbound.protocol != Protocols.HYSTERIA"> <a-form-item label='{{ i18n "transmission" }}'> <a-select v-model="inbound.stream.network" :style="{ width: '75%' }" @change="streamNetworkChange" @@ -36,6 +37,11 @@ {{template "form/streamGRPC"}} </template> +<!-- hysteria --> +<template v-if="inbound.stream.network === 'hysteria'"> + {{template "form/streamHysteria"}} +</template> + <!-- httpupgrade --> <template v-if="inbound.stream.network === 'httpupgrade'"> {{template "form/streamHTTPUpgrade"}} diff --git a/web/html/form/tls_settings.html b/web/html/form/tls_settings.html index 2fe82388..2462e901 100644 --- a/web/html/form/tls_settings.html +++ b/web/html/form/tls_settings.html @@ -2,15 +2,18 @@ <!-- tls enable --> <a-form v-if="inbound.canEnableTls()" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> - <a-divider :style="{ margin: '3px 0' }"></a-divider> - <a-form-item label='{{ i18n "security" }}'> - <a-radio-group v-model="inbound.stream.security" button-style="solid"> - <a-radio-button value="none">{{ i18n "none" }}</a-radio-button> - <a-radio-button v-if="inbound.canEnableReality()" - value="reality">Reality</a-radio-button> - <a-radio-button value="tls">TLS</a-radio-button> - </a-radio-group> - </a-form-item> + <template v-if="inbound.protocol !== Protocols.HYSTERIA"> + <a-divider :style="{ margin: '3px 0' }"></a-divider> + <a-form-item label='{{ i18n "security" }}'> + <a-radio-group v-model="inbound.stream.security" button-style="solid"> + <a-radio-button value="none">{{ i18n "none" }}</a-radio-button> + <a-radio-button v-if="inbound.canEnableReality()" + value="reality">Reality</a-radio-button> + <a-radio-button value="tls">TLS</a-radio-button> + </a-radio-group> + </a-form-item> + </template> + <template v-else><a-divider style="margin:0;">TLS</a-divider></template> <!-- tls settings --> <template v-if="inbound.stream.isTls"> diff --git a/web/html/inbounds.html b/web/html/inbounds.html index 231fc0c0..60de0750 100644 --- a/web/html/inbounds.html +++ b/web/html/inbounds.html @@ -2,14 +2,18 @@ {{ template "page/head_end" .}} {{ template "page/body_start" .}} -<a-layout id="app" v-cloak :class="themeSwitcher.currentTheme + ' inbounds-page'"> +<a-layout id="app" v-cloak + :class="themeSwitcher.currentTheme + ' inbounds-page'"> <a-sidebar></a-sidebar> <a-layout id="content-layout"> <a-layout-content> - <a-spin :spinning="loadingStates.spinning" :delay="500" tip='{{ i18n "loading"}}' size="large"> + <a-spin :spinning="loadingStates.spinning" :delay="500" + tip='{{ i18n "loading"}}' size="large"> <transition name="list" appear> - <a-alert type="error" v-if="showAlert && loadingStates.fetched" :style="{ marginBottom: '10px' }" - message='{{ i18n "secAlertTitle" }}' color="red" description='{{ i18n "secAlertSsl" }}' show-icon closable> + <a-alert type="error" v-if="showAlert && loadingStates.fetched" + :style="{ marginBottom: '10px' }" + message='{{ i18n "secAlertTitle" }}' color="red" + description='{{ i18n "secAlertSsl" }}' show-icon closable> </a-alert> </transition> <transition name="list" appear> @@ -21,7 +25,8 @@ <a-card size="small" :style="{ padding: '16px' }" hoverable> <a-row> <a-col :sm="12" :md="5"> - <a-custom-statistic title='{{ i18n "pages.inbounds.totalDownUp" }}' + <a-custom-statistic + title='{{ i18n "pages.inbounds.totalDownUp" }}' :value="`${SizeFormatter.sizeFormat(total.up)} / ${SizeFormatter.sizeFormat(total.down)}`"> <template #prefix> <a-icon type="swap"></a-icon> @@ -29,7 +34,8 @@ </a-custom-statistic> </a-col> <a-col :sm="12" :md="5"> - <a-custom-statistic title='{{ i18n "pages.inbounds.totalUsage" }}' + <a-custom-statistic + title='{{ i18n "pages.inbounds.totalUsage" }}' :value="SizeFormatter.sizeFormat(total.up + total.down)" :style="{ marginTop: isMobile ? '10px' : 0 }"> <template #prefix> @@ -38,15 +44,19 @@ </a-custom-statistic> </a-col> <a-col :sm="12" :md="5"> - <a-custom-statistic title='{{ i18n "pages.inbounds.allTimeTrafficUsage" }}' - :value="SizeFormatter.sizeFormat(total.allTime)" :style="{ marginTop: isMobile ? '10px' : 0 }"> + <a-custom-statistic + title='{{ i18n "pages.inbounds.allTimeTrafficUsage" }}' + :value="SizeFormatter.sizeFormat(total.allTime)" + :style="{ marginTop: isMobile ? '10px' : 0 }"> <template #prefix> <a-icon type="history"></a-icon> </template> </a-custom-statistic> </a-col> <a-col :sm="12" :md="5"> - <a-custom-statistic title='{{ i18n "pages.inbounds.inboundCount" }}' :value="dbInbounds.length" + <a-custom-statistic + title='{{ i18n "pages.inbounds.inboundCount" }}' + :value="dbInbounds.length" :style="{ marginTop: isMobile ? '10px' : 0 }"> <template #prefix> <a-icon type="bars"></a-icon> @@ -60,33 +70,50 @@ <a-space direction="horizontal"> <a-icon type="team"></a-icon> <div> - <a-back-top :target="() => document.getElementById('content-layout')" + <a-back-top + :target="() => document.getElementById('content-layout')" visibility-height="200"></a-back-top> <a-tag color="green">[[ total.clients ]]</a-tag> - <a-popover title='{{ i18n "disabled" }}' :overlay-class-name="themeSwitcher.currentTheme"> + <a-popover title='{{ i18n "disabled" }}' + :overlay-class-name="themeSwitcher.currentTheme"> <template slot="content"> - <div v-for="clientEmail in total.deactive"><span>[[ clientEmail ]]</span></div> + <div + v-for="clientEmail in total.deactive"><span>[[ + clientEmail ]]</span></div> </template> - <a-tag v-if="total.deactive.length">[[ total.deactive.length ]]</a-tag> + <a-tag v-if="total.deactive.length">[[ + total.deactive.length ]]</a-tag> </a-popover> - <a-popover title='{{ i18n "depleted" }}' :overlay-class-name="themeSwitcher.currentTheme"> + <a-popover title='{{ i18n "depleted" }}' + :overlay-class-name="themeSwitcher.currentTheme"> <template slot="content"> - <div v-for="clientEmail in total.depleted"><span>[[ clientEmail ]]</span></div> + <div + v-for="clientEmail in total.depleted"><span>[[ + clientEmail ]]</span></div> </template> - <a-tag color="red" v-if="total.depleted.length">[[ total.depleted.length ]]</a-tag> + <a-tag color="red" v-if="total.depleted.length">[[ + total.depleted.length ]]</a-tag> </a-popover> <a-popover title='{{ i18n "depletingSoon" }}' :overlay-class-name="themeSwitcher.currentTheme"> <template slot="content"> - <div v-for="clientEmail in total.expiring"><span>[[ clientEmail ]]</span></div> + <div + v-for="clientEmail in total.expiring"><span>[[ + clientEmail ]]</span></div> </template> - <a-tag color="orange" v-if="total.expiring.length">[[ total.expiring.length ]]</a-tag> + <a-tag color="orange" + v-if="total.expiring.length">[[ + total.expiring.length ]]</a-tag> </a-popover> - <a-popover title='{{ i18n "online" }}' :overlay-class-name="themeSwitcher.currentTheme"> + <a-popover title='{{ i18n "online" }}' + :overlay-class-name="themeSwitcher.currentTheme"> <template slot="content"> - <div v-for="clientEmail in onlineClients"><span>[[ clientEmail ]]</span></div> + <div + v-for="clientEmail in onlineClients"><span>[[ + clientEmail ]]</span></div> </template> - <a-tag color="blue" v-if="onlineClients.length">[[ onlineClients.length ]]</a-tag> + <a-tag color="blue" v-if="onlineClients.length">[[ + onlineClients.length ]]</a-tag> </a-popover> </div> </a-space> @@ -100,14 +127,18 @@ <a-card hoverable> <template #title> <a-space direction="horizontal"> - <a-button type="primary" icon="plus" @click="openAddInbound"> - <template v-if="!isMobile">{{ i18n "pages.inbounds.addInbound" }}</template> + <a-button type="primary" icon="plus" + @click="openAddInbound"> + <template v-if="!isMobile">{{ i18n + "pages.inbounds.addInbound" }}</template> </a-button> <a-dropdown :trigger="['click']"> <a-button type="primary" icon="menu"> - <template v-if="!isMobile">{{ i18n "pages.inbounds.generalActions" }}</template> + <template v-if="!isMobile">{{ i18n + "pages.inbounds.generalActions" }}</template> </a-button> - <a-menu slot="overlay" @click="a => generalActions(a)" :theme="themeSwitcher.currentTheme"> + <a-menu slot="overlay" @click="a => generalActions(a)" + :theme="themeSwitcher.currentTheme"> <a-menu-item key="import"> <a-icon type="import"></a-icon> {{ i18n "pages.inbounds.importInbound" }} @@ -118,7 +149,8 @@ </a-menu-item> <a-menu-item key="subs" v-if="subSettings.enable"> <a-icon type="export"></a-icon> - {{ i18n "pages.inbounds.export" }} - {{ i18n "pages.settings.subSettings" }} + {{ i18n "pages.inbounds.export" }} - {{ i18n + "pages.settings.subSettings" }} </a-menu-item> <a-menu-item key="resetInbounds"> <a-icon type="reload"></a-icon> @@ -128,7 +160,8 @@ <a-icon type="file-done"></a-icon> {{ i18n "pages.inbounds.resetAllClientTraffics" }} </a-menu-item> - <a-menu-item key="delDepletedClients" :style="{ color: '#FF4D4F' }"> + <a-menu-item key="delDepletedClients" + :style="{ color: '#FF4D4F' }"> <a-icon type="rest"></a-icon> {{ i18n "pages.inbounds.delDepletedClients" }} </a-menu-item> @@ -138,20 +171,28 @@ </template> <template #extra> <a-button-group> - <a-button icon="sync" @click="manualRefresh" :loading="refreshing"></a-button> - <a-popover placement="bottomRight" trigger="click" :overlay-class-name="themeSwitcher.currentTheme"> + <a-button icon="sync" @click="manualRefresh" + :loading="refreshing"></a-button> + <a-popover placement="bottomRight" trigger="click" + :overlay-class-name="themeSwitcher.currentTheme"> <template #title> <div class="ant-custom-popover-title"> - <a-switch v-model="isRefreshEnabled" @change="toggleRefresh" size="small"></a-switch> + <a-switch v-model="isRefreshEnabled" + @change="toggleRefresh" size="small"></a-switch> <span>{{ i18n "pages.inbounds.autoRefresh" }}</span> </div> </template> <template #content> <a-space direction="vertical"> - <span>{{ i18n "pages.inbounds.autoRefreshInterval" }}</span> - <a-select v-model="refreshInterval" :disabled="!isRefreshEnabled" :style="{ width: '100%' }" - @change="changeRefreshInterval" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="key in [5,10,30,60]" :value="key*1000">[[ key ]]s</a-select-option> + <span>{{ i18n "pages.inbounds.autoRefreshInterval" + }}</span> + <a-select v-model="refreshInterval" + :disabled="!isRefreshEnabled" + :style="{ width: '100%' }" + @change="changeRefreshInterval" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in [5,10,30,60]" + :value="key*1000">[[ key ]]s</a-select-option> </a-select> </a-space> </template> @@ -160,27 +201,38 @@ </a-button-group> </template> <a-space direction="vertical"> - <div :style="isMobile ? {} : { display: 'flex', alignItems: 'center', justifyContent: 'flex-start' }"> + <div + :style="isMobile ? {} : { display: 'flex', alignItems: 'ce
|
