Implement passkey login functionality and enhance passkey support checks
All checks were successful
Code Analysis and Production Deploy / analyze (push) Has been skipped
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Successful in 2m7s

This commit is contained in:
Torsten Schulz (local)
2026-05-15 13:20:09 +02:00
parent dba2747883
commit 8ae7dcdbf1
4 changed files with 119 additions and 16 deletions

View File

@@ -86,7 +86,7 @@
<!-- Submit Button -->
<button
type="submit"
:disabled="isLoading"
:disabled="isLoading || passkeyLoading"
class="w-full px-6 py-3 bg-primary-600 hover:bg-primary-700 disabled:bg-gray-400 text-white font-semibold rounded-lg transition-colors flex items-center justify-center"
>
<Loader2
@@ -97,6 +97,32 @@
<span>{{ isLoading ? 'Anmeldung läuft...' : 'Anmelden' }}</span>
</button>
<button
type="button"
:disabled="isLoading || passkeyLoading || !isPasskeySupported"
class="w-full px-6 py-3 border border-gray-300 bg-white hover:bg-gray-50 disabled:bg-gray-100 disabled:text-gray-400 text-gray-800 font-semibold rounded-lg transition-colors flex items-center justify-center"
@click="handlePasskeyLogin"
>
<Loader2
v-if="passkeyLoading"
:size="20"
class="mr-2 animate-spin"
/>
<Lock
v-else
:size="18"
class="mr-2"
/>
<span>{{ passkeyLoading ? 'Passkey-Anmeldung läuft...' : 'Mit Passkey anmelden' }}</span>
</button>
<p
v-if="!isPasskeySupported"
class="text-xs text-gray-500 text-center"
>
{{ passkeySupportReason || 'Passkeys sind in diesem Browser aktuell nicht verfügbar.' }}
</p>
<!-- Forgot Password Link -->
<div class="text-center">
<NuxtLink
@@ -124,7 +150,7 @@
</template>
<script setup>
import { ref } from 'vue'
import { onMounted, ref } from 'vue'
import { useRouter } from 'vue-router'
import { AlertCircle, Check, Loader2, Lock } from 'lucide-vue-next'
@@ -137,8 +163,26 @@ const formData = ref({
})
const isLoading = ref(false)
const passkeyLoading = ref(false)
const errorMessage = ref('')
const successMessage = ref('')
const isPasskeySupported = ref(false)
const passkeySupportReason = ref('')
onMounted(() => {
const hasPublicKeyCredential = typeof window !== 'undefined' && typeof window.PublicKeyCredential !== 'undefined'
const secureContext = typeof window !== 'undefined' && !!window.isSecureContext
isPasskeySupported.value = !!(hasPublicKeyCredential && secureContext)
if (!secureContext) {
passkeySupportReason.value = 'Passkeys benötigen HTTPS (oder localhost).'
} else if (!hasPublicKeyCredential) {
passkeySupportReason.value = 'Dieser Browser unterstützt WebAuthn/Passkeys nicht.'
} else {
passkeySupportReason.value = ''
}
})
const handleLogin = async () => {
isLoading.value = true
@@ -170,8 +214,35 @@ const handleLogin = async () => {
}
}
// Passkey-Login vorläufig deaktiviert
// const handlePasskeyLogin = async () => { ... }
const handlePasskeyLogin = async () => {
passkeyLoading.value = true
errorMessage.value = ''
successMessage.value = ''
try {
const response = await authStore.passkeyLogin(formData.value.email)
if (response.success) {
successMessage.value = 'Passkey-Anmeldung erfolgreich! Sie werden weitergeleitet...'
setTimeout(() => {
const roles = response.user.roles || (response.user.role ? [response.user.role] : [])
if (roles.includes('trainer')) {
router.push('/cms/kontaktanfragen')
} else if (roles.includes('admin') || roles.includes('vorstand') || roles.includes('newsletter')) {
router.push('/cms')
} else {
router.push('/mitgliederbereich')
}
}, 1000)
}
} catch (error) {
const message = error?.data?.message || error?.message || 'Passkey-Anmeldung fehlgeschlagen.'
errorMessage.value = message
} finally {
passkeyLoading.value = false
}
}
definePageMeta({
layout: 'default'