2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2021-10-10 10:54:15 +00:00
|
|
|
<div class="fdidabkb" :class="{ slim: narrow, thin }" :style="{ background: bg }" @click="onClick" ref="el">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template v-if="info">
|
2021-09-17 13:39:15 +00:00
|
|
|
<div class="titleContainer" @click="showTabsPopup">
|
2021-08-05 13:43:14 +00:00
|
|
|
<i v-if="info.icon" class="icon" :class="info.icon"></i>
|
|
|
|
<MkAvatar v-else-if="info.avatar" class="avatar" :user="info.avatar" :disable-preview="true" :show-indicator="true"/>
|
|
|
|
|
2020-12-29 02:33:21 +00:00
|
|
|
<div class="title">
|
2021-08-05 13:43:14 +00:00
|
|
|
<MkUserName v-if="info.userName" :user="info.userName" :nowrap="false" class="title"/>
|
|
|
|
<div v-else-if="info.title" class="title">{{ info.title }}</div>
|
2021-09-17 13:39:15 +00:00
|
|
|
<div class="subtitle" v-if="!narrow && info.subtitle">
|
2021-08-05 13:43:14 +00:00
|
|
|
{{ info.subtitle }}
|
|
|
|
</div>
|
2021-09-17 13:39:15 +00:00
|
|
|
<div class="subtitle activeTab" v-if="narrow && hasTabs">
|
|
|
|
{{ info.tabs.find(tab => tab.active)?.title }}
|
|
|
|
<i class="chevron fas fa-chevron-down"></i>
|
|
|
|
</div>
|
2020-12-29 02:33:21 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2021-09-17 13:39:15 +00:00
|
|
|
<div class="tabs" v-if="!narrow">
|
|
|
|
<button class="tab _button" v-for="tab in info.tabs" :class="{ active: tab.active }" @click="tab.onClick" v-tooltip="tab.title">
|
|
|
|
<i v-if="tab.icon" class="icon" :class="tab.icon"></i>
|
|
|
|
<span v-if="!tab.iconOnly" class="title">{{ tab.title }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
2021-09-22 12:58:08 +00:00
|
|
|
<div class="buttons right">
|
|
|
|
<template v-if="info && info.actions && !narrow">
|
2021-10-09 03:33:08 +00:00
|
|
|
<template v-for="action in info.actions">
|
|
|
|
<MkButton class="fullButton" v-if="action.asFullButton" @click.stop="action.handler" primary><i :class="action.icon" style="margin-right: 6px;"></i>{{ action.text }}</MkButton>
|
|
|
|
<button v-else class="_button button" :class="{ highlighted: action.highlighted }" @click.stop="action.handler" @touchstart="preventDrag" v-tooltip="action.text"><i :class="action.icon"></i></button>
|
|
|
|
</template>
|
2021-09-22 12:58:08 +00:00
|
|
|
</template>
|
|
|
|
<button v-if="shouldShowMenu" class="_button button" @click.stop="showMenu" @touchstart="preventDrag" v-tooltip="$ts.menu"><i class="fas fa-ellipsis-h"></i></button>
|
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-10-10 15:36:47 +00:00
|
|
|
import { computed, defineComponent, onMounted, onUnmounted, PropType, ref } from 'vue';
|
2021-10-09 03:33:08 +00:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
2021-08-08 03:19:10 +00:00
|
|
|
import { popupMenu } from '@client/os';
|
2021-04-10 14:52:45 +00:00
|
|
|
import { url } from '@client/config';
|
2021-10-09 03:33:08 +00:00
|
|
|
import { scrollToTop } from '@client/scripts/scroll';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2021-10-10 15:36:47 +00:00
|
|
|
import { i18n } from '@client/i18n';
|
|
|
|
import { globalEvents } from '@client/events';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
2021-10-09 03:33:08 +00:00
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
props: {
|
|
|
|
info: {
|
2021-10-10 10:54:15 +00:00
|
|
|
type: Object as PropType<{
|
|
|
|
actions?: {}[];
|
|
|
|
tabs?: {}[];
|
|
|
|
}>,
|
2020-10-17 11:12:00 +00:00
|
|
|
required: true
|
|
|
|
},
|
2021-08-05 13:43:14 +00:00
|
|
|
menu: {
|
|
|
|
required: false
|
|
|
|
},
|
2021-10-08 13:03:06 +00:00
|
|
|
thin: {
|
2021-08-05 13:43:14 +00:00
|
|
|
required: false,
|
2021-10-08 13:03:06 +00:00
|
|
|
default: false
|
2021-02-14 13:26:07 +00:00
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
setup(props) {
|
|
|
|
const el = ref<HTMLElement>(null);
|
|
|
|
const bg = ref(null);
|
|
|
|
const narrow = ref(false);
|
|
|
|
const height = ref(0);
|
|
|
|
const hasTabs = computed(() => {
|
|
|
|
return props.info.tabs && props.info.tabs.length > 0;
|
|
|
|
});
|
|
|
|
const shouldShowMenu = computed(() => {
|
|
|
|
if (props.info == null) return false;
|
|
|
|
if (props.info.actions != null && narrow.value) return true;
|
|
|
|
if (props.info.menu != null) return true;
|
|
|
|
if (props.info.share != null) return true;
|
|
|
|
if (props.menu != null) return true;
|
2021-04-10 04:38:24 +00:00
|
|
|
return false;
|
2021-10-10 10:54:15 +00:00
|
|
|
});
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
const share = () => {
|
2021-04-10 14:52:45 +00:00
|
|
|
navigator.share({
|
2021-10-10 10:54:15 +00:00
|
|
|
url: url + props.info.path,
|
|
|
|
...props.info.share,
|
2021-04-10 14:52:45 +00:00
|
|
|
});
|
2021-10-10 10:54:15 +00:00
|
|
|
};
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
const showMenu = (ev: MouseEvent) => {
|
|
|
|
let menu = props.info.menu ? props.info.menu() : [];
|
|
|
|
if (narrow.value && props.info.actions) {
|
|
|
|
menu = [...props.info.actions.map(x => ({
|
2021-04-11 03:31:24 +00:00
|
|
|
text: x.text,
|
|
|
|
icon: x.icon,
|
|
|
|
action: x.handler
|
|
|
|
})), menu.length > 0 ? null : undefined, ...menu];
|
|
|
|
}
|
2021-10-10 10:54:15 +00:00
|
|
|
if (props.info.share) {
|
2021-04-10 03:40:50 +00:00
|
|
|
if (menu.length > 0) menu.push(null);
|
|
|
|
menu.push({
|
2021-10-10 10:54:15 +00:00
|
|
|
text: i18n.locale.share,
|
2021-04-20 14:22:59 +00:00
|
|
|
icon: 'fas fa-share-alt',
|
2021-10-10 10:54:15 +00:00
|
|
|
action: share
|
2021-04-10 03:40:50 +00:00
|
|
|
});
|
|
|
|
}
|
2021-10-10 10:54:15 +00:00
|
|
|
if (props.menu) {
|
2021-08-05 13:43:14 +00:00
|
|
|
if (menu.length > 0) menu.push(null);
|
2021-10-10 10:54:15 +00:00
|
|
|
menu = menu.concat(props.menu);
|
2021-08-05 13:43:14 +00:00
|
|
|
}
|
2021-08-08 03:19:10 +00:00
|
|
|
popupMenu(menu, ev.currentTarget || ev.target);
|
2021-10-10 10:54:15 +00:00
|
|
|
};
|
2021-08-16 09:11:15 +00:00
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
const showTabsPopup = (ev: MouseEvent) => {
|
|
|
|
if (!hasTabs.value) return;
|
|
|
|
if (!narrow.value) return;
|
2021-09-17 13:39:15 +00:00
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
2021-10-10 10:54:15 +00:00
|
|
|
const menu = props.info.tabs.map(tab => ({
|
2021-09-17 13:39:15 +00:00
|
|
|
text: tab.title,
|
|
|
|
icon: tab.icon,
|
|
|
|
action: tab.onClick,
|
|
|
|
}));
|
|
|
|
popupMenu(menu, ev.currentTarget || ev.target);
|
2021-10-10 10:54:15 +00:00
|
|
|
};
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
const preventDrag = (ev: TouchEvent) => {
|
2021-08-16 09:11:15 +00:00
|
|
|
ev.stopPropagation();
|
2021-10-10 10:54:15 +00:00
|
|
|
};
|
2021-10-09 03:33:08 +00:00
|
|
|
|
2021-10-10 10:54:15 +00:00
|
|
|
const onClick = () => {
|
|
|
|
scrollToTop(el.value, { behavior: 'smooth' });
|
|
|
|
};
|
|
|
|
|
2021-10-10 15:36:47 +00:00
|
|
|
const calcBg = () => {
|
2021-10-10 10:54:15 +00:00
|
|
|
const rawBg = props.info?.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();
|
2021-10-10 15:36:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
calcBg();
|
|
|
|
globalEvents.on('themeChanged', calcBg);
|
|
|
|
onUnmounted(() => {
|
|
|
|
globalEvents.off('themeChanged', calcBg);
|
|
|
|
});
|
2021-10-10 10:54:15 +00:00
|
|
|
|
|
|
|
if (el.value.parentElement) {
|
|
|
|
narrow.value = el.value.parentElement.offsetWidth < 500;
|
|
|
|
new ResizeObserver((entries, observer) => {
|
|
|
|
narrow.value = el.value.parentElement.offsetWidth < 500;
|
|
|
|
}).observe(el.value.parentElement);
|
|
|
|
setTimeout(() => {
|
|
|
|
const currentStickyTop = getComputedStyle(el.value.parentElement).getPropertyValue('--stickyTop') || '0px';
|
|
|
|
el.value.style.setProperty('--stickyTop', currentStickyTop);
|
|
|
|
el.value.parentElement.style.setProperty('--stickyTop', `calc(${currentStickyTop} + ${el.value.offsetHeight}px)`);
|
|
|
|
}, 100); // レンダリング順序の関係で親のstickyTopの設定が少し遅れることがあるため
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
el,
|
|
|
|
bg,
|
|
|
|
narrow,
|
|
|
|
height,
|
|
|
|
hasTabs,
|
|
|
|
shouldShowMenu,
|
|
|
|
share,
|
|
|
|
showMenu,
|
|
|
|
showTabsPopup,
|
|
|
|
preventDrag,
|
|
|
|
onClick,
|
|
|
|
};
|
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-11-28 03:15:22 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-10-17 11:12:00 +00:00
|
|
|
.fdidabkb {
|
2021-10-08 13:03:06 +00:00
|
|
|
--height: 60px;
|
2021-08-05 13:43:14 +00:00
|
|
|
display: flex;
|
2021-10-09 03:33:08 +00:00
|
|
|
position: sticky;
|
|
|
|
top: var(--stickyTop, 0);
|
|
|
|
z-index: 1000;
|
2021-10-08 15:46:52 +00:00
|
|
|
width: 100%;
|
2021-10-09 03:33:08 +00:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
2021-08-05 13:43:14 +00:00
|
|
|
|
2021-10-08 13:03:06 +00:00
|
|
|
&.thin {
|
|
|
|
--height: 50px;
|
|
|
|
}
|
|
|
|
|
2021-09-17 13:39:15 +00:00
|
|
|
&.slim {
|
2021-02-14 13:26:07 +00:00
|
|
|
text-align: center;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
> .titleContainer {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-08-05 13:43:14 +00:00
|
|
|
> .buttons {
|
|
|
|
&.right {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 04:38:24 +00:00
|
|
|
> .buttons {
|
2021-08-05 13:43:14 +00:00
|
|
|
--margin: 8px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: var(--height);
|
|
|
|
margin: 0 var(--margin);
|
2021-04-10 04:38:24 +00:00
|
|
|
|
2021-08-05 13:43:14 +00:00
|
|
|
&.right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
2021-04-10 04:38:24 +00:00
|
|
|
width: var(--height);
|
|
|
|
}
|
2021-08-05 13:43:14 +00:00
|
|
|
|
|
|
|
> .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);
|
|
|
|
}
|
|
|
|
}
|
2021-10-09 03:33:08 +00:00
|
|
|
|
|
|
|
> .fullButton {
|
|
|
|
& + .fullButton {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .titleContainer {
|
2021-08-05 13:43:14 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-10-17 11:12:00 +00:00
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
2021-08-05 13:43:14 +00:00
|
|
|
text-align: left;
|
2021-09-17 13:39:15 +00:00
|
|
|
font-weight: bold;
|
2021-09-25 16:53:56 +00:00
|
|
|
flex-shrink: 0;
|
2021-10-08 13:03:06 +00:00
|
|
|
margin-left: 24px;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-08-05 13:43:14 +00:00
|
|
|
> .avatar {
|
|
|
|
$size: 32px;
|
2020-10-17 11:12:00 +00:00
|
|
|
display: inline-block;
|
2021-08-05 13:43:14 +00:00
|
|
|
width: $size;
|
|
|
|
height: $size;
|
2020-10-17 11:12:00 +00:00
|
|
|
vertical-align: bottom;
|
2021-08-05 13:43:14 +00:00
|
|
|
margin: 0 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-08-05 13:43:14 +00:00
|
|
|
> .icon {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-08-05 13:43:14 +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;
|
2021-09-17 13:39:15 +00:00
|
|
|
|
|
|
|
&.activeTab {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .chevron {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .tabs {
|
|
|
|
margin-left: 16px;
|
|
|
|
font-size: 0.8em;
|
2021-09-25 16:53:56 +00:00
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
2021-09-17 13:39:15 +00:00
|
|
|
|
|
|
|
> .tab {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
height: 3px;
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon + .title {
|
|
|
|
margin-left: 8px;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|