-
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
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
-
254
-
255
-
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
-
376
-
377
-
378
-
379
-
380
-
381
-
382
-
383
-
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
-
406
-
407
-
408
// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Button, Flex, Heading, Switch, TextField } from "@radix-ui/themes";
import { type User } from "@yamori/proto/yamori/workspace/v2/user_pb.js";
import { type FC, type FormEventHandler, type ReactElement, type ReactNode } from "react";
import { Controller, useForm, type UseFormReturn } from "react-hook-form";
import * as FormField from "./FormField.ts";
export interface UpdateFields {
name: string;
displayName: string;
canAddUser: boolean;
canDeleteRegularUser: boolean;
canReadOtherUserProfile: boolean;
canUpdateOtherRegularUserProfile: boolean;
canUpdateSelfProfile: boolean;
canUpdateOtherRegularUserLoginMethod: boolean;
canUpdateWorkspace: boolean;
}
export interface CreateFields extends UpdateFields {
loginPassword: string;
}
interface RootProps {
children: ReactNode;
onSubmit?: FormEventHandler<HTMLFormElement>;
}
const Root: FC<RootProps> = ({ children, onSubmit }) => {
return (
<Flex direction="column" gap="5">
<Flex asChild direction="column" gap="5" mt="2">
<form onSubmit={onSubmit}>{children}</form>
</Flex>
</Flex>
);
};
interface ProfileFieldsProps {
children?: ReactElement;
disabled?: boolean;
form: UseFormReturn<UpdateFields, any, undefined>;
}
const ProfileFields: FC<ProfileFieldsProps> = ({ children, disabled, form }) => {
return (
<>
<Heading as="h2">基本情報</Heading>
<FormField.Root>
<FormField.Label htmlFor="c_name">ユーザ名</FormField.Label>
<TextField.Root
id="c_name"
disabled={disabled}
placeholder="hanako_nihon"
color={form.formState.errors.name ? "red" : undefined}
aria-invalid={!!form.formState.errors.name}
autoComplete="username"
{...form.register("name", {
required: "必須です",
setValueAs(value: string) {
return value.trim();
},
})}
/>
<FormField.Description error={form.formState.errors.name?.message}>
ログイン時に利用するユーザ名です。 前後の空白は無視されます。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_displayName">表示名</FormField.Label>
<TextField.Root
id="c_displayName"
disabled={disabled}
placeholder="日本 花子"
color={form.formState.errors.displayName ? "red" : undefined}
aria-invalid={!!form.formState.errors.displayName}
autoComplete="off"
{...form.register("displayName", {
setValueAs(value: string) {
return value.trim();
},
})}
/>
<FormField.Description error={form.formState.errors.displayName?.message}>
他のユーザも閲覧可能な画面上の表示名です。
未指定の場合はユーザ名が設定されます。 前後の空白は無視されます。
</FormField.Description>
</FormField.Root>
{children}
</>
);
};
interface PasswordFieldProps {
disabled?: boolean;
form: UseFormReturn<CreateFields>;
}
const PasswordField: FC<PasswordFieldProps> = ({ disabled, form }) => {
return (
<FormField.Root>
<FormField.Label htmlFor="c_loginPassword">ログインパスワード</FormField.Label>
<TextField.Root
id="c_loginPassword"
disabled={disabled}
color={form.formState.errors.loginPassword ? "red" : undefined}
aria-invalid={!!form.formState.errors.loginPassword}
type="password"
autoComplete="do_not_complete_idiot"
{...form.register("loginPassword", {
required: "必須です",
minLength: {
value: 8,
message: "8文字以上を入力してください",
},
})}
/>
<FormField.Description error={form.formState.errors.loginPassword?.message}>
新たに作成されるユーザが利用するログインパスワードです。
</FormField.Description>
</FormField.Root>
);
};
interface PermissionFieldsProps {
loginUser: User;
disabled?: boolean;
form: UseFormReturn<UpdateFields>;
}
const PermissionFields: FC<PermissionFieldsProps> = ({ loginUser, disabled, form }) => {
return (
<>
<Heading as="h2">権限</Heading>
<FormField.Root>
<FormField.Label htmlFor="c_canUpdateSelfProfile">
アカウント情報編集
</FormField.Label>
<Controller
control={form.control}
name="canUpdateSelfProfile"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canUpdateSelfProfile"
disabled={disabled || !loginUser.permissions?.canUpdateSelfProfile}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
作成されたユーザが自身の表示名を変更するための権限です。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canAddUser">ユーザ作成</FormField.Label>
<Controller
control={form.control}
name="canAddUser"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canAddUser"
disabled={disabled || !loginUser.permissions?.canAddUser}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
システムに新しいユーザを作成・登録する権限です。
このユーザに与えられた権限と同じかそれ未満のユーザのみ作成・登録ができます。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canDeleteRegularUser">ユーザ削除</FormField.Label>
<Controller
control={form.control}
name="canDeleteRegularUser"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canDeleteRegularUser"
disabled={disabled || !loginUser.permissions?.canDeleteRegularUser}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
ユーザを削除する権限です。 管理者の削除は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canReadOtherUserProfile">
他ユーザ情報閲覧
</FormField.Label>
<Controller
control={form.control}
name="canReadOtherUserProfile"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canReadOtherUserProfile"
disabled={disabled || !loginUser.permissions?.canReadOtherUserProfile}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザの基本情報を閲覧する権限です。 ユーザ一覧の表示に必要となります。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canUpdateOtherRegularUserProfile">
他ユーザ情報編集
</FormField.Label>
<Controller
control={form.control}
name="canUpdateOtherRegularUserProfile"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canUpdateOtherRegularUserProfile"
disabled={
disabled || !loginUser.permissions?.canUpdateOtherRegularUserProfile
}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザの基本情報を編集する権限です。
管理者に対する変更は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canUpdateOtherRegularUserLoginMethod">
他ユーザログイン設定変更
</FormField.Label>
<Controller
control={form.control}
name="canUpdateOtherRegularUserLoginMethod"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canUpdateOtherRegularUserLoginMethod"
disabled={
disabled || !loginUser.permissions?.canUpdateOtherRegularUserLoginMethod
}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザのパスワードを変更する権限です。
管理者に対する変更は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
<FormField.Root>
<FormField.Label htmlFor="c_canUpdateWorkspace">
ワークスペース設定変更
</FormField.Label>
<Controller
control={form.control}
name="canUpdateWorkspace"
render={({ field: { onChange: _onChange, value, ...field } }) => (
<Switch
id="c_canUpdateWorkspace"
disabled={disabled || !loginUser.permissions?.canUpdateWorkspace}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
カスタム休暇の登録やカスタム属性の登録、年次有給休暇の払い出しテーブルの変更といった
ワークスペース全体の変更を行う権限です。
</FormField.Description>
</FormField.Root>
</>
);
};
export interface CreateFormProps {
loginUser: User;
pending?: boolean;
onCreate?(fields: CreateFields): void;
}
export const CreateForm: FC<CreateFormProps> = ({ loginUser, pending, onCreate }) => {
const form = useForm<CreateFields>({
defaultValues: {
name: "",
displayName: "",
loginPassword: "",
canAddUser: false,
canDeleteRegularUser: false,
canReadOtherUserProfile: false,
canUpdateOtherRegularUserProfile: false,
canUpdateSelfProfile: loginUser.permissions?.canUpdateSelfProfile ?? false,
canUpdateOtherRegularUserLoginMethod: false,
canUpdateWorkspace: false,
},
mode: "onBlur",
});
return (
<Root
onSubmit={form.handleSubmit((values) => {
onCreate?.(values);
})}
>
<ProfileFields
disabled={pending}
// @ts-expect-error react-hook-form における型設計ミス
// https://github.com/react-hook-form/react-hook-form/issues/6726
form={form}
>
<PasswordField disabled={pending} form={form} />
</ProfileFields>
<PermissionFields
disabled={pending}
// @ts-expect-error react-hook-form における型設計ミス
// https://github.com/react-hook-form/react-hook-form/issues/6726
form={form}
loginUser={loginUser}
/>
<Button loading={pending}>作成</Button>
</Root>
);
};
export interface UpdateFormProps {
loginUser: User;
user: User;
pending?: boolean;
onUpdate?(fields: UpdateFields): void;
}
export const UpdateForm: FC<UpdateFormProps> = ({
loginUser,
user,
pending,
onUpdate,
}) => {
const form = useForm<UpdateFields>({
defaultValues: {
name: user.name,
displayName: user.displayName,
canAddUser: !!user.permissions?.canAddUser,
canDeleteRegularUser: !!user.permissions?.canDeleteRegularUser,
canReadOtherUserProfile: !!user.permissions?.canReadOtherUserProfile,
canUpdateOtherRegularUserProfile:
!!user.permissions?.canUpdateOtherRegularUserProfile,
canUpdateSelfProfile: !!user.permissions?.canUpdateSelfProfile,
canUpdateOtherRegularUserLoginMethod:
!!user.permissions?.canUpdateOtherRegularUserLoginMethod,
canUpdateWorkspace: !!user.permissions?.canUpdateWorkspace,
},
mode: "onBlur",
});
return (
<Root
onSubmit={form.handleSubmit((values) => {
onUpdate?.(values);
})}
>
<ProfileFields disabled={pending} form={form} />
<PermissionFields disabled={pending} form={form} loginUser={loginUser} />
<Button loading={pending}>更新</Button>
</Root>
);
};