mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8078d0618d
- Socks proxy support implemented. - Monitor proxy agent create flow refactored and moved under proxy class. Thanks for suggestion @thomasleveil
49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<template>
|
|
<div>
|
|
<!-- Proxies -->
|
|
<div class="proxy-list my-4">
|
|
<p v-if="$root.proxyList.length === 0">
|
|
{{ $t("Not available, please setup.") }}
|
|
</p>
|
|
<p v-else>
|
|
{{ $t("proxyDescription") }}
|
|
</p>
|
|
|
|
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
|
<li v-for="(proxy, index) in $root.proxyList" :key="index" class="list-group-item">
|
|
{{ proxy.host }}:{{ proxy.port }} ({{ proxy.protocol }})
|
|
<span v-if="proxy.default === true" class="badge bg-primary ms-2">{{ $t("Default") }}</span><br>
|
|
<a href="#" @click="$refs.proxyDialog.show(proxy.id)">{{ $t("Edit") }}</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<button class="btn btn-primary me-2" type="button" @click="$refs.proxyDialog.show()">
|
|
{{ $t("Setup Proxy") }}
|
|
</button>
|
|
</div>
|
|
|
|
<ProxyDialog ref="proxyDialog" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ProxyDialog from "../../components/ProxyDialog.vue";
|
|
|
|
export default {
|
|
components: {
|
|
ProxyDialog
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../../assets/vars.scss";
|
|
|
|
.dark {
|
|
.list-group-item {
|
|
background-color: $dark-bg2;
|
|
color: $dark-font-color;
|
|
}
|
|
}
|
|
</style>
|