2020-10-24 11:21:41 -05:00
|
|
|
<template>
|
|
|
|
<div class="qvzfzxam _narrow_" v-if="component">
|
|
|
|
<div class="container">
|
|
|
|
<header class="header" @contextmenu.prevent.stop="onContextmenu">
|
|
|
|
<button class="_button" @click="back()" v-if="history.length > 0"><Fa :icon="faChevronLeft"/></button>
|
|
|
|
<button class="_button" style="pointer-events: none;" v-else><!-- マージンのバランスを取るためのダミー --></button>
|
|
|
|
<XHeader class="title" :info="pageInfo" :with-back="false"/>
|
|
|
|
<button class="_button" @click="close()"><Fa :icon="faTimes"/></button>
|
|
|
|
</header>
|
|
|
|
<component :is="component" v-bind="props" :ref="changePage"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faTimes, faChevronLeft, faExpandAlt, faWindowMaximize, faExternalLinkAlt, faLink } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import XHeader from './_common_/header.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import copyToClipboard from '@client/scripts/copy-to-clipboard';
|
|
|
|
import { resolve } from '@client/router';
|
|
|
|
import { url } from '@client/config';
|
2020-10-24 11:21:41 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XHeader
|
|
|
|
},
|
|
|
|
|
|
|
|
provide() {
|
|
|
|
return {
|
2020-11-02 19:06:19 -06:00
|
|
|
navHook: (path) => {
|
|
|
|
this.navigate(path);
|
2020-10-24 11:21:41 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2020-11-02 19:06:19 -06:00
|
|
|
path: null,
|
2020-10-24 11:21:41 -05:00
|
|
|
component: null,
|
|
|
|
props: {},
|
|
|
|
pageInfo: null,
|
|
|
|
history: [],
|
|
|
|
faTimes, faChevronLeft,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-11-02 19:06:19 -06:00
|
|
|
computed: {
|
|
|
|
url(): string {
|
|
|
|
return url + this.path;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-24 11:21:41 -05:00
|
|
|
methods: {
|
|
|
|
changePage(page) {
|
|
|
|
if (page == null) return;
|
|
|
|
if (page.INFO) {
|
|
|
|
this.pageInfo = page.INFO;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-11-02 19:06:19 -06:00
|
|
|
navigate(path, record = true) {
|
|
|
|
if (record && this.path) this.history.push(this.path);
|
|
|
|
this.path = path;
|
|
|
|
const { component, props } = resolve(path);
|
2020-10-24 11:21:41 -05:00
|
|
|
this.component = component;
|
|
|
|
this.props = props;
|
|
|
|
},
|
|
|
|
|
|
|
|
back() {
|
|
|
|
this.navigate(this.history.pop(), false);
|
|
|
|
},
|
|
|
|
|
|
|
|
close() {
|
2020-11-02 19:06:19 -06:00
|
|
|
this.path = null;
|
2020-10-24 11:21:41 -05:00
|
|
|
this.component = null;
|
|
|
|
this.props = {};
|
|
|
|
},
|
|
|
|
|
|
|
|
onContextmenu(e) {
|
|
|
|
os.contextMenu([{
|
|
|
|
type: 'label',
|
2020-11-02 19:06:19 -06:00
|
|
|
text: this.path,
|
2020-10-24 11:21:41 -05:00
|
|
|
}, {
|
|
|
|
icon: faExpandAlt,
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.showInPage,
|
2020-10-24 11:21:41 -05:00
|
|
|
action: () => {
|
2020-11-02 19:06:19 -06:00
|
|
|
this.$router.push(this.path);
|
2020-10-24 11:21:41 -05:00
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
icon: faWindowMaximize,
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.openInWindow,
|
2020-10-24 11:21:41 -05:00
|
|
|
action: () => {
|
2020-11-02 19:06:19 -06:00
|
|
|
os.pageWindow(this.path);
|
2020-10-24 11:21:41 -05:00
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
}, null, {
|
|
|
|
icon: faExternalLinkAlt,
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.openInNewTab,
|
2020-10-24 11:21:41 -05:00
|
|
|
action: () => {
|
|
|
|
window.open(this.url, '_blank');
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
icon: faLink,
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.copyLink,
|
2020-10-24 11:21:41 -05:00
|
|
|
action: () => {
|
|
|
|
copyToClipboard(this.url);
|
|
|
|
}
|
|
|
|
}], e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.qvzfzxam {
|
|
|
|
$header-height: 58px; // TODO: どこかに集約したい
|
|
|
|
|
|
|
|
--section-padding: 16px;
|
|
|
|
--margin: var(--marginHalf);
|
|
|
|
|
|
|
|
> .container {
|
|
|
|
position: fixed;
|
|
|
|
width: 370px;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
display: flex;
|
|
|
|
position: sticky;
|
|
|
|
z-index: 1000;
|
|
|
|
top: 0;
|
|
|
|
height: $header-height;
|
|
|
|
width: 100%;
|
|
|
|
line-height: $header-height;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
//background-color: var(--panel);
|
|
|
|
-webkit-backdrop-filter: blur(32px);
|
|
|
|
backdrop-filter: blur(32px);
|
|
|
|
background-color: var(--header);
|
|
|
|
|
|
|
|
> ._button {
|
|
|
|
height: $header-height;
|
|
|
|
width: $header-height;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|