feat(www): add sort clients by name (#1227)

Co-authored-by: Philip H. <47042125+pheiduck@users.noreply.github.com>
This commit is contained in:
Võ Hoàng 2024-08-17 00:40:24 +07:00 committed by GitHub
parent 7c521e8733
commit ca7ee32052
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 60 additions and 2 deletions

View File

@ -123,6 +123,7 @@ These options can be configured by setting environment variables using `-e KEY="
| `UI_CHART_TYPE` | `0` | `1` | UI_CHART_TYPE=0 # Charts disabled, UI_CHART_TYPE=1 # Line chart, UI_CHART_TYPE=2 # Area chart, UI_CHART_TYPE=3 # Bar chart | | `UI_CHART_TYPE` | `0` | `1` | UI_CHART_TYPE=0 # Charts disabled, UI_CHART_TYPE=1 # Line chart, UI_CHART_TYPE=2 # Area chart, UI_CHART_TYPE=3 # Bar chart |
| `UI_SHOW_LINKS` | `false` | `true` | Enable display of a short download link in Web UI | | `UI_SHOW_LINKS` | `false` | `true` | Enable display of a short download link in Web UI |
| `MAX_AGE` | `0` | `1440` | The maximum age of Web UI sessions in minutes. `0` means that the session will exist until the browser is closed. | | `MAX_AGE` | `0` | `1440` | The maximum age of Web UI sessions in minutes. `0` means that the session will exist until the browser is closed. |
| `UI_ENABLE_SORT_CLIENTS` | `false` | `true` | Enable UI sort clients by name |
> If you change `WG_PORT`, make sure to also change the exposed port. > If you change `WG_PORT`, make sure to also change the exposed port.

View File

@ -28,6 +28,7 @@ services:
# - UI_TRAFFIC_STATS=true # - UI_TRAFFIC_STATS=true
# - UI_CHART_TYPE=0 # (0 Charts disabled, 1 # Line chart, 2 # Area chart, 3 # Bar chart) # - UI_CHART_TYPE=0 # (0 Charts disabled, 1 # Line chart, 2 # Area chart, 3 # Bar chart)
# - UI_SHOW_LINKS=true # - UI_SHOW_LINKS=true
# - UI_ENABLE_SORT_CLIENTS=true
image: ghcr.io/wg-easy/wg-easy image: ghcr.io/wg-easy/wg-easy
container_name: wg-easy container_name: wg-easy

View File

@ -39,3 +39,4 @@ module.exports.LANG = process.env.LANG || 'en';
module.exports.UI_TRAFFIC_STATS = process.env.UI_TRAFFIC_STATS || 'false'; module.exports.UI_TRAFFIC_STATS = process.env.UI_TRAFFIC_STATS || 'false';
module.exports.UI_CHART_TYPE = process.env.UI_CHART_TYPE || 0; module.exports.UI_CHART_TYPE = process.env.UI_CHART_TYPE || 0;
module.exports.UI_SHOW_LINKS = process.env.UI_SHOW_LINKS || 'false'; module.exports.UI_SHOW_LINKS = process.env.UI_SHOW_LINKS || 'false';
module.exports.UI_ENABLE_SORT_CLIENTS = process.env.UI_ENABLE_SORT_CLIENTS || 'false';

View File

@ -34,6 +34,7 @@ const {
UI_TRAFFIC_STATS, UI_TRAFFIC_STATS,
UI_CHART_TYPE, UI_CHART_TYPE,
UI_SHOW_LINKS, UI_SHOW_LINKS,
UI_ENABLE_SORT_CLIENTS,
} = require('../config'); } = require('../config');
const requiresPassword = !!PASSWORD_HASH; const requiresPassword = !!PASSWORD_HASH;
@ -101,7 +102,12 @@ module.exports = class Server {
.get('/api/ui-show-links', defineEventHandler((event) => { .get('/api/ui-show-links', defineEventHandler((event) => {
setHeader(event, 'Content-Type', 'application/json'); setHeader(event, 'Content-Type', 'application/json');
return `${UI_SHOW_LINKS}`; return `"${UI_SHOW_LINKS}"`;
}))
.get('/api/ui-sort-clients', defineEventHandler((event) => {
setHeader(event, 'Content-Type', 'application/json');
return `"${UI_ENABLE_SORT_CLIENTS}"`;
})) }))
// Authentication // Authentication

View File

@ -112,6 +112,15 @@
</svg> </svg>
<span class="max-md:hidden text-sm">{{$t("backup")}}</span> <span class="max-md:hidden text-sm">{{$t("backup")}}</span>
</a> </a>
<!-- Sort client -->
<div v-if="enableSortClient === true">
<button @click="sortClient = !sortClient;"
class="hover:bg-red-800 hover:border-red-800 hover:text-white text-gray-700 dark:text-neutral-200 max-md:border-l-0 border-2 border-gray-100 dark:border-neutral-600 py-2 px-4 rounded-r-full md:rounded inline-flex items-center transition">
<span v-if="sortClient === false" class="max-md:hidden text-sm">{{$t("sort")}} ↑</span>
<span v-if="sortClient === true" class="max-md:hidden text-sm">{{$t("sort")}} ↓</span>
</button>
</div>
<!-- New client --> <!-- New client -->
<button @click="clientCreate = true; clientCreateName = '';" <button @click="clientCreate = true; clientCreateName = '';"
class="hover:bg-red-800 hover:border-red-800 hover:text-white text-gray-700 dark:text-neutral-200 max-md:border-l-0 border-2 border-gray-100 dark:border-neutral-600 py-2 px-4 rounded-r-full md:rounded inline-flex items-center transition"> class="hover:bg-red-800 hover:border-red-800 hover:text-white text-gray-700 dark:text-neutral-200 max-md:border-l-0 border-2 border-gray-100 dark:border-neutral-600 py-2 px-4 rounded-r-full md:rounded inline-flex items-center transition">

View File

@ -160,4 +160,11 @@ class API {
}); });
} }
async getUiSortClients() {
return this.call({
method: 'get',
path: '/ui-sort-clients',
});
}
} }

View File

@ -23,6 +23,22 @@ function bytes(bytes, decimals, kib, maxunit) {
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(dm))} ${sizes[i]}`; return `${parseFloat((bytes / Math.pow(k, i)).toFixed(dm))} ${sizes[i]}`;
} }
/**
* Sorts an array of objects by a specified property in ascending or descending order.
*
* @param {Array} array - The array of objects to be sorted.
* @param {string} property - The property to sort the array by.
* @param {boolean} [sort=true] - Whether to sort the array in ascending (default) or descending order.
* @return {Array} - The sorted array of objects.
*/
function sortByProperty(array, property, sort = true) {
if (sort) {
return array.sort((a, b) => (typeof a[property] === 'string' ? a[property].localeCompare(b[property]) : a[property] - b[property]));
}
return array.sort((a, b) => (typeof a[property] === 'string' ? b[property].localeCompare(a[property]) : b[property] - a[property]));
}
const i18n = new VueI18n({ const i18n = new VueI18n({
locale: localStorage.getItem('lang') || 'en', locale: localStorage.getItem('lang') || 'en',
fallbackLocale: 'en', fallbackLocale: 'en',
@ -158,6 +174,9 @@ new Vue({
}, },
}, },
}, },
enableSortClient: true,
sortClient: true, // Sort clients by name, true = asc, false = desc
}, },
methods: { methods: {
dateTime: (value) => { dateTime: (value) => {
@ -232,6 +251,10 @@ new Vue({
return client; return client;
}); });
if (enableSortClient) {
this.clients = sortByProperty(this.clients, 'name', this.sortClient);
}
}, },
login(e) { login(e) {
e.preventDefault(); e.preventDefault();
@ -408,6 +431,8 @@ new Vue({
i18n.locale = lang; i18n.locale = lang;
} }
this.enableSortClient = await this.api.getUiSortClients();
const currentRelease = await this.api.getRelease(); const currentRelease = await this.api.getRelease();
const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json') const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json')
.then((res) => res.json()) .then((res) => res.json())

View File

@ -36,6 +36,7 @@ const messages = { // eslint-disable-line no-unused-vars
titleBackupConfig: 'Backup your configuration', titleBackupConfig: 'Backup your configuration',
rememberMe: 'Remember me', rememberMe: 'Remember me',
titleRememberMe: 'Stay logged after closing the browser', titleRememberMe: 'Stay logged after closing the browser',
sort: 'Sort',
}, },
ua: { ua: {
name: 'Ім`я', name: 'Ім`я',
@ -349,7 +350,7 @@ const messages = { // eslint-disable-line no-unused-vars
titleRestoreConfig: '구성 파일 복원', titleRestoreConfig: '구성 파일 복원',
titleBackupConfig: '구성 파일 백업', titleBackupConfig: '구성 파일 백업',
}, },
vi: { vi: { // https://github.com/hoangneeee
name: 'Tên', name: 'Tên',
password: 'Mật khẩu', password: 'Mật khẩu',
signIn: 'Đăng nhập', signIn: 'Đăng nhập',
@ -375,6 +376,13 @@ const messages = { // eslint-disable-line no-unused-vars
downloadConfig: 'Tải xuống cấu hình', downloadConfig: 'Tải xuống cấu hình',
madeBy: 'Được tạo bởi', madeBy: 'Được tạo bởi',
donate: 'Ủng hộ', donate: 'Ủng hộ',
toggleCharts: 'Mở/Ẩn Biểu đồ',
theme: { dark: 'Dark theme', light: 'Light theme', auto: 'Auto theme' },
restore: 'Khôi phục',
backup: 'Sao lưu',
titleRestoreConfig: 'Khôi phục cấu hình của bạn',
titleBackupConfig: 'Sao lưu cấu hình của bạn',
sort: 'Sắp xếp',
}, },
nl: { nl: {
name: 'Naam', name: 'Naam',