This commit is contained in:
ThatOneCalculator 2023-02-17 12:36:16 -08:00
parent 0d32eb2cd5
commit b654add6b3
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 46 additions and 52 deletions

View File

@ -1,40 +1,39 @@
<template> <template>
<div ref="el" class="fdidabkb" :class="classes" :style="{ background: bg }" @click="onClick"> <div v-if="show" ref="el" class="fdidabkb" :class="{ slim: narrow, thin: thin_ }" :style="{ background: bg }" @click="onClick">
<div v-show="narrow" class="buttons left" @click="openAccountMenu"> <div v-if="narrow" class="buttons left" @click="openAccountMenu">
<MkAvatar v-if="displayMyAvatar && user" class="avatar" :user="user" :disable-preview="true"/> <MkAvatar v-if="props.displayMyAvatar && $i" class="avatar" :user="$i" :disable-preview="true"/>
</div> </div>
<template v-if="hasTabs"> <template v-if="metadata">
<div v-show="!hideTitle" class="titleContainer" @click="showTabsPopup"> <div v-if="!hideTitle" class="titleContainer" @click="showTabsPopup">
<MkAvatar v-if="metadata.avatar" class="avatar" :user="metadata.avatar" :disable-preview="true" :show-indicator="true"/> <MkAvatar v-if="metadata.avatar" class="avatar" :user="metadata.avatar" :disable-preview="true" :show-indicator="true"/>
<i v-else-if="metadata.icon && !narrow" class="icon" :class="metadata.icon"></i> <i v-else-if="metadata.icon && !narrow" class="icon" :class="metadata.icon"></i>
<div class="title">
<MkUserName v-if="metadata.userName" :user="metadata.userName" :nowrap="true" class="title"/> <div class="title">
<div v-else-if="metadata.title && !hasTabs && !narrow" class="title">{{ metadata.title }}</div> <MkUserName v-if="metadata.userName" :user="metadata.userName" :nowrap="true" class="title"/>
<div v-show="!narrow && metadata.subtitle" class="subtitle">{{ metadata.subtitle }}</div> <div v-else-if="metadata.title && !(tabs != null && tabs.length > 0 && narrow)" class="title">{{ metadata.title }}</div>
</div> <div v-if="!narrow && metadata.subtitle" class="subtitle">
</div> {{ metadata.subtitle }}
<div ref="tabsEl" class="tabs" v-show="hasTabs"> </div>
<button v-for="tab in tabs" :key="tab.key" ref="tabRefs[tab.key]" v-tooltip.noDelay="tab.title" </div>
class="tab _button" :class="{ active: isActiveTab(tab) }" @mousedown="onTabMousedown(tab)" </div>
@click="onTabClick(tab)"> <div ref="tabsEl" v-if="hasTabs" class="tabs">
<i v-if="tab.icon && !tab.iconOnly" class="icon" :class="tab.icon"></i> <button v-for="tab in tabs" :ref="(el) => tabRefs[tab.key] = el" v-tooltip.noDelay="tab.title" class="tab _button" :class="{ active: tab.key != null && tab.key === props.tab }" @mousedown="(ev) => onTabMousedown(tab, ev)" @click="(ev) => onTabClick(tab, ev)">
<span class="title">{{ tab.title }}</span> <i v-if="tab.icon" class="icon" :class="tab.icon"></i>
</button> <span class="title">{{ tab.title }}</span>
<div ref="tabHighlightEl" class="highlight"></div> </button>
</div> <div ref="tabHighlightEl" class="highlight"></div>
</template> </div>
<div v-show="hasActions" class="buttons right"> </template>
<button v-for="(action, index) in actions" :key="index" v-tooltip.noDelay="action.text" <div class="buttons right">
class="_button button" :class="{ highlighted: action.highlighted }" @click.stop="action.handler" <template v-for="action in actions">
@touchstart="preventDrag"> <button v-tooltip.noDelay="action.text" class="_button button" :class="{ highlighted: action.highlighted }" @click.stop="action.handler" @touchstart="preventDrag"><i :class="action.icon"></i></button>
<i :class="action.icon"></i> </template>
</button> </div>
</div> </div>
</div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { computed, onMounted, onUnmounted, ref, inject, watch, shallowReactive, nextTick } from 'vue'; import { computed, onMounted, onUnmounted, ref, inject, watch, shallowReactive, nextTick, reactive } from 'vue';
import tinycolor from 'tinycolor2'; import tinycolor from 'tinycolor2';
import { popupMenu } from '@/os'; import { popupMenu } from '@/os';
import { scrollToTop } from '@/scripts/scroll'; import { scrollToTop } from '@/scripts/scroll';
@ -71,17 +70,17 @@ const metadata = injectPageMetadata();
const hideTitle = inject('shouldOmitHeaderTitle', false); const hideTitle = inject('shouldOmitHeaderTitle', false);
const thin_ = props.thin || inject('shouldHeaderThin', false); const thin_ = props.thin || inject('shouldHeaderThin', false);
const el = ref<HTMLElement | null>(null); const el = $ref<HTMLElement | null>(null);
const tabRefs: Record<string, HTMLElement> = {}; const tabRefs = {};
const tabHighlightEl = ref<HTMLElement | null>(null); const tabHighlightEl = $ref<HTMLElement | null>(null);
const tabsEl = ref<HTMLElement | null>(null); const tabsEl = $ref<HTMLElement | null>(null);
const bg = ref<string | null>(null); const bg = ref(null);
const narrow = ref(false); let narrow = $ref(false);
const height = ref(0); const height = ref(0);
const hasTabs = computed(() => props.tabs && props.tabs.length > 0); const hasTabs = $computed(() => props.tabs && props.tabs.length > 0);
const hasActions = computed(() => props.actions && props.actions.length > 0); const hasActions = $computed(() => props.actions && props.actions.length > 0);
const show = computed(() => { const show = $computed(() => {
return !hideTitle || hasTabs.value || hasActions.value; return !hideTitle || hasTabs || hasActions;
}); });
const openAccountMenu = (ev: MouseEvent) => { const openAccountMenu = (ev: MouseEvent) => {
@ -91,11 +90,11 @@ const openAccountMenu = (ev: MouseEvent) => {
}; };
const showTabsPopup = (ev: MouseEvent) => { const showTabsPopup = (ev: MouseEvent) => {
if (!hasTabs.value) return; if (!hasTabs) return;
if (!narrow.value) return; if (!narrow) return;
ev.preventDefault(); ev.preventDefault();
ev.stopPropagation(); ev.stopPropagation();
const menu = props.tabs!.map(tab => ({ const menu = props.tabs.map(tab => ({
text: tab.title, text: tab.title,
icon: tab.icon, icon: tab.icon,
active: tab.key != null && tab.key === props.tab, active: tab.key != null && tab.key === props.tab,
@ -111,7 +110,7 @@ const preventDrag = (ev: TouchEvent) => {
}; };
const onClick = () => { const onClick = () => {
scrollToTop(el.value!, { behavior: 'smooth' }); scrollToTop(el, { behavior: 'smooth' });
}; };
function onTabMousedown(tab: Tab, ev: MouseEvent): void { function onTabMousedown(tab: Tab, ev: MouseEvent): void {
@ -132,11 +131,6 @@ function onTabClick(tab: Tab, ev: MouseEvent): void {
} }
} }
const isActiveTab = (index: number) => {
const activeTab = tabRefs[props.tab]?.value ?? 0;
return index === activeTab;
};
const calcBg = () => { const calcBg = () => {
const rawBg = metadata?.bg || 'var(--bg)'; const rawBg = metadata?.bg || 'var(--bg)';
const tinyBg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg); const tinyBg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);