mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-13 00:07:21 +00:00
- Add Administration sidebar section (super-admin only) with Companies, Users, and Global Settings pages - Add super-admin middleware, controllers, and API routes under /api/v1/super-admin/ - Allow super-admins to manage all companies and users across tenants - Add user impersonation with short-lived tokens, audit logging, and UI banner - Move system-level settings (Mail, PDF, Backup, Update, File Disk) from per-company to Administration > Global Settings - Convert save_pdf_to_disk from CompanySetting to global Setting - Add per-company mail configuration overrides (optional, falls back to global) - Add CompanyMailConfigService to apply company mail config before sending emails
182 lines
4.7 KiB
Vue
182 lines
4.7 KiB
Vue
<template>
|
|
<BasePage v-if="!isLoading">
|
|
<BasePageHeader :title="$t('administration.users.edit_user')">
|
|
<BaseBreadcrumb>
|
|
<BaseBreadcrumbItem :title="$t('general.home')" to="dashboard" />
|
|
<BaseBreadcrumbItem
|
|
:title="$t('administration.users.title')"
|
|
to="/admin/administration/users"
|
|
/>
|
|
<BaseBreadcrumbItem
|
|
:title="$t('administration.users.edit_user')"
|
|
to="#"
|
|
active
|
|
/>
|
|
</BaseBreadcrumb>
|
|
</BasePageHeader>
|
|
|
|
<form @submit.prevent="submitForm">
|
|
<BaseCard class="mt-6">
|
|
<BaseInputGrid class="mt-5">
|
|
<BaseInputGroup
|
|
:label="$t('users.name')"
|
|
:error="v$.name.$error && v$.name.$errors[0].$message"
|
|
required
|
|
>
|
|
<BaseInput
|
|
v-model="formData.name"
|
|
:invalid="v$.name.$error"
|
|
@blur="v$.name.$touch()"
|
|
/>
|
|
</BaseInputGroup>
|
|
|
|
<BaseInputGroup
|
|
:label="$t('general.email')"
|
|
:error="v$.email.$error && v$.email.$errors[0].$message"
|
|
required
|
|
>
|
|
<BaseInput
|
|
v-model="formData.email"
|
|
type="email"
|
|
:invalid="v$.email.$error"
|
|
@blur="v$.email.$touch()"
|
|
/>
|
|
</BaseInputGroup>
|
|
|
|
<BaseInputGroup :label="$t('users.phone')">
|
|
<BaseInput v-model="formData.phone" type="text" />
|
|
</BaseInputGroup>
|
|
|
|
<BaseInputGroup
|
|
:label="$t('users.password')"
|
|
:error="v$.password.$error && v$.password.$errors[0].$message"
|
|
>
|
|
<BaseInput
|
|
v-model="formData.password"
|
|
type="password"
|
|
:invalid="v$.password.$error"
|
|
autocomplete="new-password"
|
|
@blur="v$.password.$touch()"
|
|
/>
|
|
</BaseInputGroup>
|
|
</BaseInputGrid>
|
|
|
|
<div v-if="userData" class="mt-6 text-sm text-gray-500">
|
|
<p>
|
|
<strong>{{ $t('administration.users.role') }}:</strong>
|
|
{{ userData.role }}
|
|
</p>
|
|
<p v-if="userData.companies && userData.companies.length" class="mt-1">
|
|
<strong>{{ $t('navigation.companies') }}:</strong>
|
|
{{ userData.companies.map((c) => c.name).join(', ') }}
|
|
</p>
|
|
</div>
|
|
|
|
<BaseButton
|
|
:loading="isSaving"
|
|
:disabled="isSaving"
|
|
type="submit"
|
|
class="mt-6"
|
|
>
|
|
<template #left="slotProps">
|
|
<BaseIcon
|
|
v-if="!isSaving"
|
|
:class="slotProps.class"
|
|
name="ArrowDownOnSquareIcon"
|
|
/>
|
|
</template>
|
|
{{ $t('general.save') }}
|
|
</BaseButton>
|
|
</BaseCard>
|
|
</form>
|
|
</BasePage>
|
|
|
|
<BaseGlobalLoader v-else />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive, ref, computed, onMounted } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useAdministrationStore } from '@/scripts/admin/stores/administration'
|
|
import { required, email, minLength, helpers } from '@vuelidate/validators'
|
|
import { useVuelidate } from '@vuelidate/core'
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const administrationStore = useAdministrationStore()
|
|
const { t } = useI18n()
|
|
|
|
let isLoading = ref(true)
|
|
let isSaving = ref(false)
|
|
let userData = ref(null)
|
|
|
|
const formData = reactive({
|
|
name: '',
|
|
email: '',
|
|
phone: '',
|
|
password: '',
|
|
})
|
|
|
|
const rules = computed(() => {
|
|
return {
|
|
name: {
|
|
required: helpers.withMessage(t('validation.required'), required),
|
|
},
|
|
email: {
|
|
required: helpers.withMessage(t('validation.required'), required),
|
|
email: helpers.withMessage(t('validation.email_incorrect'), email),
|
|
},
|
|
password: {
|
|
minLength: helpers.withMessage(
|
|
t('validation.password_min_length', { count: 8 }),
|
|
minLength(8)
|
|
),
|
|
},
|
|
}
|
|
})
|
|
|
|
const v$ = useVuelidate(
|
|
rules,
|
|
computed(() => formData)
|
|
)
|
|
|
|
onMounted(async () => {
|
|
const response = await administrationStore.fetchUser(route.params.id)
|
|
const user = response.data.data
|
|
userData.value = user
|
|
|
|
formData.name = user.name
|
|
formData.email = user.email
|
|
formData.phone = user.phone || ''
|
|
|
|
isLoading.value = false
|
|
})
|
|
|
|
async function submitForm() {
|
|
v$.value.$touch()
|
|
|
|
if (v$.value.$invalid) {
|
|
return
|
|
}
|
|
|
|
isSaving.value = true
|
|
|
|
const data = {
|
|
name: formData.name,
|
|
email: formData.email,
|
|
phone: formData.phone,
|
|
}
|
|
|
|
if (formData.password) {
|
|
data.password = formData.password
|
|
}
|
|
|
|
await administrationStore.updateUser(route.params.id, data)
|
|
|
|
isSaving.value = false
|
|
|
|
router.push({ name: 'admin.users.index' })
|
|
}
|
|
</script>
|