-
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
-
409
-
410
-
411
-
412
-
413
-
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
-
426
-
427
-
428
-
429
-
430
-
431
-
432
-
433
-
434
-
435
-
436
-
437
-
438
-
439
-
440
-
441
-
442
// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import "../../../polyfill.ts";
import { type MessageInitShape } from "@bufbuild/protobuf";
import { createClient } from "@connectrpc/connect";
import {
Button,
Box,
Container,
Flex,
Heading,
Switch,
TextField,
} from "@radix-ui/themes";
import { useMutation } from "@tanstack/react-query";
import { type CreateUserRequestSchema } from "@yamori/proto/yamori/workspace/v2/create_user_request_pb.js";
import { type User } from "@yamori/proto/yamori/workspace/v2/user_pb.js";
import { WorkspaceService } from "@yamori/proto/yamori/workspace/v2/workspace_service_pb.js";
import { type FC, use } from "react";
import { Controller, useForm } from "react-hook-form";
import * as Empty from "../../../components/Empty.ts";
import * as FormField from "../../../components/FormField.ts";
import { ManagedErrorCallout } from "../../../components/ErrorCallout.ts";
import { useConnectTransport } from "../../../contexts/ConnectTransport.tsx";
import { NavigationContext } from "../../../contexts/Router.tsx";
import { useToast } from "../../../contexts/Toast.tsx";
import { IllegalMessageError } from "../../../errors/IllegalMessageError.ts";
import { UserInputError } from "../../../errors/UserInputError.ts";
import { LoggedInLayout } from "../../LoggedInLayout.tsx";
export const Title: FC = () => "ユーザ作成";
export function hasAccess(loginUser: User): boolean {
return !!loginUser.permissions?.canAddUser;
}
export const NoAccess: FC = () => {
return (
<Empty.Root>
<Empty.Title>作成権限がありません</Empty.Title>
<Empty.Description>
ユーザの作成権限がないためページを表示できません。
</Empty.Description>
</Empty.Root>
);
};
interface BodyProps {
loginUser: User;
onCreated?(): void;
}
const Body: FC<BodyProps> = ({ loginUser, onCreated }) => {
const toast = useToast();
const transport = useConnectTransport();
const client = createClient(WorkspaceService, transport);
const creation = useMutation({
async mutationFn(req: MessageInitShape<typeof CreateUserRequestSchema>) {
const resp = await client.createUser(req);
if (resp.result.case === "ok") {
return resp.result.value;
}
if (resp.result.case === "duplicatedName") {
throw new UserInputError("ユーザ名が同一の別ユーザが既に存在します");
}
if (resp.result.case === "passwordLessThanBytes") {
throw new UserInputError(
`${resp.result.value}文字以上のパスワードを入力してください`,
);
}
if (typeof resp.result.case === "string") {
throw resp.result.value;
}
throw new IllegalMessageError(resp);
},
onSuccess(user) {
onCreated?.();
toast.open({
severity: "success",
title: `ユーザ「${user.displayName}」を作成しました`,
dismissible: true,
type: "foreground",
});
},
});
const form = useForm<{
name: string;
displayName: string;
loginPassword: string;
canAddUser: boolean;
canDeleteRegularUser: boolean;
canReadOtherUserProfile: boolean;
canUpdateOtherRegularUserProfile: boolean;
canUpdateSelfProfile: boolean;
canUpdateOtherRegularUserLoginMethod: boolean;
canUpdateWorkspace: boolean;
}>({
defaultValues: {
name: "",
displayName: "",
loginPassword: "",
canAddUser: false,
canDeleteRegularUser: false,
canReadOtherUserProfile: false,
canUpdateOtherRegularUserProfile: false,
canUpdateSelfProfile: loginUser.permissions?.canUpdateSelfProfile ?? false,
canUpdateOtherRegularUserLoginMethod: false,
canUpdateWorkspace: false,
},
mode: "onBlur",
});
return (
<Flex direction="column" mt="5" gap="5">
<Flex asChild direction="column" gap="5" mt="2">
<form
onSubmit={form.handleSubmit(({ name, displayName, loginPassword, ...rest }) => {
creation.mutate({
name,
displayName,
password: loginPassword,
permissions: rest,
});
})}
>
{creation.error ? (
<Box position="sticky" top="0" pt="2">
<ManagedErrorCallout
style={{ backdropFilter: "blur(2em)" }}
role="alert"
error={creation.error}
actions={
<Button
size="1"
variant="outline"
type="button"
onClick={() => void creation.reset()}
>
閉じる
</Button>
}
title="作成に失敗しました"
/>
</Box>
) : (
<div />
)}
<Heading as="h2">基本情報</Heading>
<FormField.Root>
<FormField.Label htmlFor="c_name">ユーザ名</FormField.Label>
<TextField.Root
id="c_name"
disabled={creation.isPending}
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={creation.isPending}
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>
<FormField.Root>
<FormField.Label htmlFor="c_loginPassword">
ログインパスワード
</FormField.Label>
<TextField.Root
id="c_loginPassword"
disabled={creation.isPending}
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>
<Heading as="h2">権限</Heading>
{loginUser.permissions?.canUpdateSelfProfile && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
作成されたユーザが自身の表示名を変更するための権限です。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canAddUser && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
システムに新しいユーザを作成・登録する権限です。
このユーザに与えられた権限と同じかそれ未満のユーザのみ作成・登録ができます。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canDeleteRegularUser && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
ユーザを削除する権限です。 管理者の削除は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canReadOtherUserProfile && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザの基本情報を閲覧する権限です。
ユーザ一覧の表示に必要となります。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canUpdateOtherRegularUserProfile && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザの基本情報を編集する権限です。
管理者に対する変更は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canUpdateOtherRegularUserLoginMethod && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
他のユーザのパスワードを変更する権限です。
管理者に対する変更は管理者のみ行えます。
</FormField.Description>
</FormField.Root>
)}
{loginUser.permissions?.canUpdateWorkspace && (
<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={creation.isPending}
checked={value}
onCheckedChange={(newValue) => {
form.setValue(field.name, newValue);
}}
{...field}
/>
)}
/>
<FormField.Description>
カスタム休暇の登録やカスタム属性の登録、年次有給休暇の払い出しテーブルの変更といった
ワークスペース全体の変更を行う権限です。
</FormField.Description>
</FormField.Root>
)}
<Button loading={creation.isPending}>作成</Button>
</form>
</Flex>
</Flex>
);
};
export interface PageProps {
loginUser: User;
}
export const Page: FC<PageProps> = ({ loginUser }) => {
const navigation = use(NavigationContext);
return (
<LoggedInLayout title={<Title />} user={loginUser}>
<Container p="2" size="2">
{hasAccess(loginUser) ? (
<Body
loginUser={loginUser}
onCreated={() => {
navigation.push("/users");
}}
/>
) : (
<NoAccess />
)}
</Container>
</LoggedInLayout>
);
};
export function createHref(): string {
return "/user/new";
}
export const pattern = new URLPattern({
pathname: "/user/new",
});