158 lines
2.9 KiB
Vue
158 lines
2.9 KiB
Vue
<template>
|
|
<div v-if="component" class="mrajymqm _narrow_">
|
|
<header class="header" @contextmenu.prevent.stop="onContextmenu">
|
|
<MkHeader class="title" :info="pageInfo" :center="false"/>
|
|
</header>
|
|
<component :is="component" v-bind="props" :ref="changePage" class="body"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import * as os from '@/os';
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
|
import { resolve } from '@/router';
|
|
import { url } from '@/config';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
},
|
|
|
|
provide() {
|
|
return {
|
|
navHook: (path) => {
|
|
this.navigate(path);
|
|
}
|
|
};
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
path: null,
|
|
component: null,
|
|
props: {},
|
|
pageInfo: null,
|
|
history: [],
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
url(): string {
|
|
return url + this.path;
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
changePage(page) {
|
|
if (page == null) return;
|
|
if (page[symbols.PAGE_INFO]) {
|
|
this.pageInfo = page[symbols.PAGE_INFO];
|
|
}
|
|
},
|
|
|
|
navigate(path, record = true) {
|
|
if (record && this.path) this.history.push(this.path);
|
|
this.path = path;
|
|
const { component, props } = resolve(path);
|
|
this.component = component;
|
|
this.props = props;
|
|
this.$emit('open');
|
|
},
|
|
|
|
back() {
|
|
this.navigate(this.history.pop(), false);
|
|
},
|
|
|
|
close() {
|
|
this.path = null;
|
|
this.component = null;
|
|
this.props = {};
|
|
this.$emit('close');
|
|
},
|
|
|
|
onContextmenu(e) {
|
|
os.contextMenu([{
|
|
type: 'label',
|
|
text: this.path,
|
|
}, {
|
|
icon: 'fas fa-expand-alt',
|
|
text: this.$ts.showInPage,
|
|
action: () => {
|
|
this.$router.push(this.path);
|
|
this.close();
|
|
}
|
|
}, {
|
|
icon: 'fas fa-window-maximize',
|
|
text: this.$ts.openInWindow,
|
|
action: () => {
|
|
os.pageWindow(this.path);
|
|
this.close();
|
|
}
|
|
}, null, {
|
|
icon: 'fas fa-external-link-alt',
|
|
text: this.$ts.openInNewTab,
|
|
action: () => {
|
|
window.open(this.url, '_blank');
|
|
this.close();
|
|
}
|
|
}, {
|
|
icon: 'fas fa-link',
|
|
text: this.$ts.copyLink,
|
|
action: () => {
|
|
copyToClipboard(this.url);
|
|
}
|
|
}], e);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mrajymqm {
|
|
$header-height: 54px; // TODO: どこかに集約したい
|
|
|
|
--root-margin: 16px;
|
|
--margin: var(--marginHalf);
|
|
|
|
height: 100%;
|
|
overflow: auto;
|
|
box-sizing: border-box;
|
|
|
|
> .header {
|
|
display: flex;
|
|
position: sticky;
|
|
z-index: 1000;
|
|
top: 0;
|
|
height: $header-height;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
//background-color: var(--panel);
|
|
-webkit-backdrop-filter: var(--blur, blur(32px));
|
|
backdrop-filter: var(--blur, blur(32px));
|
|
background-color: var(--header);
|
|
border-bottom: solid 0.5px var(--divider);
|
|
box-sizing: border-box;
|
|
|
|
> ._button {
|
|
height: $header-height;
|
|
width: $header-height;
|
|
|
|
&:hover {
|
|
color: var(--fgHighlighted);
|
|
}
|
|
}
|
|
|
|
> .title {
|
|
flex: 1;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
> .body {
|
|
|
|
}
|
|
}
|
|
</style>
|
|
|