fix ui
This commit is contained in:
parent
94bf7101f8
commit
a0c9fd75d7
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="fdidabkb" :class="{ slim: narrow, thin }" :style="{ background: bg }" @click="onClick">
|
<div class="fdidabkb" :class="{ slim: narrow, thin }" :style="{ background: bg }" @click="onClick" ref="el">
|
||||||
<template v-if="info">
|
<template v-if="info">
|
||||||
<div class="titleContainer" @click="showTabsPopup">
|
<div class="titleContainer" @click="showTabsPopup">
|
||||||
<i v-if="info.icon" class="icon" :class="info.icon"></i>
|
<i v-if="info.icon" class="icon" :class="info.icon"></i>
|
||||||
|
@ -37,12 +37,13 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { computed, defineComponent, onMounted, PropType, ref } from 'vue';
|
||||||
import * as tinycolor from 'tinycolor2';
|
import * as tinycolor from 'tinycolor2';
|
||||||
import { popupMenu } from '@client/os';
|
import { popupMenu } from '@client/os';
|
||||||
import { url } from '@client/config';
|
import { url } from '@client/config';
|
||||||
import { scrollToTop } from '@client/scripts/scroll';
|
import { scrollToTop } from '@client/scripts/scroll';
|
||||||
import MkButton from '@client/components/ui/button.vue';
|
import MkButton from '@client/components/ui/button.vue';
|
||||||
|
import { i18n } from '../../i18n';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
|
@ -51,6 +52,10 @@ export default defineComponent({
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
info: {
|
info: {
|
||||||
|
type: Object as PropType<{
|
||||||
|
actions?: {}[];
|
||||||
|
tabs?: {}[];
|
||||||
|
}>,
|
||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
menu: {
|
menu: {
|
||||||
|
@ -62,99 +67,108 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
setup(props) {
|
||||||
return {
|
const el = ref<HTMLElement>(null);
|
||||||
bg: null,
|
const bg = ref(null);
|
||||||
narrow: false,
|
const narrow = ref(false);
|
||||||
height: 0,
|
const height = ref(0);
|
||||||
};
|
const hasTabs = computed(() => {
|
||||||
},
|
return props.info.tabs && props.info.tabs.length > 0;
|
||||||
|
});
|
||||||
computed: {
|
const shouldShowMenu = computed(() => {
|
||||||
hasTabs(): boolean {
|
if (props.info == null) return false;
|
||||||
return this.info.tabs && this.info.tabs.length > 0;
|
if (props.info.actions != null && narrow.value) return true;
|
||||||
},
|
if (props.info.menu != null) return true;
|
||||||
|
if (props.info.share != null) return true;
|
||||||
shouldShowMenu() {
|
if (props.menu != null) return true;
|
||||||
if (this.info == null) return false;
|
|
||||||
if (this.info.actions != null && this.narrow) return true;
|
|
||||||
if (this.info.menu != null) return true;
|
|
||||||
if (this.info.share != null) return true;
|
|
||||||
if (this.menu != null) return true;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
});
|
||||||
},
|
|
||||||
|
|
||||||
mounted() {
|
const share = () => {
|
||||||
const rawBg = this.info?.bg || 'var(--bg)';
|
|
||||||
const bg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);
|
|
||||||
bg.setAlpha(0.85);
|
|
||||||
this.bg = bg.toRgbString();
|
|
||||||
|
|
||||||
if (this.$el.parentElement) {
|
|
||||||
this.narrow = this.$el.parentElement.offsetWidth < 500;
|
|
||||||
new ResizeObserver((entries, observer) => {
|
|
||||||
this.narrow = this.$el.parentElement.offsetWidth < 500;
|
|
||||||
}).observe(this.$el.parentElement);
|
|
||||||
const currentStickyTop = getComputedStyle(this.$el).getPropertyValue('--stickyTop') || '0px';
|
|
||||||
this.$el.style.setProperty('--stickyTop', currentStickyTop);
|
|
||||||
this.$el.parentElement.style.setProperty('--stickyTop', `calc(${currentStickyTop} + ${this.$el.offsetHeight}px)`);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
share() {
|
|
||||||
navigator.share({
|
navigator.share({
|
||||||
url: url + this.info.path,
|
url: url + props.info.path,
|
||||||
...this.info.share,
|
...props.info.share,
|
||||||
});
|
});
|
||||||
},
|
};
|
||||||
|
|
||||||
showMenu(ev) {
|
const showMenu = (ev: MouseEvent) => {
|
||||||
let menu = this.info.menu ? this.info.menu() : [];
|
let menu = props.info.menu ? props.info.menu() : [];
|
||||||
if (this.narrow && this.info.actions) {
|
if (narrow.value && props.info.actions) {
|
||||||
menu = [...this.info.actions.map(x => ({
|
menu = [...props.info.actions.map(x => ({
|
||||||
text: x.text,
|
text: x.text,
|
||||||
icon: x.icon,
|
icon: x.icon,
|
||||||
action: x.handler
|
action: x.handler
|
||||||
})), menu.length > 0 ? null : undefined, ...menu];
|
})), menu.length > 0 ? null : undefined, ...menu];
|
||||||
}
|
}
|
||||||
if (this.info.share) {
|
if (props.info.share) {
|
||||||
if (menu.length > 0) menu.push(null);
|
if (menu.length > 0) menu.push(null);
|
||||||
menu.push({
|
menu.push({
|
||||||
text: this.$ts.share,
|
text: i18n.locale.share,
|
||||||
icon: 'fas fa-share-alt',
|
icon: 'fas fa-share-alt',
|
||||||
action: this.share
|
action: share
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (this.menu) {
|
if (props.menu) {
|
||||||
if (menu.length > 0) menu.push(null);
|
if (menu.length > 0) menu.push(null);
|
||||||
menu = menu.concat(this.menu);
|
menu = menu.concat(props.menu);
|
||||||
}
|
}
|
||||||
popupMenu(menu, ev.currentTarget || ev.target);
|
popupMenu(menu, ev.currentTarget || ev.target);
|
||||||
},
|
};
|
||||||
|
|
||||||
showTabsPopup(ev) {
|
const showTabsPopup = (ev: MouseEvent) => {
|
||||||
if (!this.hasTabs) return;
|
if (!hasTabs.value) return;
|
||||||
if (!this.narrow) return;
|
if (!narrow.value) return;
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
const menu = this.info.tabs.map(tab => ({
|
const menu = props.info.tabs.map(tab => ({
|
||||||
text: tab.title,
|
text: tab.title,
|
||||||
icon: tab.icon,
|
icon: tab.icon,
|
||||||
action: tab.onClick,
|
action: tab.onClick,
|
||||||
}));
|
}));
|
||||||
popupMenu(menu, ev.currentTarget || ev.target);
|
popupMenu(menu, ev.currentTarget || ev.target);
|
||||||
},
|
};
|
||||||
|
|
||||||
preventDrag(ev) {
|
const preventDrag = (ev: TouchEvent) => {
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
},
|
};
|
||||||
|
|
||||||
onClick(ev) {
|
const onClick = () => {
|
||||||
scrollToTop(this.$el, { behavior: 'smooth' });
|
scrollToTop(el.value, { behavior: 'smooth' });
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
onMounted(() => {
|
||||||
|
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();
|
||||||
|
|
||||||
|
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,
|
||||||
|
};
|
||||||
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue