- Standardized table loading logic with enhanced useTableLoader. - Unified form submission patterns via new useForm composable. - Extracted common UI components: SearchInput and StatusBadge. - Centralized common interface definitions in types/index.ts. - Achieved TypeScript zero-error status across refactored files. - Greatly improved code reusability and maintainability.
78 lines
3.3 KiB
Vue
78 lines
3.3 KiB
Vue
<template>
|
|
<BaseDialog
|
|
:show="show"
|
|
:title="t('admin.users.createUser')"
|
|
width="normal"
|
|
@close="$emit('close')"
|
|
>
|
|
<form id="create-user-form" @submit.prevent="submit" class="space-y-5">
|
|
<div>
|
|
<label class="input-label">{{ t('admin.users.email') }}</label>
|
|
<input v-model="form.email" type="email" required class="input" :placeholder="t('admin.users.enterEmail')" />
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.users.password') }}</label>
|
|
<div class="flex gap-2">
|
|
<div class="relative flex-1">
|
|
<input v-model="form.password" type="text" required class="input pr-10" :placeholder="t('admin.users.enterPassword')" />
|
|
</div>
|
|
<button type="button" @click="generateRandomPassword" class="btn btn-secondary px-3">
|
|
<svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99" /></svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.users.username') }}</label>
|
|
<input v-model="form.username" type="text" class="input" :placeholder="t('admin.users.enterUsername')" />
|
|
</div>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="input-label">{{ t('admin.users.columns.balance') }}</label>
|
|
<input v-model.number="form.balance" type="number" step="any" class="input" />
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.users.columns.concurrency') }}</label>
|
|
<input v-model.number="form.concurrency" type="number" class="input" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<template #footer>
|
|
<div class="flex justify-end gap-3">
|
|
<button @click="$emit('close')" type="button" class="btn btn-secondary">{{ t('common.cancel') }}</button>
|
|
<button type="submit" form="create-user-form" :disabled="loading" class="btn btn-primary">
|
|
{{ loading ? t('admin.users.creating') : t('common.create') }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</BaseDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { reactive, watch } from 'vue'
|
|
import { useI18n } from 'vue-i18n'; import { adminAPI } from '@/api/admin'
|
|
import { useForm } from '@/composables/useForm'
|
|
import BaseDialog from '@/components/common/BaseDialog.vue'
|
|
|
|
const props = defineProps<{ show: boolean }>()
|
|
const emit = defineEmits(['close', 'success']); const { t } = useI18n()
|
|
|
|
const form = reactive({ email: '', password: '', username: '', notes: '', balance: 0, concurrency: 1 })
|
|
|
|
const { loading, submit } = useForm({
|
|
form,
|
|
submitFn: async (data) => {
|
|
await adminAPI.users.create(data)
|
|
emit('success'); emit('close')
|
|
},
|
|
successMsg: t('admin.users.userCreated')
|
|
})
|
|
|
|
watch(() => props.show, (v) => { if(v) Object.assign(form, { email: '', password: '', username: '', notes: '', balance: 0, concurrency: 1 }) })
|
|
|
|
const generateRandomPassword = () => {
|
|
const chars = 'ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz23456789!@#$%^&*'
|
|
let p = ''; for (let i = 0; i < 16; i++) p += chars.charAt(Math.floor(Math.random() * chars.length))
|
|
form.password = p
|
|
}
|
|
</script>
|