2021-02-16 14:17:13 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="vjoppmmu">
|
|
|
|
<template v-if="edit">
|
2023-04-29 04:50:32 +02:00
|
|
|
<header tabindex="-1" v-focus>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkSelect
|
|
|
|
v-model="widgetAdderSelected"
|
|
|
|
style="margin-bottom: var(--margin)"
|
|
|
|
class="mk-widget-select"
|
|
|
|
>
|
|
|
|
<template #label>{{ i18n.ts.selectWidget }}</template>
|
|
|
|
<option
|
|
|
|
v-for="widget in widgetDefs"
|
|
|
|
:key="widget"
|
|
|
|
:value="widget"
|
|
|
|
>
|
|
|
|
{{ i18n.t(`_widgets.${widget}`) }}
|
|
|
|
</option>
|
|
|
|
</MkSelect>
|
|
|
|
<MkButton
|
|
|
|
inline
|
|
|
|
primary
|
|
|
|
class="mk-widget-add"
|
|
|
|
@click="addWidget"
|
|
|
|
><i class="ph-plus ph-bold ph-lg"></i>
|
|
|
|
{{ i18n.ts.add }}</MkButton
|
|
|
|
>
|
|
|
|
<MkButton inline @click="$emit('exit')">{{
|
|
|
|
i18n.ts.close
|
|
|
|
}}</MkButton>
|
|
|
|
</header>
|
|
|
|
<XDraggable
|
|
|
|
v-model="widgets_"
|
|
|
|
item-key="id"
|
|
|
|
handle=".handle"
|
|
|
|
animation="150"
|
|
|
|
>
|
|
|
|
<template #item="{ element }">
|
|
|
|
<div class="customize-container">
|
|
|
|
<button
|
|
|
|
class="config _button"
|
|
|
|
@click.prevent.stop="configWidget(element.id)"
|
|
|
|
>
|
|
|
|
<i class="ph-gear-six ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="remove _button"
|
|
|
|
@click.prevent.stop="removeWidget(element)"
|
|
|
|
>
|
|
|
|
<i class="ph-x ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<div class="handle">
|
|
|
|
<component
|
|
|
|
:is="`mkw-${element.name}`"
|
|
|
|
:ref="(el) => (widgetRefs[element.id] = el)"
|
|
|
|
class="widget"
|
|
|
|
:widget="element"
|
|
|
|
@updateProps="updateWidget(element.id, $event)"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-06-30 12:19:54 +02:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</template>
|
|
|
|
</XDraggable>
|
|
|
|
</template>
|
|
|
|
<component
|
|
|
|
:is="`mkw-${widget.name}`"
|
|
|
|
v-for="widget in widgets"
|
|
|
|
v-else
|
|
|
|
:key="widget.id"
|
|
|
|
:ref="(el) => (widgetRefs[widget.id] = el)"
|
|
|
|
class="widget"
|
|
|
|
:widget="widget"
|
|
|
|
@updateProps="updateWidget(widget.id, $event)"
|
|
|
|
@contextmenu.stop="onContextmenu(widget, $event)"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-02-16 14:17:13 +01:00
|
|
|
</template>
|
|
|
|
|
2022-07-11 16:36:39 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defineAsyncComponent, reactive, ref, computed } from "vue";
|
|
|
|
import { v4 as uuid } from "uuid";
|
|
|
|
import MkSelect from "@/components/form/select.vue";
|
|
|
|
import MkButton from "@/components/MkButton.vue";
|
|
|
|
import { widgets as widgetDefs } from "@/widgets";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { i18n } from "@/i18n";
|
2022-07-11 16:36:39 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const XDraggable = defineAsyncComponent(() => import("vuedraggable"));
|
2022-07-11 16:36:39 +02:00
|
|
|
|
|
|
|
type Widget = {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
data: Record<string, any>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
widgets: Widget[];
|
|
|
|
edit: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "updateWidgets", widgets: Widget[]): void;
|
|
|
|
(ev: "addWidget", widget: Widget): void;
|
|
|
|
(ev: "removeWidget", widget: Widget): void;
|
|
|
|
(ev: "updateWidget", widget: Partial<Widget>): void;
|
|
|
|
(ev: "exit"): void;
|
2022-07-11 16:36:39 +02:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const widgetRefs = {};
|
|
|
|
const configWidget = (id: string) => {
|
|
|
|
widgetRefs[id].configure();
|
|
|
|
};
|
|
|
|
const widgetAdderSelected = ref(null);
|
|
|
|
const addWidget = () => {
|
|
|
|
if (widgetAdderSelected.value == null) return;
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("addWidget", {
|
2022-07-11 16:36:39 +02:00
|
|
|
name: widgetAdderSelected.value,
|
|
|
|
id: uuid(),
|
|
|
|
data: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
widgetAdderSelected.value = null;
|
|
|
|
};
|
|
|
|
const removeWidget = (widget) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("removeWidget", widget);
|
2022-07-11 16:36:39 +02:00
|
|
|
};
|
|
|
|
const updateWidget = (id, data) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("updateWidget", { id, data });
|
2022-07-11 16:36:39 +02:00
|
|
|
};
|
|
|
|
const widgets_ = computed({
|
|
|
|
get: () => props.widgets,
|
|
|
|
set: (value) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("updateWidgets", value);
|
2021-02-16 14:17:13 +01:00
|
|
|
},
|
2022-07-11 16:36:39 +02:00
|
|
|
});
|
2021-02-16 14:17:13 +01:00
|
|
|
|
2022-07-11 16:36:39 +02:00
|
|
|
function onContextmenu(widget: Widget, ev: MouseEvent) {
|
|
|
|
const isLink = (el: HTMLElement) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
if (el.tagName === "A") return true;
|
2022-07-11 16:36:39 +02:00
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (isLink(ev.target)) return;
|
2023-04-08 02:01:42 +02:00
|
|
|
if (
|
|
|
|
["INPUT", "TEXTAREA", "IMG", "VIDEO", "CANVAS"].includes(
|
|
|
|
ev.target.tagName
|
|
|
|
) ||
|
|
|
|
ev.target.attributes["contenteditable"]
|
|
|
|
)
|
|
|
|
return;
|
|
|
|
if (window.getSelection()?.toString() !== "") return;
|
|
|
|
|
|
|
|
os.contextMenu(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
type: "label",
|
|
|
|
text: i18n.t(`_widgets.${widget.name}`),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-gear-six ph-bold ph-lg",
|
|
|
|
text: i18n.ts.settings,
|
|
|
|
action: () => {
|
|
|
|
configWidget(widget.id);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ev
|
|
|
|
);
|
2022-07-11 16:36:39 +02:00
|
|
|
}
|
2021-02-16 14:17:13 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.vjoppmmu {
|
|
|
|
> header {
|
|
|
|
margin: 16px 0;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
width: 100%;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
> .widget,
|
|
|
|
.customize-container {
|
2022-07-05 15:35:57 +02:00
|
|
|
contain: content;
|
2021-02-16 14:17:13 +01:00
|
|
|
margin: var(--margin) 0;
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize-container {
|
|
|
|
position: relative;
|
|
|
|
cursor: move;
|
|
|
|
|
|
|
|
> .config,
|
|
|
|
> .remove {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10000;
|
|
|
|
top: 8px;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(#000, 0.7);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .config {
|
|
|
|
right: 8px + 8px + 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .remove {
|
|
|
|
right: 8px;
|
|
|
|
}
|
2022-06-30 12:19:54 +02:00
|
|
|
|
|
|
|
> .handle {
|
|
|
|
> .widget {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
2021-02-16 14:17:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|