mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 09:14:08 +00:00
build passes Create all missing components (modals, dropdowns, icons, tabs, mail drivers, customer partials), fix all @/scripts/ imports to @v2/, wire up vite entry point and blade template. 382 files, 48883 lines. - 27 settings components: modals (tax, payment, custom field, note, category, role, exchange rate, unit, mail test), dropdowns (6), customization tabs (4), mail driver forms (4) - 22 icon components: 5 utility icons, 4 dashboard icons, 13 editor toolbar icons with typed barrel export - 3 customer components: info, chart placeholder, custom fields single - Fixed usePopper composable, client/format-money import patterns - Zero remaining @/scripts/ imports in scripts-v2/ Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
76 lines
2.1 KiB
Vue
76 lines
2.1 KiB
Vue
<template>
|
|
<div class="relative" :class="wrapperClass">
|
|
<BaseContentPlaceholders
|
|
v-if="contentLoading"
|
|
class="disabled cursor-normal pointer-events-none"
|
|
>
|
|
<BaseContentPlaceholdersBox
|
|
:rounded="true"
|
|
class="w-14"
|
|
style="height: 42px"
|
|
/>
|
|
</BaseContentPlaceholders>
|
|
<Menu v-else>
|
|
<MenuButton ref="trigger" class="focus:outline-hidden" @click="onClick">
|
|
<slot name="activator" />
|
|
</MenuButton>
|
|
|
|
<div ref="container" class="z-10" :class="widthClass">
|
|
<transition
|
|
enter-active-class="transition duration-100 ease-out"
|
|
enter-from-class="scale-95 opacity-0"
|
|
enter-to-class="scale-100 opacity-100"
|
|
leave-active-class="transition duration-75 ease-in"
|
|
leave-from-class="scale-100 opacity-100"
|
|
leave-to-class="scale-95 opacity-0"
|
|
>
|
|
<MenuItems :class="containerClasses">
|
|
<div class="py-1">
|
|
<slot />
|
|
</div>
|
|
</MenuItems>
|
|
</transition>
|
|
</div>
|
|
</Menu>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Menu, MenuButton, MenuItems } from '@headlessui/vue'
|
|
import { computed, ref } from 'vue'
|
|
import { usePopper } from '@v2/composables/use-popper'
|
|
|
|
interface Props {
|
|
containerClass?: string
|
|
widthClass?: string
|
|
positionClass?: string
|
|
position?: string
|
|
wrapperClass?: string
|
|
contentLoading?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
containerClass: '',
|
|
widthClass: 'w-56',
|
|
positionClass: 'absolute z-10 right-0',
|
|
position: 'bottom-end',
|
|
wrapperClass: 'inline-block h-full text-left',
|
|
contentLoading: false,
|
|
})
|
|
|
|
const containerClasses = computed<string>(() => {
|
|
const baseClass = `origin-top-right rounded-xl shadow-xl bg-surface/80 backdrop-blur-xl border border-white/15 divide-y divide-line-light focus:outline-hidden`
|
|
return `${baseClass} ${props.containerClass}`
|
|
})
|
|
|
|
const [trigger, container, popper] = usePopper({
|
|
placement: 'bottom-end',
|
|
strategy: 'fixed',
|
|
modifiers: [{ name: 'offset', options: { offset: [0, 10] } }],
|
|
})
|
|
|
|
function onClick(): void {
|
|
popper.value.update()
|
|
}
|
|
</script>
|