ヘッダーにもコンテキストメニュー追加
This commit is contained in:
parent
0bcb1434b0
commit
749102f9c2
|
@ -3,7 +3,7 @@
|
||||||
<XSidebar ref="nav" class="sidebar"/>
|
<XSidebar ref="nav" class="sidebar"/>
|
||||||
|
|
||||||
<div class="contents" ref="contents" :class="{ wallpaper }">
|
<div class="contents" ref="contents" :class="{ wallpaper }">
|
||||||
<header class="header" ref="header">
|
<header class="header" ref="header" @contextmenu.prevent.stop="onContextmenu">
|
||||||
<XHeader :info="pageInfo"/>
|
<XHeader :info="pageInfo"/>
|
||||||
</header>
|
</header>
|
||||||
<main ref="main">
|
<main ref="main">
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, defineAsyncComponent, markRaw } from 'vue';
|
import { defineComponent, defineAsyncComponent, markRaw } from 'vue';
|
||||||
import { faLayerGroup, faBars, faHome, faCircle } from '@fortawesome/free-solid-svg-icons';
|
import { faLayerGroup, faBars, faHome, faCircle, faWindowMaximize, faColumns } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { faBell } from '@fortawesome/free-regular-svg-icons';
|
import { faBell } from '@fortawesome/free-regular-svg-icons';
|
||||||
import { host } from '@/config';
|
import { host } from '@/config';
|
||||||
import { search } from '@/scripts/search';
|
import { search } from '@/scripts/search';
|
||||||
|
@ -215,6 +215,26 @@ export default defineComponent({
|
||||||
if (window._scroll) window._scroll();
|
if (window._scroll) window._scroll();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onContextmenu(e) {
|
||||||
|
const url = this.$route.path;
|
||||||
|
os.contextMenu([{
|
||||||
|
type: 'label',
|
||||||
|
text: url,
|
||||||
|
}, {
|
||||||
|
icon: faColumns,
|
||||||
|
text: this.$t('openInSideView'),
|
||||||
|
action: () => {
|
||||||
|
this.$refs.side.navigate(url);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
icon: faWindowMaximize,
|
||||||
|
text: this.$t('openInWindow'),
|
||||||
|
action: () => {
|
||||||
|
os.pageWindow(url);
|
||||||
|
}
|
||||||
|
}], e);
|
||||||
|
},
|
||||||
|
|
||||||
async onNotification(notification) {
|
async onNotification(notification) {
|
||||||
if (this.$store.state.i.mutingNotificationTypes.includes(notification.type)) {
|
if (this.$store.state.i.mutingNotificationTypes.includes(notification.type)) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue