| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <template>
- <div class="admin--modal-overlay" @click.self="close">
- <div class="admin--modal">
- <div class="admin--modal-header">
- <h4>{{ isEdit ? '관리자 수정' : '관리자 추가' }}</h4>
- <button @click="close" class="admin--modal-close">×</button>
- </div>
- <form @submit.prevent="save" class="admin--modal-form">
- <div class="admin--modal-body">
- <div class="admin--form-row">
- <div class="admin--form-group">
- <label class="admin--form-label">아이디 *</label>
- <input
- v-model="formData.username"
- type="text"
- class="admin--form-input"
- required
- :disabled="isEdit"
- placeholder="영문, 숫자 조합"
- />
- </div>
- <div class="admin--form-group">
- <label class="admin--form-label">이름 *</label>
- <input
- v-model="formData.name"
- type="text"
- class="admin--form-input"
- required
- placeholder="관리자 이름"
- />
- </div>
- </div>
- <div class="admin--form-row">
- <div class="admin--form-group">
- <label class="admin--form-label">이메일 *</label>
- <input
- v-model="formData.email"
- type="email"
- class="admin--form-input"
- required
- placeholder="example@email.com"
- />
- </div>
- <div class="admin--form-group">
- <label class="admin--form-label">역할 *</label>
- <select v-model="formData.role" class="admin--form-select" required>
- <option value="admin">일반 관리자</option>
- <option value="super_admin">슈퍼 관리자</option>
- </select>
- </div>
- </div>
- <div class="admin--form-row" v-if="!isEdit">
- <div class="admin--form-group">
- <label class="admin--form-label">비밀번호 *</label>
- <input
- v-model="formData.password"
- type="password"
- class="admin--form-input"
- :required="!isEdit"
- placeholder="최소 8자 이상"
- minlength="8"
- />
- </div>
- <div class="admin--form-group">
- <label class="admin--form-label">비밀번호 확인 *</label>
- <input
- v-model="formData.password_confirm"
- type="password"
- class="admin--form-input"
- :required="!isEdit"
- placeholder="비밀번호 재입력"
- minlength="8"
- />
- </div>
- </div>
- <div class="admin--form-row">
- <div class="admin--form-group">
- <label class="admin--form-label">상태 *</label>
- <select v-model="formData.status" class="admin--form-select" required>
- <option value="active">활성</option>
- <option value="inactive">비활성</option>
- </select>
- </div>
- </div>
- </div>
- <div class="admin--modal-footer">
- <button type="button" @click="close" class="admin--btn-small admin--btn-small-secondary">
- 취소
- </button>
- <button type="submit" class="admin--btn-small admin--btn-small-primary" :disabled="saving">
- {{ saving ? '저장 중...' : '저장' }}
- </button>
- </div>
- </form>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, computed, watch } from 'vue'
- const props = defineProps({
- admin: {
- type: Object,
- default: null
- }
- })
- const emit = defineEmits(['close', 'saved'])
- const { post, put } = useApi()
- const isEdit = computed(() => !!props.admin)
- const saving = ref(false)
- const formData = ref({
- username: '',
- name: '',
- email: '',
- password: '',
- password_confirm: '',
- role: 'admin',
- status: 'active'
- })
- // props.admin이 변경되면 formData 업데이트
- watch(() => props.admin, (newAdmin) => {
- if (newAdmin) {
- formData.value = {
- username: newAdmin.username || '',
- name: newAdmin.name || '',
- email: newAdmin.email || '',
- password: '',
- password_confirm: '',
- role: newAdmin.role || 'admin',
- status: newAdmin.status || 'active'
- }
- }
- }, { immediate: true })
- const close = () => {
- emit('close')
- }
- const save = async () => {
- // 비밀번호 확인 (신규 생성 시)
- if (!isEdit.value) {
- if (formData.value.password !== formData.value.password_confirm) {
- emit('saved', '비밀번호가 일치하지 않습니다.')
- return
- }
- if (formData.value.password.length < 8) {
- emit('saved', '비밀번호는 최소 8자 이상이어야 합니다.')
- return
- }
- }
- saving.value = true
- try {
- let result
- if (isEdit.value) {
- // 수정
- const updateData = {
- name: formData.value.name,
- email: formData.value.email,
- role: formData.value.role,
- status: formData.value.status
- }
- result = await put(`/admin/${props.admin.id}`, updateData)
- } else {
- // 생성
- const createData = {
- username: formData.value.username,
- name: formData.value.name,
- email: formData.value.email,
- password: formData.value.password,
- role: formData.value.role,
- status: formData.value.status
- }
- result = await post('/admin', createData)
- }
- const { data, error } = result
- if (error) {
- console.error('[AdminModal] 저장 실패:', error)
- const errorMessage = error.response?.data?.message || '저장에 실패했습니다.'
- emit('saved', errorMessage)
- return
- }
- if (data?.success) {
- emit('saved', data.message || '저장되었습니다.')
- }
- } finally {
- saving.value = false
- }
- }
- </script>
- <style scoped>
- .admin--modal-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.7);
- z-index: 9999;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .admin--modal {
- background: #2d2d2d;
- padding: 0;
- border-radius: 8px;
- min-width: 700px;
- max-width: 800px;
- width: 90%;
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
- max-height: 90vh;
- display: flex;
- flex-direction: column;
- }
- .admin--modal-form {
- display: flex;
- flex-direction: column;
- flex: 1;
- min-height: 0;
- }
- .admin--modal-header {
- padding: 20px;
- border-bottom: 1px solid #404040;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-shrink: 0;
- }
- .admin--modal-header h4 {
- margin: 0;
- font-size: 18px;
- font-weight: 600;
- color: #ffffff;
- }
- .admin--modal-close {
- background: none;
- border: none;
- font-size: 28px;
- cursor: pointer;
- color: #999;
- line-height: 1;
- transition: color 0.2s;
- padding: 0;
- width: 30px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .admin--modal-close:hover {
- color: #fff;
- }
- .admin--modal-body {
- padding: 24px;
- overflow-y: auto;
- flex: 1;
- min-height: 0;
- }
- .admin--form-row {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 16px;
- margin-bottom: 20px;
- }
- .admin--form-row:last-child {
- margin-bottom: 0;
- }
- .admin--form-group {
- display: flex;
- flex-direction: column;
- }
- .admin--form-label {
- display: block;
- margin-bottom: 8px;
- font-size: 14px;
- font-weight: 500;
- color: #e0e0e0;
- }
- .admin--form-input,
- .admin--form-select {
- width: 100%;
- padding: 10px 14px;
- border: 1px solid #404040;
- border-radius: 4px;
- background: #1a1a1a;
- color: #ffffff;
- font-size: 14px;
- transition: border-color 0.2s;
- }
- .admin--form-input:focus,
- .admin--form-select:focus {
- outline: none;
- border-color: var(--admin-accent-primary, #217346);
- }
- .admin--form-input:disabled {
- background: #252525;
- color: #666;
- cursor: not-allowed;
- }
- .admin--form-input::placeholder {
- color: #666;
- }
- .admin--modal-footer {
- padding: 20px 24px;
- border-top: 1px solid #404040;
- display: flex;
- gap: 10px;
- justify-content: flex-end;
- flex-shrink: 0;
- }
- .admin--btn-small {
- padding: 6px 14px;
- border: none;
- border-radius: 4px;
- font-size: 13px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.3s ease;
- font-family: 'AudiType', sans-serif;
- white-space: nowrap;
- }
- .admin--btn-small:disabled {
- opacity: 0.5;
- cursor: not-allowed;
- }
- .admin--btn-small-secondary {
- background: var(--admin-bg-tertiary, #252525);
- color: var(--admin-text-secondary, #e0e0e0);
- border: 1px solid var(--admin-border-color, #404040);
- }
- .admin--btn-small-secondary:hover:not(:disabled) {
- background: var(--admin-bg-primary, #2d2d2d);
- border-color: var(--admin-accent-primary, #217346);
- color: var(--admin-text-primary, #ffffff);
- }
- .admin--btn-small-primary {
- background: var(--admin-accent-primary, #217346);
- color: var(--admin-text-primary, #ffffff);
- }
- .admin--btn-small-primary:hover:not(:disabled) {
- background: var(--admin-accent-hover, #1a5c37);
- }
- </style>
|