257 lines
5.9 KiB
Vue
257 lines
5.9 KiB
Vue
<template>
|
||
<div class="windows-titlebar" style="--wails-draggable:drag">
|
||
<div class="titlebar-content" @dblclick="toggleMaximize" @contextmenu.prevent>
|
||
<div class="titlebar-icon">
|
||
<img src="/appicon.png" alt="voidraft"/>
|
||
</div>
|
||
<div v-if="!tabStore.isTabsEnabled && !isInSettings" class="titlebar-title" :title="fullTitleText">{{ titleText }}</div>
|
||
<!-- 标签页容器区域 -->
|
||
<div class="titlebar-tabs" v-if="tabStore.isTabsEnabled && !isInSettings" style="--wails-draggable:drag">
|
||
<TabContainer />
|
||
</div>
|
||
<!-- 设置页面标题 -->
|
||
<div v-if="isInSettings" class="titlebar-title" :title="fullTitleText">{{ titleText }}</div>
|
||
</div>
|
||
|
||
<div class="titlebar-controls" style="--wails-draggable:no-drag" @contextmenu.prevent>
|
||
<button
|
||
class="titlebar-button minimize-button"
|
||
@click="minimizeWindow"
|
||
:title="t('titlebar.minimize')"
|
||
>
|
||
<span class="titlebar-icon"></span>
|
||
</button>
|
||
|
||
<button
|
||
class="titlebar-button maximize-button"
|
||
@click="toggleMaximize"
|
||
:title="isMaximized ? t('titlebar.restore') : t('titlebar.maximize')"
|
||
>
|
||
<span class="titlebar-icon" v-html="maximizeIcon"></span>
|
||
</button>
|
||
|
||
<button
|
||
class="titlebar-button close-button"
|
||
@click="closeWindow"
|
||
:title="t('titlebar.close')"
|
||
>
|
||
<span class="titlebar-icon"></span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import {computed, onMounted, ref} from 'vue';
|
||
import {useI18n} from 'vue-i18n';
|
||
import {useRoute} from 'vue-router';
|
||
import * as runtime from '@wailsio/runtime';
|
||
import {useDocumentStore} from '@/stores/documentStore';
|
||
import TabContainer from '@/components/tabs/TabContainer.vue';
|
||
import {useTabStore} from "@/stores/tabStore";
|
||
|
||
const tabStore = useTabStore();
|
||
const {t} = useI18n();
|
||
const route = useRoute();
|
||
const isMaximized = ref(false);
|
||
const documentStore = useDocumentStore();
|
||
|
||
// 计算属性用于图标,减少重复渲染
|
||
const maximizeIcon = computed(() => isMaximized.value ? '' : '');
|
||
|
||
// 判断是否在设置页面
|
||
const isInSettings = computed(() => route.path.startsWith('/settings'));
|
||
|
||
// 计算标题文本
|
||
const titleText = computed(() => {
|
||
if (isInSettings.value) {
|
||
return `voidraft - ` + t('settings.title');
|
||
}
|
||
const currentDoc = documentStore.currentDocument;
|
||
if (currentDoc) {
|
||
// 限制文档标题长度,避免标题栏换行
|
||
const maxTitleLength = 30;
|
||
const truncatedTitle = currentDoc.title.length > maxTitleLength
|
||
? currentDoc.title.substring(0, maxTitleLength) + '...'
|
||
: currentDoc.title;
|
||
return `voidraft - ${truncatedTitle}`;
|
||
}
|
||
return 'voidraft';
|
||
});
|
||
|
||
// 计算完整标题文本(用于tooltip)
|
||
const fullTitleText = computed(() => {
|
||
if (isInSettings.value) {
|
||
return `voidraft - ` + t('settings.title');
|
||
}
|
||
const currentDoc = documentStore.currentDocument;
|
||
return currentDoc ? `voidraft - ${currentDoc.title}` : 'voidraft';
|
||
});
|
||
|
||
const minimizeWindow = async () => {
|
||
try {
|
||
await runtime.Window.Minimise();
|
||
} catch (error) {
|
||
console.error(error);
|
||
}
|
||
};
|
||
|
||
const toggleMaximize = async () => {
|
||
try {
|
||
await runtime.Window.ToggleMaximise();
|
||
await checkMaximizedState();
|
||
} catch (error) {
|
||
console.error(error);
|
||
}
|
||
};
|
||
|
||
const closeWindow = async () => {
|
||
try {
|
||
await runtime.Window.Close();
|
||
} catch (error) {
|
||
console.error(error);
|
||
}
|
||
};
|
||
|
||
const checkMaximizedState = async () => {
|
||
try {
|
||
isMaximized.value = await runtime.Window.IsMaximised();
|
||
} catch (error) {
|
||
console.error(error);
|
||
}
|
||
};
|
||
|
||
onMounted(async () => {
|
||
await checkMaximizedState();
|
||
});
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.windows-titlebar {
|
||
display: flex;
|
||
height: 32px;
|
||
background: var(--toolbar-bg);
|
||
border-bottom: 1px solid var(--toolbar-border);
|
||
user-select: none;
|
||
-webkit-user-select: none;
|
||
width: 100%;
|
||
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
||
|
||
-webkit-context-menu: none;
|
||
-moz-context-menu: none;
|
||
context-menu: none;
|
||
}
|
||
|
||
.titlebar-content {
|
||
display: flex;
|
||
align-items: center;
|
||
flex: 1;
|
||
padding-left: 8px;
|
||
gap: 8px;
|
||
color: var(--toolbar-text);
|
||
font-size: 12px;
|
||
font-weight: 400;
|
||
cursor: default;
|
||
min-width: 0; /* 允许内容收缩 */
|
||
|
||
-webkit-context-menu: none;
|
||
-moz-context-menu: none;
|
||
context-menu: none;
|
||
}
|
||
|
||
.titlebar-content .titlebar-icon {
|
||
width: 16px;
|
||
height: 16px;
|
||
flex-shrink: 0;
|
||
|
||
img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
}
|
||
}
|
||
|
||
.titlebar-tabs {
|
||
flex: 1;
|
||
height: 100%;
|
||
align-items: center;
|
||
overflow: hidden;
|
||
margin-left: 8px;
|
||
min-width: 0;
|
||
//margin-right: 8px;
|
||
}
|
||
|
||
.titlebar-controls {
|
||
display: flex;
|
||
height: 100%;
|
||
|
||
-webkit-context-menu: none;
|
||
-moz-context-menu: none;
|
||
context-menu: none;
|
||
}
|
||
|
||
.titlebar-button {
|
||
width: 46px;
|
||
height: 32px;
|
||
border: none;
|
||
background: transparent;
|
||
color: var(--toolbar-text);
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: background-color 0.1s ease;
|
||
padding: 0;
|
||
margin: 0;
|
||
|
||
&:hover {
|
||
background: var(--toolbar-button-hover);
|
||
}
|
||
|
||
&:active {
|
||
background: var(--toolbar-button-hover);
|
||
opacity: 0.8;
|
||
}
|
||
}
|
||
|
||
.titlebar-button .titlebar-icon {
|
||
font-family: 'Segoe MDL2 Assets', 'Segoe UI Symbol', 'Segoe UI', system-ui;
|
||
font-size: 9px;
|
||
line-height: 1;
|
||
display: inline-block;
|
||
opacity: 0.9;
|
||
transition: opacity 0.1s ease;
|
||
|
||
.titlebar-button:hover & {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
.minimize-button:hover,
|
||
.maximize-button:hover {
|
||
background: var(--toolbar-button-hover);
|
||
}
|
||
|
||
.minimize-button:active,
|
||
.maximize-button:active {
|
||
background: var(--toolbar-button-hover);
|
||
opacity: 0.8;
|
||
}
|
||
|
||
.close-button:hover {
|
||
background: #c42b1c;
|
||
color: #ffffff;
|
||
|
||
.titlebar-icon {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
.close-button:active {
|
||
background: #a93226;
|
||
|
||
.titlebar-icon {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
</style> |