mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 09:14:08 +00:00
Define 13 semantic color tokens (surface, text, border, hover) with light/dark values in themes.css. Register with Tailwind via @theme inline. Migrate all 335 Vue files from hardcoded gray/white classes to semantic tokens. Add theme toggle (sun/moon/system) in user avatar dropdown. Replace @tailwindcss/forms with custom form reset using theme vars. Add status badge and alert tokens for dark mode. Theme-aware chart grid/labels, skeleton placeholders, and editor. Inline script in <head> prevents flash of wrong theme on load. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
88 lines
2.2 KiB
Vue
88 lines
2.2 KiB
Vue
<template>
|
|
<BaseDropdown>
|
|
<template #activator>
|
|
<BaseButton v-if="route.name === 'members.view'" variant="primary">
|
|
<BaseIcon name="EllipsisHorizontalIcon" class="h-5 text-white" />
|
|
</BaseButton>
|
|
<BaseIcon v-else name="EllipsisHorizontalIcon" class="h-5 text-muted" />
|
|
</template>
|
|
|
|
<!-- edit user -->
|
|
<router-link :to="`/admin/members/${row.id}/edit`">
|
|
<BaseDropdownItem>
|
|
<BaseIcon
|
|
name="PencilIcon"
|
|
class="w-5 h-5 mr-3 text-subtle group-hover:text-muted"
|
|
/>
|
|
{{ $t('general.edit') }}
|
|
</BaseDropdownItem>
|
|
</router-link>
|
|
|
|
<!-- delete user -->
|
|
<BaseDropdownItem @click="removeUser(row.id)">
|
|
<BaseIcon
|
|
name="TrashIcon"
|
|
class="w-5 h-5 mr-3 text-subtle group-hover:text-muted"
|
|
/>
|
|
{{ $t('general.delete') }}
|
|
</BaseDropdownItem>
|
|
</BaseDropdown>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useDialogStore } from '@/scripts/stores/dialog'
|
|
import { useNotificationStore } from '@/scripts/stores/notification'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useUserStore } from '@/scripts/admin/stores/user'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { inject } from 'vue'
|
|
import { useMembersStore } from '@/scripts/admin/stores/members'
|
|
|
|
const props = defineProps({
|
|
row: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
table: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
loadData: {
|
|
type: Function,
|
|
default: null,
|
|
},
|
|
})
|
|
|
|
const dialogStore = useDialogStore()
|
|
const notificationStore = useNotificationStore()
|
|
const { t } = useI18n()
|
|
const userStore = useUserStore()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const usersStore = useMembersStore()
|
|
|
|
const $utils = inject('utils')
|
|
|
|
function removeUser(id) {
|
|
dialogStore
|
|
.openDialog({
|
|
title: t('general.are_you_sure'),
|
|
message: t('members.confirm_delete', 1),
|
|
yesLabel: t('general.ok'),
|
|
noLabel: t('general.cancel'),
|
|
variant: 'danger',
|
|
size: 'lg',
|
|
hideNoButton: false,
|
|
})
|
|
.then((res) => {
|
|
if (res) {
|
|
usersStore.deleteUser({ ids: [id] }).then((res) => {
|
|
if (res) {
|
|
props.loadData && props.loadData()
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
</script>
|