74 lines
1.7 KiB
Vue
74 lines
1.7 KiB
Vue
<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}`">
|
||
× <!-- 使用 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>
|