tab, component, popup 변경
This commit is contained in:
237
components/layout/AppHeader.vue
Normal file
237
components/layout/AppHeader.vue
Normal file
@@ -0,0 +1,237 @@
|
||||
<template>
|
||||
<header
|
||||
class="w-full bg-white shadow flex items-center justify-center px-4 h-24 relative"
|
||||
>
|
||||
<nav class="flex justify-center space-x-4">
|
||||
<!-- HOME 메뉴 -->
|
||||
<button
|
||||
class="menu-btn"
|
||||
:class="{ active: modelValue === 'home' }"
|
||||
@click="$emit('update:modelValue', 'home')"
|
||||
>
|
||||
HOME
|
||||
</button>
|
||||
<!-- 테스트트 메뉴 -->
|
||||
<button
|
||||
class="menu-btn"
|
||||
:class="{ active: modelValue === 'test' }"
|
||||
@click="$emit('update:modelValue', 'test')"
|
||||
>
|
||||
테스트 메뉴
|
||||
</button>
|
||||
<!-- 관리자 메뉴 (관리자만 표시) -->
|
||||
<button
|
||||
v-if="userStore.isAdmin"
|
||||
class="menu-btn"
|
||||
:class="{ active: modelValue === 'admin' }"
|
||||
@click="$emit('update:modelValue', 'admin')"
|
||||
>
|
||||
관리자 메뉴
|
||||
</button>
|
||||
</nav>
|
||||
|
||||
<!-- 사용자 정보 및 드롭다운 -->
|
||||
<div class="user-menu-wrapper">
|
||||
<div class="user-info" @click="toggleDropdown">
|
||||
<span class="user-name">{{ userStore.userName }}</span>
|
||||
<div class="user-icon">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="#222"
|
||||
stroke-width="1.5"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<circle cx="12" cy="8" r="4" />
|
||||
<path d="M4 20c0-2.5 3.5-4 8-4s8 1.5 8 4" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div v-show="showDropdown" class="user-dropdown">
|
||||
<div class="user-details">
|
||||
<p class="user-email">{{ userStore.user?.email }}</p>
|
||||
<p class="user-role">{{ userStore.isAdmin ? "관리자" : "사용자" }}</p>
|
||||
</div>
|
||||
<div class="dropdown-divider"></div>
|
||||
<button class="logout-btn" @click="logout">
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
>
|
||||
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path>
|
||||
<polyline points="16,17 21,12 16,7"></polyline>
|
||||
<line x1="21" y1="12" x2="9" y2="12"></line>
|
||||
</svg>
|
||||
로그아웃
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, onBeforeUnmount } from "vue";
|
||||
import { useRouter } from "vue-router";
|
||||
import { useUserStore } from "~/stores/user";
|
||||
|
||||
defineProps({
|
||||
modelValue: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
});
|
||||
|
||||
defineEmits(["update:modelValue"]);
|
||||
|
||||
const showDropdown = ref(false);
|
||||
const router = useRouter();
|
||||
const userStore = useUserStore();
|
||||
|
||||
function toggleDropdown() {
|
||||
showDropdown.value = !showDropdown.value;
|
||||
}
|
||||
|
||||
function handleClickOutside(event) {
|
||||
const menu = document.querySelector(".user-menu-wrapper");
|
||||
if (menu && !menu.contains(event.target)) {
|
||||
showDropdown.value = false;
|
||||
}
|
||||
}
|
||||
|
||||
function logout() {
|
||||
userStore.logout();
|
||||
showDropdown.value = false;
|
||||
router.push("/login");
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
window.addEventListener("click", handleClickOutside);
|
||||
});
|
||||
onBeforeUnmount(() => {
|
||||
window.removeEventListener("click", handleClickOutside);
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.menu-btn {
|
||||
font-size: 1.08rem;
|
||||
font-weight: 500;
|
||||
color: #222;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0.5rem 1.5rem;
|
||||
border-radius: 6px;
|
||||
transition: background 0.15s, color 0.15s;
|
||||
cursor: pointer;
|
||||
}
|
||||
.menu-btn.active {
|
||||
background: none;
|
||||
color: #1976d2;
|
||||
}
|
||||
.menu-btn:hover {
|
||||
background: #e6f0fa;
|
||||
color: #1976d2;
|
||||
}
|
||||
.group:hover .group-hover\:opacity-100 {
|
||||
opacity: 1 !important;
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
.group-hover\:pointer-events-auto {
|
||||
pointer-events: auto;
|
||||
}
|
||||
.user-menu-wrapper {
|
||||
position: absolute;
|
||||
right: 2rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.user-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
cursor: pointer;
|
||||
padding: 8px 12px;
|
||||
border-radius: 8px;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
.user-info:hover {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.user-name {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
}
|
||||
.user-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: #f0f0f0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.user-dropdown {
|
||||
position: absolute;
|
||||
top: 48px;
|
||||
right: 0;
|
||||
min-width: 200px;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
||||
padding: 1rem;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.user-details {
|
||||
width: 100%;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.user-email {
|
||||
font-size: 0.85rem;
|
||||
color: #666;
|
||||
margin: 0 0 4px 0;
|
||||
}
|
||||
.user-role {
|
||||
font-size: 0.8rem;
|
||||
color: #888;
|
||||
margin: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
.dropdown-divider {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: #e0e0e0;
|
||||
margin: 8px 0;
|
||||
}
|
||||
.logout-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #d32f2f;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
padding: 8px 0;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
border-radius: 6px;
|
||||
transition: background 0.15s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.logout-btn:hover {
|
||||
background: #fbe9e7;
|
||||
}
|
||||
</style>
|
95
components/layout/ContentsWrapper.vue
Normal file
95
components/layout/ContentsWrapper.vue
Normal file
@@ -0,0 +1,95 @@
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<!-- 경로 -->
|
||||
<nav class="breadcrumb">{{ breadcrumb }}</nav>
|
||||
|
||||
<!-- 화면 명 + 버튼 영역 -->
|
||||
<header class="header">
|
||||
<h1 class="title">{{ pageTitle }}</h1>
|
||||
<div class="header-actions">
|
||||
<slot name="actions" />
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- 메인 콘텐츠 -->
|
||||
<main class="content">
|
||||
<slot />
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useRoute } from '#imports'
|
||||
|
||||
const route = useRoute()
|
||||
|
||||
// 경로(메뉴 경로)
|
||||
const breadcrumb = computed(() => route.path)
|
||||
|
||||
// 화면명(meta.title 값)
|
||||
const pageTitle = computed(() => route.meta.title || 'Untitled Page')
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
padding: 16px;
|
||||
background: #f9f9f9;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* 화면명과 버튼을 좌우 끝으로 배치 */
|
||||
.header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
padding: 12px;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
/* 버튼 공통 스타일 */
|
||||
.header-actions ::v-deep button {
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
font-size: 14px;
|
||||
padding: 6px 12px;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.header-actions ::v-deep button:hover {
|
||||
background-color: #45a049;
|
||||
}
|
||||
|
||||
.header-actions ::v-deep button:disabled {
|
||||
background-color: #ccc;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
81
components/layout/PopupWrapper.vue
Normal file
81
components/layout/PopupWrapper.vue
Normal file
@@ -0,0 +1,81 @@
|
||||
<template>
|
||||
<customPopup v-model:show="show">
|
||||
<div class="popup-content" :style="{ width, height }">
|
||||
<!-- Top -->
|
||||
<div class="popup-top">
|
||||
<slot name="top"></slot>
|
||||
</div>
|
||||
|
||||
<!-- Middle -->
|
||||
<div class="popup-middle">
|
||||
<slot name="middle"></slot>
|
||||
</div>
|
||||
|
||||
<!-- Bottom -->
|
||||
<div class="popup-bottom">
|
||||
<button class="popup-close" @click="show = false">닫기</button>
|
||||
<slot name="bottom"></slot>
|
||||
</div>
|
||||
</div>
|
||||
</customPopup>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
defineProps<{
|
||||
width?: string
|
||||
height?: string
|
||||
}>()
|
||||
|
||||
// defineModel + 기본값 지정
|
||||
const show = defineModel('show', {type: Boolean, default:false});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<style scoped>
|
||||
.popup-content {
|
||||
background: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.popup-top {
|
||||
padding: 10px 20px;
|
||||
font-weight: bold;
|
||||
background: #f0f0f0;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
.popup-middle {
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.popup-bottom {
|
||||
padding: 10px 20px;
|
||||
display: flex;
|
||||
justify-content: center; /* 중앙 정렬 */
|
||||
gap: 10px;
|
||||
background: #f9f9f9;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
/* ⭐️ bottom 슬롯 버튼 공통 스타일 */
|
||||
.popup-bottom ::v-deep(button) {
|
||||
padding: 8px 16px;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
background: #007bff;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
.popup-bottom ::v-deep(button:hover) {
|
||||
background: #0056b3;
|
||||
}
|
||||
|
||||
.popup-close {
|
||||
background: #ddd !important;
|
||||
color: black !important;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user