2022-06-20 08:38:49 +00:00
|
|
|
<template>
|
|
|
|
<div v-if="show" ref="el" class="fdidabkb" :class="{ slim: narrow, thin: thin_ }" :style="{ background: bg }" @click="onClick">
|
2022-08-13 08:41:17 +00:00
|
|
|
<div v-if="narrow" class="buttons left">
|
|
|
|
<MkAvatar v-if="props.displayMyAvatar && $i" class="avatar" :user="$i" :disable-preview="true"/>
|
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template v-if="metadata">
|
|
|
|
<div v-if="!hideTitle" class="titleContainer" @click="showTabsPopup">
|
|
|
|
<MkAvatar v-if="metadata.avatar" class="avatar" :user="metadata.avatar" :disable-preview="true" :show-indicator="true"/>
|
|
|
|
<i v-else-if="metadata.icon" class="icon" :class="metadata.icon"></i>
|
|
|
|
|
|
|
|
<div class="title">
|
|
|
|
<MkUserName v-if="metadata.userName" :user="metadata.userName" :nowrap="true" class="title"/>
|
|
|
|
<div v-else-if="metadata.title" class="title">{{ metadata.title }}</div>
|
|
|
|
<div v-if="!narrow && metadata.subtitle" class="subtitle">
|
|
|
|
{{ metadata.subtitle }}
|
|
|
|
</div>
|
|
|
|
<div v-if="narrow && hasTabs" class="subtitle activeTab">
|
2022-06-22 07:29:21 +00:00
|
|
|
{{ tabs.find(tab => tab.key === props.tab)?.title }}
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="chevron ti ti-chevron-down"></i>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="!narrow || hideTitle" class="tabs">
|
2022-12-25 06:48:51 +00:00
|
|
|
<button v-for="tab in tabs" :ref="(el) => tabRefs[tab.key] = (el as HTMLElement)" 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)">
|
2022-06-20 08:38:49 +00:00
|
|
|
<i v-if="tab.icon" class="icon" :class="tab.icon"></i>
|
|
|
|
<span v-if="!tab.iconOnly" class="title">{{ tab.title }}</span>
|
|
|
|
</button>
|
2022-06-22 07:29:21 +00:00
|
|
|
<div ref="tabHighlightEl" class="highlight"></div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<div class="buttons right">
|
|
|
|
<template v-for="action in actions">
|
2022-07-16 04:49:23 +00:00
|
|
|
<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>
|
2022-06-20 08:38:49 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-12-25 06:48:51 +00:00
|
|
|
import { onMounted, onUnmounted, ref, inject, watch, nextTick } from 'vue';
|
2022-06-20 08:38:49 +00:00
|
|
|
import tinycolor from 'tinycolor2';
|
|
|
|
import { popupMenu } from '@/os';
|
|
|
|
import { scrollToTop } from '@/scripts/scroll';
|
|
|
|
import { globalEvents } from '@/events';
|
2022-06-22 07:29:21 +00:00
|
|
|
import { injectPageMetadata } from '@/scripts/page-metadata';
|
2022-08-13 08:41:17 +00:00
|
|
|
import { $i } from '@/account';
|
2022-06-22 07:29:21 +00:00
|
|
|
|
|
|
|
type Tab = {
|
2022-12-25 06:48:51 +00:00
|
|
|
key: string;
|
2022-06-22 07:29:21 +00:00
|
|
|
title: string;
|
|
|
|
icon?: string;
|
|
|
|
iconOnly?: boolean;
|
|
|
|
onClick?: (ev: MouseEvent) => void;
|
|
|
|
};
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2022-12-25 06:48:51 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-06-22 07:29:21 +00:00
|
|
|
tabs?: Tab[];
|
|
|
|
tab?: string;
|
2022-06-20 08:38:49 +00:00
|
|
|
actions?: {
|
|
|
|
text: string;
|
|
|
|
icon: string;
|
2022-12-25 06:48:51 +00:00
|
|
|
highlighted?: boolean;
|
2022-06-20 08:38:49 +00:00
|
|
|
handler: (ev: MouseEvent) => void;
|
|
|
|
}[];
|
|
|
|
thin?: boolean;
|
2022-08-13 08:41:17 +00:00
|
|
|
displayMyAvatar?: boolean;
|
2022-12-25 06:48:51 +00:00
|
|
|
}>(), {
|
|
|
|
tabs: () => ([] as Tab[])
|
|
|
|
});
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2022-06-22 07:29:21 +00:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'update:tab', key: string);
|
|
|
|
}>();
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const metadata = injectPageMetadata();
|
|
|
|
|
|
|
|
const hideTitle = inject('shouldOmitHeaderTitle', false);
|
|
|
|
const thin_ = props.thin || inject('shouldHeaderThin', false);
|
|
|
|
|
2022-12-25 06:48:51 +00:00
|
|
|
const el = $ref<HTMLElement | undefined>(undefined);
|
|
|
|
const tabRefs: Record<string, HTMLElement | null> = {};
|
2022-06-22 07:29:21 +00:00
|
|
|
const tabHighlightEl = $ref<HTMLElement | null>(null);
|
2022-12-25 06:48:51 +00:00
|
|
|
const bg = ref<string | undefined>(undefined);
|
2022-06-20 08:38:49 +00:00
|
|
|
let narrow = $ref(false);
|
2022-12-25 06:48:51 +00:00
|
|
|
const hasTabs = $computed(() => props.tabs.length > 0);
|
2022-06-20 08:38:49 +00:00
|
|
|
const hasActions = $computed(() => props.actions && props.actions.length > 0);
|
|
|
|
const show = $computed(() => {
|
|
|
|
return !hideTitle || hasTabs || hasActions;
|
|
|
|
});
|
|
|
|
|
|
|
|
const showTabsPopup = (ev: MouseEvent) => {
|
|
|
|
if (!hasTabs) return;
|
|
|
|
if (!narrow) return;
|
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
|
|
|
const menu = props.tabs.map(tab => ({
|
|
|
|
text: tab.title,
|
|
|
|
icon: tab.icon,
|
2022-06-22 07:29:21 +00:00
|
|
|
active: tab.key != null && tab.key === props.tab,
|
|
|
|
action: (ev) => {
|
|
|
|
onTabClick(tab, ev);
|
|
|
|
},
|
2022-06-20 08:38:49 +00:00
|
|
|
}));
|
2022-12-25 07:12:44 +00:00
|
|
|
popupMenu(menu, (ev.currentTarget ?? ev.target) as HTMLElement);
|
2022-06-20 08:38:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const preventDrag = (ev: TouchEvent) => {
|
|
|
|
ev.stopPropagation();
|
|
|
|
};
|
|
|
|
|
|
|
|
const onClick = () => {
|
2022-12-25 06:48:51 +00:00
|
|
|
if (el) {
|
|
|
|
scrollToTop(el as HTMLElement, { behavior: 'smooth' });
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
};
|
|
|
|
|
2022-06-22 07:29:21 +00:00
|
|
|
function onTabMousedown(tab: Tab, ev: MouseEvent): void {
|
|
|
|
// ユーザビリティの観点からmousedown時にはonClickは呼ばない
|
|
|
|
if (tab.key) {
|
|
|
|
emit('update:tab', tab.key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onTabClick(tab: Tab, ev: MouseEvent): void {
|
2022-06-22 11:47:53 +00:00
|
|
|
if (tab.onClick) {
|
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
|
|
|
tab.onClick(ev);
|
|
|
|
}
|
2022-06-22 07:29:21 +00:00
|
|
|
if (tab.key) {
|
|
|
|
emit('update:tab', tab.key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const calcBg = () => {
|
|
|
|
const rawBg = metadata?.bg || 'var(--bg)';
|
|
|
|
const tinyBg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);
|
|
|
|
tinyBg.setAlpha(0.85);
|
|
|
|
bg.value = tinyBg.toRgbString();
|
|
|
|
};
|
|
|
|
|
|
|
|
let ro: ResizeObserver | null;
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
calcBg();
|
|
|
|
globalEvents.on('themeChanged', calcBg);
|
|
|
|
|
2022-07-01 09:55:45 +00:00
|
|
|
watch(() => [props.tab, props.tabs], () => {
|
|
|
|
nextTick(() => {
|
2022-12-25 06:48:51 +00:00
|
|
|
const tabEl = props.tab ? tabRefs[props.tab] : undefined;
|
|
|
|
if (tabEl && tabHighlightEl && tabEl.parentElement) {
|
2022-07-01 09:55:45 +00:00
|
|
|
// offsetWidth や offsetLeft は少数を丸めてしまうため getBoundingClientRect を使う必要がある
|
|
|
|
// https://developer.mozilla.org/ja/docs/Web/API/HTMLElement/offsetWidth#%E5%80%A4
|
|
|
|
const parentRect = tabEl.parentElement.getBoundingClientRect();
|
|
|
|
const rect = tabEl.getBoundingClientRect();
|
|
|
|
tabHighlightEl.style.width = rect.width + 'px';
|
|
|
|
tabHighlightEl.style.left = (rect.left - parentRect.left) + 'px';
|
|
|
|
}
|
|
|
|
});
|
2022-06-22 07:29:21 +00:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
if (el && el.parentElement) {
|
|
|
|
narrow = el.parentElement.offsetWidth < 500;
|
|
|
|
ro = new ResizeObserver((entries, observer) => {
|
2022-12-25 06:48:51 +00:00
|
|
|
if (el.parentElement && document.body.contains(el as HTMLElement)) {
|
2022-06-20 08:38:49 +00:00
|
|
|
narrow = el.parentElement.offsetWidth < 500;
|
|
|
|
}
|
|
|
|
});
|
2022-12-25 06:48:51 +00:00
|
|
|
ro.observe(el.parentElement as HTMLElement);
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
globalEvents.off('themeChanged', calcBg);
|
|
|
|
if (ro) ro.disconnect();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fdidabkb {
|
2022-12-21 06:27:30 +00:00
|
|
|
--height: 52px;
|
2022-06-20 08:38:49 +00:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
border-bottom: solid 0.5px var(--divider);
|
2022-07-05 13:35:57 +00:00
|
|
|
contain: strict;
|
|
|
|
height: var(--height);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
&.thin {
|
2022-12-21 06:27:30 +00:00
|
|
|
--height: 42px;
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
> .buttons {
|
|
|
|
> .button {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.slim {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .titleContainer {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
> *:first-child {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> *:last-child {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .buttons {
|
|
|
|
--margin: 8px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-08-13 08:41:17 +00:00
|
|
|
min-width: var(--height);
|
2022-06-20 08:38:49 +00:00
|
|
|
height: var(--height);
|
|
|
|
margin: 0 var(--margin);
|
|
|
|
|
2022-08-13 08:41:17 +00:00
|
|
|
&.left {
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
$size: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
vertical-align: bottom;
|
|
|
|
margin: 0 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
&.right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
width: var(--height);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: calc(var(--height) - (var(--margin) * 2));
|
|
|
|
width: calc(var(--height) - (var(--margin) * 2));
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.highlighted {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .fullButton {
|
|
|
|
& + .fullButton {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .titleContainer {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 400px;
|
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-left: 24px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
$size: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
vertical-align: bottom;
|
|
|
|
margin: 0 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin-right: 8px;
|
2022-06-22 11:47:53 +00:00
|
|
|
width: 16px;
|
|
|
|
text-align: center;
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
min-width: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
line-height: 1.1;
|
|
|
|
|
|
|
|
> .subtitle {
|
|
|
|
opacity: 0.6;
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
&.activeTab {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .chevron {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .tabs {
|
2022-06-22 07:29:21 +00:00
|
|
|
position: relative;
|
2022-06-20 08:38:49 +00:00
|
|
|
margin-left: 16px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> .tab {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon + .title {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
2022-06-22 07:29:21 +00:00
|
|
|
|
|
|
|
> .highlight {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
height: 3px;
|
|
|
|
background: var(--accent);
|
|
|
|
border-radius: 999px;
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|