From a065c1800f2d387228a6a59b6a7d650180b0d2e0 Mon Sep 17 00:00:00 2001 From: CY <19247537+cyappdev@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:51:12 +0800 Subject: [PATCH] feat: Move language option to profile setting (#387) --- backend/config/locale.js | 1 + ...0204151833-add-column-locale-user-table.js | 10 ++ backend/models/users.js | 4 + backend/routes/users/updateAvatar.js | 2 +- backend/routes/users/updateLocale.js | 46 ++++++++ backend/routes/users/updateLocale.test.js | 92 +++++++++++++++ backend/routes/users/updateUsername.js | 2 +- backend/server.js | 2 + frontend/messages/de.json | 4 + frontend/messages/en.json | 4 + frontend/messages/ja.json | 4 + frontend/messages/pt-BR.json | 4 + frontend/messages/zh-CN.json | 4 + .../src/app/[locale]/DropdownLanguage.tsx | 2 +- .../src/app/[locale]/HeaderNavbarMenu.tsx | 88 +++++++------- .../src/app/[locale]/account/authControl.ts | 1 + .../src/app/[locale]/account/authPage.tsx | 5 +- .../account/settings/ProfileSettingsPage.tsx | 107 +++++++++++++++++- .../app/[locale]/account/settings/page.tsx | 4 + .../[projectId]/settings/SettingsPage.tsx | 1 + frontend/types/user.ts | 1 + frontend/utils/usersControl.ts | 31 +++++ 22 files changed, 368 insertions(+), 51 deletions(-) create mode 100644 backend/config/locale.js create mode 100644 backend/migrations/20260204151833-add-column-locale-user-table.js create mode 100644 backend/routes/users/updateLocale.js create mode 100644 backend/routes/users/updateLocale.test.js diff --git a/backend/config/locale.js b/backend/config/locale.js new file mode 100644 index 0000000..e661d34 --- /dev/null +++ b/backend/config/locale.js @@ -0,0 +1 @@ +export const SUPPORTED_LOCALES = ['de', 'en', 'pt-BR', 'zh-CN', 'ja']; diff --git a/backend/migrations/20260204151833-add-column-locale-user-table.js b/backend/migrations/20260204151833-add-column-locale-user-table.js new file mode 100644 index 0000000..ea1b7b0 --- /dev/null +++ b/backend/migrations/20260204151833-add-column-locale-user-table.js @@ -0,0 +1,10 @@ +export async function up(queryInterface, Sequelize) { + await queryInterface.addColumn('users', 'locale', { + type: Sequelize.STRING(20), + allowNull: true, + }); +} + +export async function down(queryInterface) { + await queryInterface.removeColumn('users', 'locale'); +} diff --git a/backend/models/users.js b/backend/models/users.js index ebd0df4..6968e81 100644 --- a/backend/models/users.js +++ b/backend/models/users.js @@ -22,6 +22,10 @@ function defineUser(sequelize, DataTypes) { avatarPath: { type: DataTypes.STRING, }, + locale: { + type: DataTypes.STRING(20), + allowNull: true, + }, }, { underscored: true } ); diff --git a/backend/routes/users/updateAvatar.js b/backend/routes/users/updateAvatar.js index a2bb389..001e652 100644 --- a/backend/routes/users/updateAvatar.js +++ b/backend/routes/users/updateAvatar.js @@ -126,7 +126,7 @@ export default function (sequelize) { // Return updated user without password const updatedUser = await User.findByPk(userId, { - attributes: ['id', 'email', 'username', 'role', 'avatarPath'], + attributes: ['id', 'email', 'username', 'role', 'avatarPath', 'locale'], }); res.json({ user: updatedUser }); diff --git a/backend/routes/users/updateLocale.js b/backend/routes/users/updateLocale.js new file mode 100644 index 0000000..da17479 --- /dev/null +++ b/backend/routes/users/updateLocale.js @@ -0,0 +1,46 @@ +import express from 'express'; +import { DataTypes } from 'sequelize'; +import defineUser from '../../models/users.js'; +import authMiddleware from '../../middleware/auth.js'; +import { SUPPORTED_LOCALES } from '../../config/locale.js'; +const router = express.Router(); + +export default function (sequelize) { + const { verifySignedIn } = authMiddleware(sequelize); + const User = defineUser(sequelize, DataTypes); + + router.put('/locale', verifySignedIn, async (req, res) => { + try { + const userId = req.userId; + + const user = await User.findByPk(userId); + if (!user) { + return res.status(404).send('User not found'); + } + + const { locale } = req.body; + + const normalizedLocale = typeof locale === 'string' ? locale.trim() : ''; + if (!normalizedLocale || normalizedLocale.length === 0) { + return res.status(400).send('Locale is required'); + } + + if (!SUPPORTED_LOCALES.includes(normalizedLocale)) { + return res.status(400).send('Invalid locale'); + } + + await user.update({ locale: normalizedLocale }); + + const updatedUser = await User.findByPk(userId, { + attributes: ['id', 'email', 'username', 'role', 'avatarPath', 'locale'], + }); + + res.json({ user: updatedUser }); + } catch (error) { + console.error(error); + res.status(500).send('Internal Server Error'); + } + }); + + return router; +} diff --git a/backend/routes/users/updateLocale.test.js b/backend/routes/users/updateLocale.test.js new file mode 100644 index 0000000..736635a --- /dev/null +++ b/backend/routes/users/updateLocale.test.js @@ -0,0 +1,92 @@ +import { describe, it, expect, vi, beforeEach } from 'vitest'; +import request from 'supertest'; +import express from 'express'; +import { Sequelize } from 'sequelize'; +import { SUPPORTED_LOCALES } from '../../config/locale.js'; +import updateLocaleRoute from './updateLocale.js'; + +// mock of authentication middleware +let mockUserId = 1; +vi.mock('../../middleware/auth.js', () => ({ + default: () => ({ + verifySignedIn: vi.fn((req, res, next) => { + req.userId = mockUserId; // Mock user ID + next(); + }), + }), +})); + +// mock defineUser +const mockUsers = new Map(); +const mockUser = { + findByPk: vi.fn((id) => { + const user = mockUsers.get(id); + if (!user) return null; + return { + ...user, + update: vi.fn(async (data) => { + Object.assign(user, data); + return user; + }), + }; + }), +}; + +vi.mock('../../models/users.js', () => ({ + default: () => mockUser, +})); + +describe('User Locale Routes', () => { + let app; + const sequelize = new Sequelize({ + dialect: 'sqlite', + logging: false, + }); + + beforeEach(() => { + app = express(); + app.use(express.json()); + app.use('/users', updateLocaleRoute(sequelize)); + + // Reset mock users + mockUsers.clear(); + mockUserId = 1; + + // Create a test user + mockUsers.set(1, { + id: 1, + email: 'test@example.com', + username: 'testuser', + password: '', + role: 1, + avatarPath: null, + locale: null, + }); + + vi.clearAllMocks(); + }); + + it('should update locale', async () => { + const newLocale = SUPPORTED_LOCALES[0]; + const response = await request(app).put('/users/locale').send({ locale: newLocale }); + + expect(response.status).toBe(200); + expect(response.body.user.locale).toBe(newLocale); + }); + + it('should replace existing locale', async () => { + mockUsers.set(1, { + locale: SUPPORTED_LOCALES[0], + }); + const response = await request(app).put('/users/locale').send({ locale: SUPPORTED_LOCALES[1] }); + + expect(response.status).toBe(200); + expect(response.body.user.locale).toBe(SUPPORTED_LOCALES[1]); + }); + + it.each([' ', 'chinese', 'english'])('should reject not supported locale: %s', async (locale) => { + const response = await request(app).put('/users/locale').send({ locale }); + + expect(response.status).toBe(400); + }); +}); diff --git a/backend/routes/users/updateUsername.js b/backend/routes/users/updateUsername.js index 9780df9..6a247e1 100644 --- a/backend/routes/users/updateUsername.js +++ b/backend/routes/users/updateUsername.js @@ -26,7 +26,7 @@ export default function (sequelize) { // Return updated user without password const updatedUser = await User.findByPk(userId, { - attributes: ['id', 'email', 'username', 'role', 'avatarPath'], + attributes: ['id', 'email', 'username', 'role', 'avatarPath', 'locale'], }); res.json({ user: updatedUser }); diff --git a/backend/server.js b/backend/server.js index 54d96bb..83b790f 100644 --- a/backend/server.js +++ b/backend/server.js @@ -53,6 +53,7 @@ import usersSearchRoute from './routes/users/search.js'; import usersUpdateUsernameRoute from './routes/users/updateUsername.js'; import usersUpdatePasswordRoute from './routes/users/updatePassword.js'; import usersAdminResetPasswordRoute from './routes/users/adminResetPassword.js'; +import usersUpdateLocaleRoute from './routes/users/updateLocale.js'; import usersUpdateAvatarRoute from './routes/users/updateAvatar.js'; import usersUpdateRoleRoute from './routes/users/updateRole.js'; import signUpRoute from './routes/users/signup.js'; @@ -63,6 +64,7 @@ app.use('/users', usersSearchRoute(sequelize)); app.use('/users', usersUpdateUsernameRoute(sequelize)); app.use('/users', usersUpdatePasswordRoute(sequelize)); app.use('/users', usersAdminResetPasswordRoute(sequelize)); +app.use('/users', usersUpdateLocaleRoute(sequelize)); app.use('/users', usersUpdateAvatarRoute(sequelize)); app.use('/users', usersUpdateRoleRoute(sequelize)); app.use('/users', signUpRoute(sequelize)); diff --git a/frontend/messages/de.json b/frontend/messages/de.json index 4002646..d92a8aa 100644 --- a/frontend/messages/de.json +++ b/frontend/messages/de.json @@ -101,6 +101,7 @@ "confirm_password": "Passwort (Bestätigung)", "invalid_email": "Ungültige E-Mail", "invalid_password": "Passwort muss mindestens 8 Zeichen haben", + "invalid_locale": "Ungültige Sprache", "username_empty": "Benutzername ist leer", "password_empty": "Passwort ist leer", "password_not_match": "Passwörter stimmen nicht überein", @@ -125,6 +126,9 @@ "confirm_new_password": "Neues Passwort bestätigen", "update_password": "Passwort aktualisieren", "password_updated": "Passwort erfolgreich geändert", + "change_locale": "Sprache ändern", + "update_locale": "Sprache aktualisieren", + "locale_updated": "Sprache erfolgreich geändert", "change_avatar": "Avatar ändern", "upload_avatar": "Avatar hochladen", "remove_avatar": "Avatar entfernen", diff --git a/frontend/messages/en.json b/frontend/messages/en.json index d046ef1..c3f244e 100644 --- a/frontend/messages/en.json +++ b/frontend/messages/en.json @@ -101,6 +101,7 @@ "confirm_password": "Password (confirm)", "invalid_email": "Invalid email", "invalid_password": "Password must be at least 8 characters", + "invalid_locale": "Invalid language", "username_empty": "username is empty", "password_empty": "password is empty", "password_not_match": "Pasword does not match", @@ -125,6 +126,9 @@ "confirm_new_password": "Confirm New Password", "update_password": "Update Password", "password_updated": "Password updated successfully", + "change_locale": "Change Language", + "update_locale": "Update Language", + "locale_updated": "Language updated successfully", "change_avatar": "Change Avatar", "upload_avatar": "Upload Avatar", "remove_avatar": "Remove Avatar", diff --git a/frontend/messages/ja.json b/frontend/messages/ja.json index 1d05d02..26e0f01 100644 --- a/frontend/messages/ja.json +++ b/frontend/messages/ja.json @@ -101,6 +101,7 @@ "confirm_password": "パスワード(確認)", "invalid_email": "無効なメールアドレスです", "invalid_password": "パスワードは8文字以上である必要があります", + "invalid_locale": "無効な言語です", "username_empty": "ユーザー名が入力されていません", "password_empty": "パスワードが入力されていません", "password_not_match": "パスワードが一致しません", @@ -125,6 +126,9 @@ "confirm_new_password": "新しいパスワード(確認)", "update_password": "パスワードを更新", "password_updated": "パスワードが正常に更新されました", + "change_locale": "言語の変更", + "update_locale": "言語を更新", + "locale_updated": "言語が正常に更新されました", "change_avatar": "アバターの変更", "upload_avatar": "アバターをアップロード", "remove_avatar": "アバターを削除", diff --git a/frontend/messages/pt-BR.json b/frontend/messages/pt-BR.json index 2dce4f6..eed385f 100644 --- a/frontend/messages/pt-BR.json +++ b/frontend/messages/pt-BR.json @@ -101,6 +101,7 @@ "confirm_password": "Senha (confirmação)", "invalid_email": "E-mail inválido", "invalid_password": "A senha deve ter pelo menos 8 caracteres", + "invalid_locale": "Idioma inválido", "username_empty": "O nome de usuário está vazio", "password_empty": "A senha está vazia", "password_not_match": "A senha não corresponde", @@ -125,6 +126,9 @@ "confirm_new_password": "Confirmar Nova Senha", "update_password": "Atualizar Senha", "password_updated": "Senha atualizada com sucesso", + "change_locale": "Alterar Idioma", + "update_locale": "Atualizar Idioma", + "locale_updated": "Idioma atualizado com sucesso", "change_avatar": "Alterar Avatar", "upload_avatar": "Enviar Avatar", "remove_avatar": "Remover Avatar", diff --git a/frontend/messages/zh-CN.json b/frontend/messages/zh-CN.json index 01344b5..7fa89e6 100644 --- a/frontend/messages/zh-CN.json +++ b/frontend/messages/zh-CN.json @@ -101,6 +101,7 @@ "confirm_password": "确认密码", "invalid_email": "无效的邮箱地址", "invalid_password": "密码必须至少包含 8 个字符", + "invalid_locale": "无效的语言", "username_empty": "用户名不能为空", "password_empty": "密码不能为空", "password_not_match": "密码不匹配", @@ -125,6 +126,9 @@ "confirm_new_password": "确认新密码", "update_password": "更新密码", "password_updated": "密码更新成功", + "change_locale": "修改语言", + "update_locale": "更新语言", + "locale_updated": "语言更新成功", "change_avatar": "修改头像", "upload_avatar": "上传头像", "remove_avatar": "移除头像", diff --git a/frontend/src/app/[locale]/DropdownLanguage.tsx b/frontend/src/app/[locale]/DropdownLanguage.tsx index 18463c1..0a455ba 100644 --- a/frontend/src/app/[locale]/DropdownLanguage.tsx +++ b/frontend/src/app/[locale]/DropdownLanguage.tsx @@ -16,7 +16,7 @@ export default function DropdownLanguage({ locale, onChangeLocale }: Props) { {locales.find((entry) => entry.code === locale)?.name || locale} - + {locales.map((entry) => ( onChangeLocale(entry.code)}> {entry.name} diff --git a/frontend/src/app/[locale]/HeaderNavbarMenu.tsx b/frontend/src/app/[locale]/HeaderNavbarMenu.tsx index d8fe6d0..80f2745 100644 --- a/frontend/src/app/[locale]/HeaderNavbarMenu.tsx +++ b/frontend/src/app/[locale]/HeaderNavbarMenu.tsx @@ -136,7 +136,7 @@ export default function HeaderNavbarMenu({ messages, locale }: Props) {
{}} /> - + {!context.isSignedIn() && }
setIsMenuOpen(!isMenuOpen)} /> @@ -224,51 +224,53 @@ export default function HeaderNavbarMenu({ messages, locale }: Props) { /> ) : ( - - } - title={messages.signIn} - onPress={() => { - router.push('/account/signin', { locale: locale }); - setIsMenuOpen(false); + <> + - } - onPress={() => { - router.push('/account/signup', { locale: locale }); - setIsMenuOpen(false); + > + } + title={messages.signIn} + onPress={() => { + router.push('/account/signin', { locale: locale }); + setIsMenuOpen(false); + }} + /> + } + onPress={() => { + router.push('/account/signup', { locale: locale }); + setIsMenuOpen(false); + }} + /> + +

{messages.languages}

+ - + > + {locales.map((entry) => ( + } + title={entry.name} + onPress={() => { + changeLocale(entry.code); + setIsMenuOpen(false); + }} + /> + ))} +
+ )} -

{messages.languages}

- - {locales.map((entry) => ( - } - title={entry.name} - onPress={() => { - changeLocale(entry.code); - setIsMenuOpen(false); - }} - /> - ))} - diff --git a/frontend/src/app/[locale]/account/authControl.ts b/frontend/src/app/[locale]/account/authControl.ts index f0d77df..29e2481 100644 --- a/frontend/src/app/[locale]/account/authControl.ts +++ b/frontend/src/app/[locale]/account/authControl.ts @@ -60,6 +60,7 @@ async function signInAsGuest() { username: 'Guest', role: roles.findIndex((entry) => entry.uid === 'user'), avatarPath: '', + locale: null, }; const token = await signUp(guestUser); return token; diff --git a/frontend/src/app/[locale]/account/authPage.tsx b/frontend/src/app/[locale]/account/authPage.tsx index d83cea3..096db89 100644 --- a/frontend/src/app/[locale]/account/authPage.tsx +++ b/frontend/src/app/[locale]/account/authPage.tsx @@ -30,6 +30,7 @@ export default function AuthPage({ isSignup, messages, locale }: Props) { username: '', role: roles.findIndex((entry) => entry.uid === 'user'), avatarPath: '', + locale: null, }); const [confirmPassword, setConfirmPassword] = useState(''); const [errorMessage, setErrorMessage] = useState(''); @@ -83,14 +84,14 @@ export default function AuthPage({ isSignup, messages, locale }: Props) { context.setToken(token); context.storeTokenToLocalStorage(token); - router.push('/account', { locale: locale }); + router.push('/account', { locale: token.user?.locale ?? locale }); }; const handleSignInAsGuest = async () => { const token = await signInAsGuest(); context.setToken(token); context.storeTokenToLocalStorage(token); - router.push('/account', { locale: locale }); + router.push('/account', { locale: token.user?.locale ?? locale }); }; return ( diff --git a/frontend/src/app/[locale]/account/settings/ProfileSettingsPage.tsx b/frontend/src/app/[locale]/account/settings/ProfileSettingsPage.tsx index 8a95e03..4e00f09 100644 --- a/frontend/src/app/[locale]/account/settings/ProfileSettingsPage.tsx +++ b/frontend/src/app/[locale]/account/settings/ProfileSettingsPage.tsx @@ -1,11 +1,15 @@ 'use client'; import { useState, useContext, useRef } from 'react'; -import { Button, Input, Card, CardHeader, CardBody, addToast, CardFooter } from '@heroui/react'; +import { Button, Input, Card, CardHeader, CardBody, addToast, CardFooter, Select, SelectItem } from '@heroui/react'; +import { Globe } from 'lucide-react'; import { TokenContext } from '@/utils/TokenProvider'; -import { updateUsername, updatePassword, uploadAvatar, deleteAvatar } from '@/utils/usersControl'; +import { updateUsername, updatePassword, uploadAvatar, deleteAvatar, updateLocale } from '@/utils/usersControl'; import { LocaleCodeType } from '@/types/locale'; import { logError } from '@/utils/errorHandler'; import UserAvatar from '@/components/UserAvatar'; +import { useRouter, usePathname } from '@/src/i18n/routing'; +import { locales } from '@/config/selection'; +import { LocaleType } from '@/types/locale'; type ProfileSettingsPageMessages = { profileSettings: string; @@ -19,6 +23,9 @@ type ProfileSettingsPageMessages = { confirmNewPassword: string; updatePassword: string; passwordUpdated: string; + changeLocale: string; + updateLocale: string; + localeUpdated: string; changeAvatar: string; uploadAvatar: string; removeAvatar: string; @@ -31,6 +38,7 @@ type ProfileSettingsPageMessages = { invalidPassword: string; passwordNotMatch: string; usernameEmpty: string; + invalidLocale: string; }; type Props = { @@ -38,15 +46,21 @@ type Props = { locale: LocaleCodeType; }; -export default function ProfileSettingsPage({ messages }: Props) { +export default function ProfileSettingsPage({ messages, locale: defaultLocale }: Props) { const context = useContext(TokenContext); + + const router = useRouter(); + const pathname = usePathname(); + const fileInputRef = useRef(null); const [username, setUsername] = useState(''); const [currentPassword, setCurrentPassword] = useState(''); const [newPassword, setNewPassword] = useState(''); const [confirmPassword, setConfirmPassword] = useState(''); + const [locale, setLocale] = useState(context.token?.user?.locale ?? defaultLocale); const [isUpdatingUsername, setIsUpdatingUsername] = useState(false); const [isUpdatingPassword, setIsUpdatingPassword] = useState(false); + const [isUpdatingLocale, setIsUpdatingLocale] = useState(false); const [isUploadingAvatar, setIsUploadingAvatar] = useState(false); const handleUsernameUpdate = async () => { @@ -150,6 +164,53 @@ export default function ProfileSettingsPage({ messages }: Props) { } }; + const handleLocaleUpdate = async () => { + if (!locales.some((l) => l.code === locale)) { + addToast({ + title: 'Warning', + color: 'warning', + description: messages.invalidLocale, + }); + return; + } + + setIsUpdatingLocale(true); + try { + const result = await updateLocale(context.token.access_token, locale); + if (result && result.user) { + // refresh locale + const newToken = { ...context.token }; + if (newToken.user) { + newToken.user.locale = result.user.locale; + } + context.setToken(newToken); + context.storeTokenToLocalStorage(newToken); + + addToast({ + title: 'Success', + color: 'success', + description: messages.localeUpdated, + }); + const nextLocale = result.user.locale ?? locale; + setLocale(nextLocale); + changeLocale(nextLocale); + } + } catch (error) { + logError('Error updating locale:', error); + addToast({ + title: 'Error', + color: 'danger', + description: messages.updateError, + }); + } finally { + setIsUpdatingLocale(false); + } + }; + + async function changeLocale(nextLocale: LocaleCodeType) { + router.push(pathname, { locale: nextLocale }); + } + const handleAvatarUpload = async (event: React.ChangeEvent) => { const file = event.target.files?.[0]; if (!file) return; @@ -333,6 +394,46 @@ export default function ProfileSettingsPage({ messages }: Props) { + {/* Change Locale */} + + + +

{messages.changeLocale}

+
+ +
+
+ + fullWidth + aria-label="change locale" + selectedKeys={[locale]} + disabledKeys={[locale]} + onSelectionChange={(value) => { + const selectedLocale = locales.find((locale) => locale.code === value.currentKey); + if (!selectedLocale) return; + setLocale(selectedLocale.code); + }} + > + {locales.map((locale) => ( + {locale.name} + ))} + +
+
+
+ + + +
+ {/* Change Avatar */} diff --git a/frontend/src/app/[locale]/account/settings/page.tsx b/frontend/src/app/[locale]/account/settings/page.tsx index d2d8e94..ef53a3b 100644 --- a/frontend/src/app/[locale]/account/settings/page.tsx +++ b/frontend/src/app/[locale]/account/settings/page.tsx @@ -17,6 +17,9 @@ export default function Page({ params }: PageType) { confirmNewPassword: t('confirm_new_password'), updatePassword: t('update_password'), passwordUpdated: t('password_updated'), + changeLocale: t('change_locale'), + updateLocale: t('update_locale'), + localeUpdated: t('locale_updated'), changeAvatar: t('change_avatar'), uploadAvatar: t('upload_avatar'), removeAvatar: t('remove_avatar'), @@ -29,6 +32,7 @@ export default function Page({ params }: PageType) { invalidPassword: t('invalid_password'), passwordNotMatch: t('password_not_match'), usernameEmpty: t('username_empty'), + invalidLocale: t('invalid_locale'), }; return ; diff --git a/frontend/src/app/[locale]/projects/[projectId]/settings/SettingsPage.tsx b/frontend/src/app/[locale]/projects/[projectId]/settings/SettingsPage.tsx index 0a24be2..8af5cc3 100644 --- a/frontend/src/app/[locale]/projects/[projectId]/settings/SettingsPage.tsx +++ b/frontend/src/app/[locale]/projects/[projectId]/settings/SettingsPage.tsx @@ -43,6 +43,7 @@ export default function SettingsPage({ projectId, messages, projectDialogMessage avatarPath: '', role: -1, username: '', + locale: null, }); useEffect(() => { diff --git a/frontend/types/user.ts b/frontend/types/user.ts index cc3e204..45e2a27 100644 --- a/frontend/types/user.ts +++ b/frontend/types/user.ts @@ -8,6 +8,7 @@ export type UserType = { username: string; role: number; avatarPath: string | null; + locale: LocaleCodeType | null; }; export type TokenProps = { diff --git a/frontend/utils/usersControl.ts b/frontend/utils/usersControl.ts index 211e69f..c226ac5 100644 --- a/frontend/utils/usersControl.ts +++ b/frontend/utils/usersControl.ts @@ -219,6 +219,36 @@ async function adminResetPassword(jwt: string, userId: number, newPassword: stri } } +async function updateLocale(jwt: string, locale: string) { + const updateData = { + locale, + }; + + const fetchOptions = { + method: 'PUT', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${jwt}`, + }, + body: JSON.stringify(updateData), + }; + + const url = `${apiServer}/users/locale`; + + try { + const response = await fetch(url, fetchOptions); + if (!response.ok) { + const errorText = await response.text(); + throw new Error(errorText || `HTTP error! Status: ${response.status}`); + } + const data = await response.json(); + return data; + } catch (error: unknown) { + logError('Error updating locale:', error); + throw error; + } +} + export { findUser, searchUsers, @@ -228,4 +258,5 @@ export { uploadAvatar, deleteAvatar, adminResetPassword, + updateLocale, };