Delete legacy v1 frontend (resources/scripts)

The resources/scripts/ directory was the original Vue 2 / Pinia v1 admin and customer-portal SPA. It has been fully orphaned for some time — vite.config.js has zero entry points pointing at it and the only blade @vite() reference in resources/views/app.blade.php loads scripts-v2/main.ts. The directory was pure dead code.

Removes 424 .vue / .js / store / router / helper files (~2.7 MB) so that resources/scripts-v2/ can be renamed back to resources/scripts/ in a follow-up commit, dropping the v2 suffix now that there is no v1 left.
This commit is contained in:
Darko Gjorgjijoski
2026-04-07 12:48:15 +02:00
parent f83ec6e78f
commit 064bdf5395
424 changed files with 0 additions and 62746 deletions

View File

@@ -1,140 +0,0 @@
<template>
<Teleport to="body">
<TransitionRoot appear as="template" :show="show">
<Dialog
as="div"
static
class="fixed inset-0 z-20 overflow-y-auto"
:open="show"
@close="$emit('close')"
>
<div
class="
flex
items-end
justify-center
min-h-screen
px-4
text-center
sm:block sm:px-2
"
>
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0"
enter-to="opacity-100"
leave="ease-in duration-200"
leave-from="opacity-100"
leave-to="opacity-0"
>
<DialogOverlay
class="fixed inset-0 transition-opacity bg-gray-700/25"
/>
</TransitionChild>
<!-- This element is to trick the browser into centering the modal contents. -->
<span
class="hidden sm:inline-block sm:align-middle sm:h-screen"
aria-hidden="true"
>&#8203;</span
>
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
enter-to="opacity-100 translate-y-0 sm:scale-100"
leave="ease-in duration-200"
leave-from="opacity-100 translate-y-0 sm:scale-100"
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<div
:class="`inline-block
align-middle
bg-surface/80 backdrop-blur-2xl
rounded-xl border border-white/15
text-left
overflow-hidden
relative
shadow-xl
transition-all
my-4
${modalSize}
sm:w-full
border-t-8 border-solid rounded shadow-xl border-primary-500`"
>
<div
v-if="hasHeaderSlot"
class="
flex
items-center
justify-between
px-6
py-4
text-lg
font-medium
text-heading
border-b border-line-default border-solid
"
>
<slot name="header" />
</div>
<slot />
<slot name="footer" />
</div>
</TransitionChild>
</div>
</Dialog>
</TransitionRoot>
</Teleport>
</template>
<script setup>
import { useModalStore } from '@/scripts/stores/modal'
import { computed, watchEffect, useSlots } from 'vue'
import {
Dialog,
DialogOverlay,
TransitionChild,
TransitionRoot,
} from '@headlessui/vue'
const props = defineProps({
show: {
type: Boolean,
default: false,
},
})
const slots = useSlots()
const emit = defineEmits(['close', 'open'])
const modalStore = useModalStore()
watchEffect(() => {
if (props.show) {
emit('open', props.show)
}
})
const modalSize = computed(() => {
const size = modalStore.size
switch (size) {
case 'sm':
return 'sm:max-w-2xl w-full'
case 'md':
return 'sm:max-w-4xl w-full'
case 'lg':
return 'sm:max-w-6xl w-full'
default:
return 'sm:max-w-2xl w-full'
}
})
const hasHeaderSlot = computed(() => {
return !!slots.header
})
</script>