diff options
| author | Shishkevich D. <135337715+shishkevichd@users.noreply.github.com> | 2025-04-06 12:40:33 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-06 12:40:33 +0300 |
| commit | bea19a263db88fef44b4356082b199fbfcc39a25 (patch) | |
| tree | a111e9328c6273ad9721118238c40cf3004f72a9 /web/html/form/reality_settings.html | |
| parent | 878e0d02cd01a045f4f32464124c59e24f98aedd (diff) | |
Code refactoring (#2865)
* refactor: use vue inline styles in entire application
* refactor: setting row in dashboard page
* refactor: use blob for download file in text modal
* refactor: move all html templates in `web/html` folder
* refactor: `DeviceUtils` -> `MediaQueryMixin`
The transition to mixins has been made, as they can update themselves.
* chore: pretty right buttons in `outbounds` tab in xray settings
* refactor: add translations for system status
* refactor: adjust gutter spacing in setting list item
* refactor: use native `a-input-password` for password field
* chore: return old system status
with new translations
* chore: add missing translation
Diffstat (limited to 'web/html/form/reality_settings.html')
| -rw-r--r-- | web/html/form/reality_settings.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/web/html/form/reality_settings.html b/web/html/form/reality_settings.html new file mode 100644 index 00000000..7d5e6fb9 --- /dev/null +++ b/web/html/form/reality_settings.html @@ -0,0 +1,56 @@ +{{define "form/realitySettings"}} +<template> + <a-form-item label='Show'> + <a-switch v-model="inbound.stream.reality.show"></a-switch> + </a-form-item> + <a-form-item label='Xver'> + <a-input-number v-model.number="inbound.stream.reality.xver" :min="0"></a-input-number> + </a-form-item> + <a-form-item label='uTLS'> + <a-select v-model="inbound.stream.reality.settings.fingerprint" :style="{ width: '100%' }" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option> + </a-select> + </a-form-item> + <a-form-item label='Dest (Target)'> + <a-input v-model.trim="inbound.stream.reality.dest"></a-input> + </a-form-item> + <a-form-item label='SNI'> + <a-input v-model.trim="inbound.stream.reality.serverNames"></a-input> + </a-form-item> + <a-form-item label='Max Time Diff (ms)'> + <a-input-number v-model.number="inbound.stream.reality.maxTimediff" :min="0"></a-input-number> + </a-form-item> + <!-- we also have this but i think it's not necessary + <a-form-item label='Min Client'> + <a-input v-model.trim="inbound.stream.reality.minClient"></a-input> + </a-form-item> + <a-form-item label='Max Client'> + <a-input v-model.trim="inbound.stream.reality.maxClient"></a-input> + </a-form-item> + --> + <a-form-item> + <template slot="label"> + <a-tooltip> + <template slot="title"> + <span>{{ i18n "reset" }}</span> + </template> Short IDs <a-icon @click="inbound.stream.reality.shortIds = RandomUtil.randomShortIds()" + type="sync"></a-icon> + </a-tooltip> + </template> + <a-input v-model.trim="inbound.stream.reality.shortIds"></a-input> + </a-form-item> + <a-form-item label='SpiderX'> + <a-input v-model.trim="inbound.stream.reality.settings.spiderX"></a-input> + </a-form-item> + <a-form-item label='{{ i18n "pages.inbounds.publicKey" }}'> + <a-input v-model="inbound.stream.reality.settings.publicKey"></a-input> + </a-form-item> + <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> + <a-input type="password" v-model="inbound.stream.reality.privateKey"></a-input> + </a-form-item> + <a-form-item label=" "> + <a-button type="primary" icon="import" @click="getNewX25519Cert">Get New Cert</a-button> + </a-form-item> +</template> +{{end}}
\ No newline at end of file |
