mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 15:53:04 +03:00
75 lines
2.3 KiB
Svelte
75 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import CollapsibleCard from '$lib/components/collapsible-card.svelte';
|
|
import Badge from '$lib/components/ui/badge/badge.svelte';
|
|
import { Button } from '$lib/components/ui/button';
|
|
import * as Card from '$lib/components/ui/card';
|
|
import CustomClaimService from '$lib/services/custom-claim-service';
|
|
import UserService from '$lib/services/user-service';
|
|
import type { UserCreate } from '$lib/types/user.type';
|
|
import { axiosErrorToast } from '$lib/utils/error-util';
|
|
import { LucideChevronLeft } from 'lucide-svelte';
|
|
import { toast } from 'svelte-sonner';
|
|
import CustomClaimsInput from '../../../../../lib/components/custom-claims-input.svelte';
|
|
import UserForm from '../user-form.svelte';
|
|
|
|
let { data } = $props();
|
|
let user = $state(data);
|
|
|
|
const userService = new UserService();
|
|
const customClaimService = new CustomClaimService();
|
|
|
|
async function updateUser(updatedUser: UserCreate) {
|
|
let success = true;
|
|
await userService
|
|
.update(user.id, updatedUser)
|
|
.then(() => toast.success('User updated successfully'))
|
|
.catch((e) => {
|
|
axiosErrorToast(e);
|
|
success = false;
|
|
});
|
|
|
|
return success;
|
|
}
|
|
|
|
async function updateCustomClaims() {
|
|
await customClaimService
|
|
.updateUserCustomClaims(user.id, user.customClaims)
|
|
.then(() => toast.success('Custom claims updated successfully'))
|
|
.catch((e) => {
|
|
axiosErrorToast(e);
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>User Details {user.firstName} {user.lastName}</title>
|
|
</svelte:head>
|
|
|
|
<div class="flex items-center justify-between">
|
|
<a class="text-muted-foreground flex text-sm" href="/settings/admin/users"
|
|
><LucideChevronLeft class="h-5 w-5" /> Back</a
|
|
>
|
|
{#if !!user.ldapId}
|
|
<Badge variant="default" class="">LDAP</Badge>
|
|
{/if}
|
|
</div>
|
|
<Card.Root>
|
|
<Card.Header>
|
|
<Card.Title>General</Card.Title>
|
|
</Card.Header>
|
|
<Card.Content>
|
|
<UserForm existingUser={user} callback={updateUser} />
|
|
</Card.Content>
|
|
</Card.Root>
|
|
|
|
<CollapsibleCard
|
|
id="user-custom-claims"
|
|
title="Custom Claims"
|
|
description="Custom claims are key-value pairs that can be used to store additional information about a user. These claims will be included in the ID token if the scope 'profile' is requested."
|
|
>
|
|
<CustomClaimsInput bind:customClaims={user.customClaims} />
|
|
<div class="mt-5 flex justify-end">
|
|
<Button onclick={updateCustomClaims} type="submit">Save</Button>
|
|
</div>
|
|
</CollapsibleCard>
|