- Modified docker-compose.dev.yml to conditionally run npm install based on the presence of package-lock.json. - Upgraded Nuxt version in package-lock.json from 3.21.1 to 4.3.1 for enhanced features. - Enhanced ConfirmModal component with aria-modal attribute for better accessibility. - Updated MapErrorBoundary component's error message for clarity. - Added role and aria-label attributes to MapView and MapSearch components for improved screen reader support. - Refactored various components to manage focus behavior on modal close, enhancing user experience. - Improved ToastContainer styling for better responsiveness and visibility. - Updated layout components to include skip navigation links for improved accessibility.
127 lines
3.8 KiB
Vue
127 lines
3.8 KiB
Vue
<template>
|
||
<div class="container mx-auto p-4 max-w-2xl min-w-0">
|
||
<h1 class="text-2xl font-bold mb-6">{{ isNew ? 'New user' : `Edit ${username}` }}</h1>
|
||
|
||
<form @submit.prevent="submit" class="flex flex-col gap-4">
|
||
<fieldset class="fieldset">
|
||
<label class="label" for="user">Username</label>
|
||
<input
|
||
id="user"
|
||
v-model="form.user"
|
||
type="text"
|
||
class="input min-h-11 touch-manipulation"
|
||
required
|
||
:readonly="!isNew"
|
||
/>
|
||
</fieldset>
|
||
<p id="admin-user-password-hint" class="text-sm text-base-content/60 mb-1">Leave blank to keep current password.</p>
|
||
<PasswordInput
|
||
v-model="form.pass"
|
||
label="Password"
|
||
autocomplete="new-password"
|
||
aria-describedby="admin-user-password-hint"
|
||
/>
|
||
<fieldset class="fieldset">
|
||
<label class="label">Auths</label>
|
||
<div class="flex flex-wrap gap-2">
|
||
<label v-for="a of authOptions" :key="a" class="label cursor-pointer gap-2" :for="`auth-${a}`">
|
||
<input :id="`auth-${a}`" v-model="form.auths" type="checkbox" :value="a" class="checkbox checkbox-sm" />
|
||
<span>{{ a }}</span>
|
||
</label>
|
||
</div>
|
||
</fieldset>
|
||
<p v-if="error" class="text-error text-sm">{{ error }}</p>
|
||
<div class="flex gap-2">
|
||
<button type="submit" class="btn btn-primary min-h-11 touch-manipulation" :disabled="loading">
|
||
<span v-if="loading" class="loading loading-spinner loading-sm" />
|
||
<span v-else>Save</span>
|
||
</button>
|
||
<NuxtLink to="/admin" class="btn btn-ghost min-h-11 touch-manipulation">Back</NuxtLink>
|
||
<button
|
||
v-if="!isNew"
|
||
type="button"
|
||
class="btn btn-error btn-outline ml-auto min-h-11 touch-manipulation"
|
||
:disabled="loading"
|
||
@click="confirmDelete"
|
||
>
|
||
Delete
|
||
</button>
|
||
</div>
|
||
</form>
|
||
|
||
<ConfirmModal
|
||
v-model="showDeleteModal"
|
||
title="Delete user"
|
||
:message="`Delete user ${form.user}?`"
|
||
confirm-label="Delete"
|
||
:danger="true"
|
||
:loading="deleting"
|
||
@confirm="doDelete"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
definePageMeta({ middleware: 'admin' })
|
||
useHead({ title: 'User – HnH Map' })
|
||
|
||
const route = useRoute()
|
||
const router = useRouter()
|
||
const api = useMapApi()
|
||
const username = computed(() => (route.params.username as string) ?? '')
|
||
const isNew = computed(() => username.value === 'new')
|
||
|
||
const form = ref({ user: '', pass: '', auths: [] as string[] })
|
||
const authOptions = ['admin', 'map', 'markers', 'upload']
|
||
const loading = ref(false)
|
||
const deleting = ref(false)
|
||
const error = ref('')
|
||
const showDeleteModal = ref(false)
|
||
|
||
onMounted(async () => {
|
||
if (!isNew.value) {
|
||
form.value.user = username.value
|
||
try {
|
||
const u = await api.adminUserByName(username.value)
|
||
form.value.auths = u.auths ?? []
|
||
} catch {
|
||
error.value = 'Failed to load user'
|
||
}
|
||
}
|
||
})
|
||
|
||
async function submit() {
|
||
error.value = ''
|
||
loading.value = true
|
||
try {
|
||
await api.adminUserPost({
|
||
user: form.value.user,
|
||
pass: form.value.pass || undefined,
|
||
auths: form.value.auths,
|
||
})
|
||
await router.push('/admin')
|
||
} catch (e: unknown) {
|
||
error.value = e instanceof Error ? e.message : 'Failed'
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
function confirmDelete() {
|
||
showDeleteModal.value = true
|
||
}
|
||
|
||
async function doDelete() {
|
||
deleting.value = true
|
||
try {
|
||
await api.adminUserDelete(form.value.user)
|
||
showDeleteModal.value = false
|
||
await router.push('/admin')
|
||
} catch (e: unknown) {
|
||
error.value = e instanceof Error ? e.message : 'Delete failed'
|
||
} finally {
|
||
deleting.value = false
|
||
}
|
||
}
|
||
</script>
|