This commit is contained in:
Baobhan Sith
2025-04-16 21:19:34 +08:00
parent 0c5e4e4f30
commit b9a9d8b0af
7 changed files with 428 additions and 82 deletions
@@ -0,0 +1,73 @@
<script setup lang="ts">
import { PropType } from 'vue';
import { useLayoutStore, type PaneName } from '../stores/layout.store';
// --- Props ---
const props = defineProps({
title: {
type: String,
required: true,
},
paneName: {
type: String as PropType<PaneName>,
required: true,
},
});
// --- Setup ---
const layoutStore = useLayoutStore();
// --- Methods ---
const closePane = () => {
console.log(`[PaneTitleBar] Requesting to close pane: ${props.paneName}`);
layoutStore.setPaneVisibility(props.paneName, false);
};
</script>
<template>
<div class="pane-title-bar">
<span class="title">{{ title }}</span>
<button class="close-button" @click="closePane" :title="`关闭 ${title}`">
&times; <!-- 使用 HTML 实体 '×' -->
</button>
</div>
</template>
<style scoped>
.pane-title-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 4px 8px; /* 调整内边距使标题栏更紧凑 */
background-color: #e9ecef; /* 标题栏背景色,可以根据主题调整 */
border-bottom: 1px solid #ced4da; /* 底部边框 */
height: 28px; /* 固定标题栏高度 */
box-sizing: border-box;
flex-shrink: 0; /* 防止标题栏被压缩 */
}
.title {
font-size: 0.85em; /* 稍小字体 */
font-weight: 600;
color: #495057; /* 标题颜色 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.close-button {
background: none;
border: none;
color: #6c757d; /* 关闭按钮颜色 */
cursor: pointer;
font-size: 1.2em; /* 稍大图标 */
line-height: 1;
padding: 0 4px; /* 微调内边距 */
border-radius: 3px;
}
.close-button:hover {
background-color: #dc3545; /* 悬停时背景变红 */
color: white; /* 悬停时图标变白 */
}
</style>