| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <template>
- <div class="admin--modal-overlay" @click.self="close">
- <div class="admin--modal">
- <div class="admin--modal-header">
- <h4>비밀번호 변경</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--info-box">
- <p><strong>관리자:</strong> {{ admin.name }} ({{ admin.username }})</p>
- </div>
- <div class="admin--form-group" v-if="isCurrentUser">
- <label class="admin--form-label">현재 비밀번호</label>
- <input
- v-model="formData.current_password"
- type="password"
- class="admin--form-input"
- placeholder="현재 비밀번호 입력"
- />
- <small class="admin--help-text">본인 계정의 경우 현재 비밀번호를 입력해주세요.</small>
- </div>
- <div class="admin--form-group">
- <label class="admin--form-label">새 비밀번호 *</label>
- <input
- v-model="formData.new_password"
- type="password"
- class="admin--form-input"
- required
- placeholder="최소 8자 이상"
- minlength="8"
- />
- </div>
- <div class="admin--form-group">
- <label class="admin--form-label">새 비밀번호 확인 *</label>
- <input
- v-model="formData.new_password_confirm"
- type="password"
- class="admin--form-input"
- required
- placeholder="새 비밀번호 재입력"
- minlength="8"
- />
- </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 } from 'vue'
- const props = defineProps({
- admin: {
- type: Object,
- required: true
- }
- })
- const emit = defineEmits(['close', 'saved'])
- const { post } = useApi()
- const saving = ref(false)
- // 현재 로그인한 관리자 ID
- const currentAdminId = computed(() => {
- if (typeof window === 'undefined') return null
- const user = localStorage.getItem('admin_user')
- if (!user) return null
- try {
- return JSON.parse(user).id
- } catch {
- return null
- }
- })
- const isCurrentUser = computed(() => {
- return currentAdminId.value === props.admin.id
- })
- const formData = ref({
- current_password: '',
- new_password: '',
- new_password_confirm: ''
- })
- const close = () => {
- emit('close')
- }
- const save = async () => {
- // 비밀번호 확인
- if (formData.value.new_password !== formData.value.new_password_confirm) {
- emit('saved', '새 비밀번호가 일치하지 않습니다.')
- return
- }
- if (formData.value.new_password.length < 8) {
- emit('saved', '비밀번호는 최소 8자 이상이어야 합니다.')
- return
- }
- saving.value = true
- try {
- const requestData = {
- new_password: formData.value.new_password
- }
- // 본인 계정인 경우 현재 비밀번호 포함
- if (isCurrentUser.value && formData.value.current_password) {
- requestData.current_password = formData.value.current_password
- }
- const { data, error } = await post(`/admin/${props.admin.id}/password`, requestData)
- if (error) {
- console.error('[PasswordModal] 변경 실패:', error)
- const errorMessage = error.response?.data?.message || '비밀번호 변경에 실패했습니다.'
- emit('saved', errorMessage)
- return
- }
- if (data?.success) {
- emit('saved', '비밀번호가 변경되었습니다.')
- }
- } 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: 500px;
- max-width: 600px;
- 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--info-box {
- background: #1a1a1a;
- border: 1px solid #404040;
- border-radius: 4px;
- padding: 12px 16px;
- margin-bottom: 20px;
- }
- .admin--info-box p {
- margin: 0;
- color: #e0e0e0;
- font-size: 14px;
- }
- .admin--info-box strong {
- color: #ffffff;
- font-weight: 600;
- }
- .admin--form-group {
- display: flex;
- flex-direction: column;
- margin-bottom: 20px;
- }
- .admin--form-group:last-child {
- margin-bottom: 0;
- }
- .admin--form-label {
- display: block;
- margin-bottom: 8px;
- font-size: 14px;
- font-weight: 500;
- color: #e0e0e0;
- }
- .admin--form-input {
- 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 {
- outline: none;
- border-color: var(--admin-accent-primary, #217346);
- }
- .admin--form-input::placeholder {
- color: #666;
- }
- .admin--help-text {
- display: block;
- margin-top: 6px;
- font-size: 12px;
- color: #999;
- line-height: 1.4;
- }
- .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>
|