hippofish/packages/client/src/components/global/MkA.vue

126 lines
2.5 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<a
:href="to"
:class="active ? activeClass : null"
@click="nav"
@contextmenu.prevent.stop="onContextmenu"
@click.stop
>
<slot></slot>
</a>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { inject } from "vue";
import * as os from "@/os";
import copyToClipboard from "@/scripts/copy-to-clipboard";
import { url } from "@/config";
import { popout as popout_ } from "@/scripts/popout";
import { i18n } from "@/i18n";
import { useRouter } from "@/router";
2023-04-08 02:01:42 +02:00
const props = withDefaults(
defineProps<{
to: string;
activeClass?: null | string;
behavior?: null | "window" | "browser" | "modalWindow";
}>(),
{
activeClass: null,
behavior: null,
}
);
const router = useRouter();
const active = $computed(() => {
if (props.activeClass == null) return false;
const resolved = router.resolve(props.to);
if (resolved == null) return false;
if (resolved.route.path === router.currentRoute.value.path) return true;
if (resolved.route.name == null) return false;
if (router.currentRoute.value.name == null) return false;
return resolved.route.name === router.currentRoute.value.name;
});
function onContextmenu(ev) {
const selection = window.getSelection();
2023-04-08 02:01:42 +02:00
if (selection && selection.toString() !== "") return;
os.contextMenu(
[
{
type: "label",
text: props.to,
},
{
icon: "ph-browser ph-bold ph-lg",
text: i18n.ts.openInWindow,
action: () => {
os.pageWindow(props.to);
},
},
{
icon: "ph-arrows-out-simple ph-bold ph-lg",
text: i18n.ts.showInPage,
action: () => {
router.push(props.to, "forcePage");
},
},
null,
{
icon: "ph-arrow-square-out ph-bold ph-lg",
text: i18n.ts.openInNewTab,
action: () => {
window.open(props.to, "_blank");
},
},
{
icon: "ph-link-simple ph-bold ph-lg",
text: i18n.ts.copyLink,
action: () => {
copyToClipboard(`${url}${props.to}`);
},
},
],
ev
);
}
function openWindow() {
os.pageWindow(props.to);
}
function modalWindow() {
os.modalPageWindow(props.to);
}
2021-04-11 14:09:35 +02:00
function popout() {
popout_(props.to);
}
2022-07-17 22:03:39 +02:00
function nav(ev: MouseEvent) {
if (!ev.ctrlKey) {
ev.preventDefault();
2023-04-08 02:01:42 +02:00
if (props.behavior === "browser") {
location.href = props.to;
return;
}
2021-03-02 17:03:29 +01:00
if (props.behavior) {
2023-04-08 02:01:42 +02:00
if (props.behavior === "window") {
return openWindow();
2023-04-08 02:01:42 +02:00
} else if (props.behavior === "modalWindow") {
return modalWindow();
}
}
if (ev.shiftKey) {
return openWindow();
}
2023-04-08 02:01:42 +02:00
router.push(props.to, ev.ctrlKey ? "forcePage" : null);
2022-07-17 22:03:39 +02:00
}
}
</script>