266 lines
5.8 KiB
Vue
266 lines
5.8 KiB
Vue
<template>
|
|
<div class="macos-titlebar" style="--wails-draggable:drag" @contextmenu.prevent>
|
|
<div class="titlebar-controls" style="--wails-draggable:no-drag" @contextmenu.prevent>
|
|
<button
|
|
class="titlebar-button close-button"
|
|
@click="closeWindow"
|
|
:title="t('titlebar.close')"
|
|
>
|
|
<div class="button-icon">
|
|
<svg width="6" height="6" viewBox="0 0 6 6" v-show="showControlIcons">
|
|
<path d="M1 1l4 4m0-4L1 5" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
|
|
<button
|
|
class="titlebar-button minimize-button"
|
|
@click="minimizeWindow"
|
|
:title="t('titlebar.minimize')"
|
|
>
|
|
<div class="button-icon">
|
|
<svg width="8" height="1" viewBox="0 0 8 1" v-show="showControlIcons">
|
|
<path d="M0 0h8" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
|
|
<button
|
|
class="titlebar-button maximize-button"
|
|
@click="toggleMaximize"
|
|
:title="isMaximized ? t('titlebar.restore') : t('titlebar.maximize')"
|
|
>
|
|
<div class="button-icon">
|
|
<svg width="6" height="6" viewBox="0 0 6 6" v-show="showControlIcons && !isMaximized">
|
|
<path d="M1 1l4 0 0 4-4 0z" fill="none" stroke="currentColor" stroke-width="1"/>
|
|
<path d="M2 2l2 0 0 2" fill="none" stroke="currentColor" stroke-width="1"/>
|
|
</svg>
|
|
<svg width="6" height="6" viewBox="0 0 6 6" v-show="showControlIcons && isMaximized">
|
|
<path d="M1 2l4 0 0 3-4 0z" fill="none" stroke="currentColor" stroke-width="1"/>
|
|
<path d="M2 1l3 0 0 3" fill="none" stroke="currentColor" stroke-width="1"/>
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="titlebar-content" @dblclick="toggleMaximize" @contextmenu.prevent>
|
|
<div class="titlebar-title">voidraft</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, onUnmounted } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import * as runtime from '@wailsio/runtime';
|
|
|
|
const { t } = useI18n();
|
|
const isMaximized = ref(false);
|
|
const showControlIcons = ref(false);
|
|
|
|
const minimizeWindow = async () => {
|
|
try {
|
|
await runtime.Window.Minimise();
|
|
} catch (error) {
|
|
// Error handling
|
|
}
|
|
};
|
|
|
|
const toggleMaximize = async () => {
|
|
try {
|
|
const newState = !isMaximized.value;
|
|
isMaximized.value = newState;
|
|
|
|
if (newState) {
|
|
await runtime.Window.Maximise();
|
|
} else {
|
|
await runtime.Window.UnMaximise();
|
|
}
|
|
|
|
setTimeout(async () => {
|
|
await checkMaximizedState();
|
|
}, 100);
|
|
} catch (error) {
|
|
isMaximized.value = !isMaximized.value;
|
|
}
|
|
};
|
|
|
|
const closeWindow = async () => {
|
|
try {
|
|
await runtime.Window.Close();
|
|
} catch (error) {
|
|
// Error handling
|
|
}
|
|
};
|
|
|
|
const checkMaximizedState = async () => {
|
|
try {
|
|
isMaximized.value = await runtime.Window.IsMaximised();
|
|
} catch (error) {
|
|
// Error handling
|
|
}
|
|
};
|
|
|
|
onMounted(async () => {
|
|
await checkMaximizedState();
|
|
|
|
runtime.Events.On('window:maximised', () => {
|
|
isMaximized.value = true;
|
|
});
|
|
|
|
runtime.Events.On('window:unmaximised', () => {
|
|
isMaximized.value = false;
|
|
});
|
|
|
|
runtime.Events.On('window:focus', async () => {
|
|
await checkMaximizedState();
|
|
});
|
|
|
|
});
|
|
onUnmounted(() => {
|
|
runtime.Events.Off('window:maximised');
|
|
runtime.Events.Off('window:unmaximised');
|
|
runtime.Events.Off('window:focus');
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.macos-titlebar {
|
|
display: flex;
|
|
height: 28px;
|
|
background: var(--toolbar-bg, #ececec);
|
|
border-bottom: 1px solid var(--toolbar-border, rgba(0, 0, 0, 0.1));
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
|
|
|
|
-webkit-context-menu: none;
|
|
-moz-context-menu: none;
|
|
context-menu: none;
|
|
|
|
&:hover {
|
|
.titlebar-button {
|
|
.button-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.titlebar-controls {
|
|
display: flex;
|
|
height: 100%;
|
|
align-items: center;
|
|
padding-left: 8px;
|
|
gap: 8px;
|
|
|
|
-webkit-context-menu: none;
|
|
-moz-context-menu: none;
|
|
context-menu: none;
|
|
}
|
|
|
|
.titlebar-button {
|
|
width: 12px;
|
|
height: 12px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s ease;
|
|
padding: 0;
|
|
margin: 0;
|
|
position: relative;
|
|
|
|
.button-icon {
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
&:hover .button-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.close-button {
|
|
background: #ff5f57;
|
|
|
|
&:hover {
|
|
background: #ff453a;
|
|
}
|
|
|
|
&:active {
|
|
background: #d7463f;
|
|
}
|
|
}
|
|
|
|
.minimize-button {
|
|
background: #ffbd2e;
|
|
|
|
&:hover {
|
|
background: #ffb524;
|
|
}
|
|
|
|
&:active {
|
|
background: #e6a220;
|
|
}
|
|
}
|
|
|
|
.maximize-button {
|
|
background: #28ca42;
|
|
|
|
&:hover {
|
|
background: #1ebe36;
|
|
}
|
|
|
|
&:active {
|
|
background: #1ba932;
|
|
}
|
|
}
|
|
|
|
.titlebar-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
cursor: default;
|
|
|
|
-webkit-context-menu: none;
|
|
-moz-context-menu: none;
|
|
context-menu: none;
|
|
}
|
|
|
|
.titlebar-title {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--toolbar-text, #333);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.macos-titlebar {
|
|
background: var(--toolbar-bg, #2d2d2d);
|
|
border-bottom-color: var(--toolbar-border, rgba(255, 255, 255, 0.1));
|
|
}
|
|
|
|
.titlebar-title {
|
|
color: var(--toolbar-text, #fff);
|
|
}
|
|
|
|
.titlebar-button .button-icon {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
}
|
|
</style> |