feat(portal): strip Vuexy demo content and create clean portal shell

Remove all demo pages, dialogs, sidebar navigation, and layout components.
Create minimal top-bar portal layout with auth-aware navigation, placeholder
pages for volunteer registration, dashboard, shifts, profile, artist advance,
and login. Add Pinia auth store, axios with Sanctum support, and router guards.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-10 17:38:55 +02:00
parent 853271f0c2
commit 87f0bcce6e
54 changed files with 558 additions and 4185 deletions

View File

@@ -1,54 +0,0 @@
<script setup lang="ts">
import { useGenerateImageVariant } from '@core/composable/useGenerateImageVariant'
import misc404 from '@images/pages/404.png'
import miscMaskDark from '@images/pages/misc-mask-dark.png'
import miscMaskLight from '@images/pages/misc-mask-light.png'
const authThemeMask = useGenerateImageVariant(miscMaskLight, miscMaskDark)
definePage({
alias: '/pages/misc/not-found/:error(.*)',
meta: {
layout: 'blank',
public: true,
},
})
</script>
<template>
<div class="misc-wrapper">
<ErrorHeader
status-code="404"
title="Page Not Found ⚠️"
description="We couldn't find the page you are looking for."
/>
<VBtn
to="/"
class="mb-11"
>
Back to Home
</VBtn>
<!-- 👉 Image -->
<div class="misc-avatar w-100 text-center">
<VImg
:src="misc404"
alt="error 404"
:max-height="$vuetify.display.smAndDown ? 350 : 500"
class="mx-auto"
/>
</div>
<img
class="misc-footer-img d-none d-md-block"
:src="authThemeMask"
alt="misc-footer-img"
height="320"
>
</div>
</template>
<style lang="scss">
@use "@core/scss/template/pages/misc.scss";
</style>

View File

@@ -0,0 +1,36 @@
<script setup lang="ts">
definePage({
name: 'not-found',
meta: {
layout: 'blank',
requiresAuth: false,
},
})
</script>
<template>
<VApp>
<VMain class="d-flex align-center justify-center" style="min-height: 100vh;">
<VCard
max-width="450"
width="100%"
class="text-center pa-6 ma-4"
>
<VCardTitle class="text-h4 mb-2">
404
</VCardTitle>
<VCardSubtitle class="text-h6 mb-4">
Pagina niet gevonden
</VCardSubtitle>
<VCardText>
<VBtn
color="primary"
to="/"
>
Terug naar home
</VBtn>
</VCardText>
</VCard>
</VMain>
</VApp>
</template>

View File

@@ -0,0 +1,35 @@
<script setup lang="ts">
definePage({
name: 'artist-advance',
meta: {
layout: 'portal',
requiresAuth: false,
requiresToken: true,
},
})
const route = useRoute('artist-advance')
const token = computed(() => route.params.token)
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Artist Advance Portal
</VCardTitle>
<VCardSubtitle>
Vul je technische en hospitality riders in
</VCardSubtitle>
<VCardText class="text-body-1 mt-4">
Token: <code>{{ token }}</code>
</VCardText>
</VCard>
</VCol>
</VRow>
</template>

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
definePage({
name: 'portal-dashboard',
meta: {
layout: 'portal',
requiresAuth: true,
},
})
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Mijn Dashboard
</VCardTitle>
<VCardSubtitle>
Welkom terug! Hier zie je je shifts en informatie.
</VCardSubtitle>
</VCard>
</VCol>
</VRow>
</template>

View File

@@ -1,25 +1,51 @@
<template>
<div>
<VCard
class="mb-6"
title="Kick start your project 🚀"
>
<VCardText>All the best for your new project.</VCardText>
<VCardText>
Please make sure to read our <a
href="https://demos.pixinvent.com/vuexy-vuejs-admin-template/documentation/"
target="_blank"
rel="noopener noreferrer"
class="text-decoration-none"
>
Template Documentation
</a> to understand where to go from here and how to use our template.
</VCardText>
</VCard>
<script setup lang="ts">
import { useAuthStore } from '@/stores/useAuthStore'
<VCard title="Want to integrate JWT? 🔒">
<VCardText>We carefully crafted JWT flow so you can implement JWT with ease and with minimum efforts.</VCardText>
<VCardText>Please read our JWT Documentation to get more out of JWT authentication.</VCardText>
</VCard>
</div>
definePage({
name: 'root',
meta: {
layout: 'portal',
requiresAuth: false,
},
})
const router = useRouter()
const authStore = useAuthStore()
onMounted(async () => {
if (!authStore.isInitialized) {
await authStore.initialize()
}
if (authStore.isAuthenticated) {
router.replace('/dashboard')
}
})
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Crewli Portal
</VCardTitle>
<VCardSubtitle>
Welkom bij het Crewli Portal
</VCardSubtitle>
<VCardText class="mt-4">
<VBtn
color="primary"
to="/login"
>
Inloggen
</VBtn>
</VCardText>
</VCard>
</VCol>
</VRow>
</template>

View File

@@ -1,185 +1,65 @@
<script setup lang="ts">
import AuthProvider from '@/views/pages/authentication/AuthProvider.vue'
import { useGenerateImageVariant } from '@core/composable/useGenerateImageVariant'
import authV2LoginIllustrationBorderedDark from '@images/pages/auth-v2-login-illustration-bordered-dark.png'
import authV2LoginIllustrationBorderedLight from '@images/pages/auth-v2-login-illustration-bordered-light.png'
import authV2LoginIllustrationDark from '@images/pages/auth-v2-login-illustration-dark.png'
import authV2LoginIllustrationLight from '@images/pages/auth-v2-login-illustration-light.png'
import authV2MaskDark from '@images/pages/misc-mask-dark.png'
import authV2MaskLight from '@images/pages/misc-mask-light.png'
import { VNodeRenderer } from '@layouts/components/VNodeRenderer'
import { themeConfig } from '@themeConfig'
definePage({
name: 'login',
meta: {
layout: 'blank',
public: true,
requiresAuth: false,
},
})
const form = ref({
email: '',
password: '',
remember: false,
})
const isPasswordVisible = ref(false)
const authThemeImg = useGenerateImageVariant(
authV2LoginIllustrationLight,
authV2LoginIllustrationDark,
authV2LoginIllustrationBorderedLight,
authV2LoginIllustrationBorderedDark,
true)
const authThemeMask = useGenerateImageVariant(authV2MaskLight, authV2MaskDark)
</script>
<template>
<a href="javascript:void(0)">
<div class="auth-logo d-flex align-center gap-x-3">
<VNodeRenderer :nodes="themeConfig.app.logo" />
<h1 class="auth-title">
{{ themeConfig.app.title }}
</h1>
</div>
</a>
<VRow
no-gutters
class="auth-wrapper bg-surface"
>
<VCol
md="8"
class="d-none d-md-flex"
>
<div class="position-relative bg-background w-100 me-0">
<div
class="d-flex align-center justify-center w-100 h-100"
style="padding-inline: 6.25rem;"
>
<VImg
max-width="613"
:src="authThemeImg"
class="auth-illustration mt-16 mb-2"
/>
</div>
<img
class="auth-footer-mask flip-in-rtl"
:src="authThemeMask"
alt="auth-footer-mask"
height="280"
width="100"
>
</div>
</VCol>
<VCol
cols="12"
md="4"
class="auth-card-v2 d-flex align-center justify-center"
>
<VApp>
<VMain class="d-flex align-center justify-center" style="min-height: 100vh;">
<VCard
flat
:max-width="500"
class="mt-12 mt-sm-0 pa-6"
max-width="450"
width="100%"
class="pa-6 ma-4"
>
<VCardTitle class="text-h5 text-center mb-2">
Inloggen
</VCardTitle>
<VCardSubtitle class="text-center mb-6">
Log in om je rooster en shifts te bekijken
</VCardSubtitle>
<VCardText>
<h4 class="text-h4 mb-1">
Welcome to <span class="text-capitalize">{{ themeConfig.app.title }}</span>! 👋🏻
</h4>
<p class="mb-0">
Please sign-in to your account and start the adventure
</p>
</VCardText>
<VCardText>
<VForm @submit.prevent="() => {}">
<VRow>
<!-- email -->
<VCol cols="12">
<AppTextField
v-model="form.email"
autofocus
label="Email or Username"
type="email"
placeholder="johndoe@email.com"
/>
</VCol>
<VForm @submit.prevent>
<VTextField
v-model="form.email"
label="E-mailadres"
type="email"
placeholder="je@email.nl"
class="mb-4"
/>
<!-- password -->
<VCol cols="12">
<AppTextField
v-model="form.password"
label="Password"
placeholder="············"
:type="isPasswordVisible ? 'text' : 'password'"
autocomplete="password"
:append-inner-icon="isPasswordVisible ? 'tabler-eye-off' : 'tabler-eye'"
@click:append-inner="isPasswordVisible = !isPasswordVisible"
/>
<VTextField
v-model="form.password"
label="Wachtwoord"
placeholder="Je wachtwoord"
:type="isPasswordVisible ? 'text' : 'password'"
:append-inner-icon="isPasswordVisible ? 'tabler-eye-off' : 'tabler-eye'"
class="mb-6"
@click:append-inner="isPasswordVisible = !isPasswordVisible"
/>
<div class="d-flex align-center flex-wrap justify-space-between my-6">
<VCheckbox
v-model="form.remember"
label="Remember me"
/>
<a
class="text-primary"
href="javascript:void(0)"
>
Forgot Password?
</a>
</div>
<VBtn
block
type="submit"
>
Login
</VBtn>
</VCol>
<!-- create account -->
<VCol
cols="12"
class="text-body-1 text-center"
>
<span class="d-inline-block">
New on our platform?
</span>
<a
class="text-primary ms-1 d-inline-block text-body-1"
href="javascript:void(0)"
>
Create an account
</a>
</VCol>
<VCol
cols="12"
class="d-flex align-center"
>
<VDivider />
<span class="mx-4">or</span>
<VDivider />
</VCol>
<!-- auth providers -->
<VCol
cols="12"
class="text-center"
>
<AuthProvider />
</VCol>
</VRow>
<VBtn
block
type="submit"
color="primary"
>
Inloggen
</VBtn>
</VForm>
</VCardText>
</VCard>
</VCol>
</VRow>
</VMain>
</VApp>
</template>
<style lang="scss">
@use "@core/scss/template/pages/page-auth";
</style>

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
definePage({
name: 'portal-profile',
meta: {
layout: 'portal',
requiresAuth: true,
},
})
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Mijn Profiel
</VCardTitle>
<VCardSubtitle>
Beheer je persoonlijke gegevens
</VCardSubtitle>
</VCard>
</VCol>
</VRow>
</template>

View File

@@ -0,0 +1,34 @@
<script setup lang="ts">
definePage({
name: 'volunteer-register',
meta: {
layout: 'portal',
requiresAuth: false,
},
})
const route = useRoute('volunteer-register')
const eventSlug = computed(() => route.params.eventSlug)
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Aanmelden als vrijwilliger
</VCardTitle>
<VCardSubtitle>
Vul het formulier in om je aan te melden
</VCardSubtitle>
<VCardText class="text-body-1 mt-4">
Evenement: <strong>{{ eventSlug }}</strong>
</VCardText>
</VCard>
</VCol>
</VRow>
</template>

View File

@@ -1,13 +0,0 @@
<template>
<div>
<VCard title="Create Awesome 🙌">
<VCardText>This is your second page.</VCardText>
<VCardText>
Chocolate sesame snaps pie carrot cake pastry pie lollipop muffin.
Carrot cake dragée chupa chups jujubes. Macaroon liquorice cookie
wafer tart marzipan bonbon. Gingerbread jelly-o dragée
chocolate.
</VCardText>
</VCard>
</div>
</template>

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
definePage({
name: 'portal-shifts',
meta: {
layout: 'portal',
requiresAuth: true,
},
})
</script>
<template>
<VRow justify="center">
<VCol
cols="12"
md="8"
lg="6"
>
<VCard class="text-center pa-6">
<VCardTitle class="text-h5">
Mijn Shifts
</VCardTitle>
<VCardSubtitle>
Overzicht van je ingeplande shifts
</VCardSubtitle>
</VCard>
</VCol>
</VRow>
</template>