mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 15:04:43 +00:00
120 lines
3.0 KiB
Svelte
120 lines
3.0 KiB
Svelte
<script lang="ts">
|
|
import AuditLogList from '$lib/components/audit-log-list.svelte';
|
|
import SearchableSelect from '$lib/components/form/searchable-select.svelte';
|
|
import * as Card from '$lib/components/ui/card';
|
|
import * as Select from '$lib/components/ui/select';
|
|
import { m } from '$lib/paraglide/messages';
|
|
import AuditLogService from '$lib/services/audit-log-service';
|
|
import type { AuditLogFilter } from '$lib/types/audit-log.type';
|
|
import { eventTypes as eventTranslations } from '$lib/utils/audit-log-translator';
|
|
import AuditLogSwitcher from '../audit-log-switcher.svelte';
|
|
|
|
const auditLogService = new AuditLogService();
|
|
let auditLogListRef: AuditLogList;
|
|
|
|
let filters: AuditLogFilter = $state({
|
|
userID: '',
|
|
event: '',
|
|
location: '',
|
|
clientName: ''
|
|
});
|
|
|
|
const locationTypes = $state({
|
|
external: 'External Networks',
|
|
internal: 'Internal Networks'
|
|
});
|
|
|
|
const eventTypes = $state(eventTranslations);
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>{m.global_audit_log()}</title>
|
|
</svelte:head>
|
|
|
|
<AuditLogSwitcher currentPage="global" />
|
|
|
|
<Card.Root>
|
|
<Card.Header>
|
|
<Card.Title>{m.global_audit_log()}</Card.Title>
|
|
<Card.Description class="mt-1">{m.see_all_recent_account_activities()}</Card.Description>
|
|
</Card.Header>
|
|
<Card.Content>
|
|
<div class="mb-6 grid grid-cols-1 gap-4 md:grid-cols-4">
|
|
<div>
|
|
{#await auditLogService.listUsers()}
|
|
<Select.Root type="single">
|
|
<Select.Trigger class="w-full" disabled>
|
|
{m.all_users()}
|
|
</Select.Trigger>
|
|
</Select.Root>
|
|
{:then users}
|
|
<SearchableSelect
|
|
class="w-full"
|
|
items={[
|
|
{ value: '', label: m.all_users() },
|
|
...Object.entries(users).map(([id, username]) => ({
|
|
value: id,
|
|
label: username
|
|
}))
|
|
]}
|
|
bind:value={filters.userID}
|
|
/>
|
|
{/await}
|
|
</div>
|
|
<div>
|
|
<SearchableSelect
|
|
class="w-full"
|
|
items={[
|
|
{ value: '', label: m.all_events() },
|
|
...Object.entries(eventTypes).map(([value, label]) => ({
|
|
value,
|
|
label
|
|
}))
|
|
]}
|
|
bind:value={filters.event}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<SearchableSelect
|
|
disableSearch={true}
|
|
class="w-full"
|
|
items={[
|
|
{ value: '', label: m.all_locations() },
|
|
...Object.entries(locationTypes).map(([value, label]) => ({
|
|
value,
|
|
label
|
|
}))
|
|
]}
|
|
bind:value={filters.location}
|
|
/>
|
|
</div>
|
|
<div>
|
|
{#await auditLogService.listClientNames()}
|
|
<Select.Root
|
|
type="single"
|
|
value={filters.clientName}
|
|
onValueChange={(v) => (filters.clientName = v)}
|
|
>
|
|
<Select.Trigger class="w-full" disabled>
|
|
{m.all_clients()}
|
|
</Select.Trigger>
|
|
</Select.Root>
|
|
{:then clientNames}
|
|
<SearchableSelect
|
|
class="w-full"
|
|
items={[
|
|
{ value: '', label: m.all_clients() },
|
|
...clientNames.map((name) => ({
|
|
value: name,
|
|
label: name
|
|
}))
|
|
]}
|
|
bind:value={filters.clientName}
|
|
/>
|
|
{/await}
|
|
</div>
|
|
</div>
|
|
<AuditLogList bind:this={auditLogListRef} isAdmin {filters} />
|
|
</Card.Content>
|
|
</Card.Root>
|