1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
"use client";
import { useEffect } from "react";
import { useClientConfig } from "@/lib/clientConfig";
import { useTranslation } from "@/lib/i18n/client";
import { useInterfaceLang } from "@/lib/userLocalSettings/bookmarksLayout";
import { updateInterfaceLang } from "@/lib/userLocalSettings/userLocalSettings";
import { useUserSettings } from "@/lib/userSettings";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { useUpdateUserSettings } from "@karakeep/shared-react/hooks/users";
import { langNameMappings } from "@karakeep/shared/langs";
import {
ZUserSettings,
zUserSettingsSchema,
} from "@karakeep/shared/types/users";
import { Form, FormField } from "../ui/form";
import { Label } from "../ui/label";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "../ui/select";
import { toast } from "../ui/use-toast";
const LanguageSelect = () => {
const lang = useInterfaceLang();
return (
<Select
value={lang}
onValueChange={async (val) => {
await updateInterfaceLang(val);
}}
>
<SelectTrigger>
<SelectValue />
</SelectTrigger>
<SelectContent>
{Object.entries(langNameMappings).map(([lang, name]) => (
<SelectItem key={lang} value={lang}>
{name}
</SelectItem>
))}
</SelectContent>
</Select>
);
};
export default function UserSettings() {
const { t } = useTranslation();
const clientConfig = useClientConfig();
const data = useUserSettings();
const { mutate } = useUpdateUserSettings({
onSuccess: () => {
toast({
description: t("settings.info.user_settings.user_settings_updated"),
});
},
onError: () => {
toast({
description: t("common.something_went_wrong"),
variant: "destructive",
});
},
});
const bookmarkClickActionTranslation: Record<
ZUserSettings["bookmarkClickAction"],
string
> = {
open_original_link: t(
"settings.info.user_settings.bookmark_click_action.open_external_url",
),
expand_bookmark_preview: t(
"settings.info.user_settings.bookmark_click_action.open_bookmark_details",
),
};
const archiveDisplayBehaviourTranslation: Record<
ZUserSettings["archiveDisplayBehaviour"],
string
> = {
show: t("settings.info.user_settings.archive_display_behaviour.show"),
hide: t("settings.info.user_settings.archive_display_behaviour.hide"),
};
const form = useForm<z.infer<typeof zUserSettingsSchema>>({
resolver: zodResolver(zUserSettingsSchema),
defaultValues: data,
});
// When the actual user setting is loaded, reset the form to the current value
useEffect(() => {
form.reset(data);
}, [data]);
return (
<Form {...form}>
<FormField
control={form.control}
name="bookmarkClickAction"
render={({ field }) => (
<div className="flex w-full flex-col gap-2">
<Label>
{t("settings.info.user_settings.bookmark_click_action.title")}
</Label>
<Select
disabled={!!clientConfig.demoMode}
value={field.value}
onValueChange={(value) => {
mutate({
bookmarkClickAction:
value as ZUserSettings["bookmarkClickAction"],
});
}}
>
<SelectTrigger>
<SelectValue>
{bookmarkClickActionTranslation[field.value]}
</SelectValue>
</SelectTrigger>
<SelectContent>
{Object.entries(bookmarkClickActionTranslation).map(
([value, label]) => (
<SelectItem key={value} value={value}>
{label}
</SelectItem>
),
)}
</SelectContent>
</Select>
</div>
)}
/>
<FormField
control={form.control}
name="archiveDisplayBehaviour"
render={({ field }) => (
<div className="flex w-full flex-col gap-2">
<Label>
{t("settings.info.user_settings.archive_display_behaviour.title")}
</Label>
<Select
disabled={!!clientConfig.demoMode}
value={field.value}
onValueChange={(value) => {
mutate({
archiveDisplayBehaviour:
value as ZUserSettings["archiveDisplayBehaviour"],
});
}}
>
<SelectTrigger>
<SelectValue>
{archiveDisplayBehaviourTranslation[field.value]}
</SelectValue>
</SelectTrigger>
<SelectContent>
{Object.entries(archiveDisplayBehaviourTranslation).map(
([value, label]) => (
<SelectItem key={value} value={value}>
{label}
</SelectItem>
),
)}
</SelectContent>
</Select>
</div>
)}
/>
</Form>
);
}
export function UserOptions() {
const { t } = useTranslation();
return (
<div className="flex flex-col sm:flex-row">
<div className="mb-4 w-full text-lg font-medium sm:w-1/3">
{t("settings.info.options")}
</div>
<div className="flex w-full flex-col gap-3">
<div className="flex w-full flex-col gap-2">
<Label>{t("settings.info.interface_lang")}</Label>
<LanguageSelect />
</div>
<UserSettings />
</div>
</div>
);
}
|