From 2db5a51582c3c03c34328b1f068e0d826257b16e Mon Sep 17 00:00:00 2001
From: tobi <31960611+tsmethurst@users.noreply.github.com>
Date: Tue, 27 Aug 2024 12:16:45 +0200
Subject: [PATCH] [chore/frontend] Present themes as dropdown instead of radio
(#3244)
---
web/source/settings/views/user/profile.tsx | 44 +++++++++++++---------
1 file changed, 27 insertions(+), 17 deletions(-)
diff --git a/web/source/settings/views/user/profile.tsx b/web/source/settings/views/user/profile.tsx
index 6d476f80f..18c96e869 100644
--- a/web/source/settings/views/user/profile.tsx
+++ b/web/source/settings/views/user/profile.tsx
@@ -17,14 +17,13 @@
along with this program. If not, see .
*/
-import React from "react";
+import React, { useMemo } from "react";
import {
useTextInput,
useFileInput,
useBoolInput,
useFieldArrayInput,
- useRadioInput
} from "../../lib/form";
import useFormSubmit from "../../lib/form/submit";
@@ -35,7 +34,7 @@ import {
TextArea,
FileInput,
Checkbox,
- RadioGroup
+ Select
} from "../../components/form/inputs";
import FormWithData from "../../lib/form/form-with-data";
@@ -81,15 +80,28 @@ function UserProfileForm({ data: profile }) {
// Parse out available theme options into nice format.
const { data: themes } = useAccountThemesQuery();
- let themeOptions = { "": "Default" };
- themes?.forEach((theme) => {
- let key = theme.file_name;
- let value = theme.title;
- if (theme.description) {
- value += " - " + theme.description;
- }
- themeOptions[key] = value;
- });
+ const themeOptions = useMemo(() => {
+ let themeOptions = [
+
+ ];
+
+ themes?.forEach((theme) => {
+ const value = theme.file_name;
+ let text = theme.title;
+ if (theme.description) {
+ text += " - " + theme.description;
+ }
+ themeOptions.push(
+
+ );
+ });
+
+ return themeOptions;
+ }, [themes]);
const form = {
avatar: useFileInput("avatar", { withPreview: true }),
@@ -108,10 +120,7 @@ function UserProfileForm({ data: profile }) {
length: instanceConfig.maxPinnedFields
}),
customCSS: useTextInput("custom_css", { source: profile, nosubmit: !instanceConfig.allowCustomCSS }),
- theme: useRadioInput("theme", {
- source: profile,
- options: themeOptions,
- }),
+ theme: useTextInput("theme", { source: profile }),
};
const [submitForm, result] = useFormSubmit(form, useUpdateCredentialsMutation(), {
@@ -169,9 +178,10 @@ function UserProfileForm({ data: profile }) {
After choosing theme and saving, open your profile and refresh to see changes.
- {themeOptions}>}
/>