2021-02-16 15:17:13 +02:00
|
|
|
<template>
|
|
|
|
<div class="vjoppmmu">
|
|
|
|
<template v-if="edit">
|
|
|
|
<header>
|
2022-05-28 08:28:12 +03:00
|
|
|
<MkSelect v-model="widgetAdderSelected" style="margin-bottom: var(--margin)" class="mk-widget-select">
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.selectWidget }}</template>
|
2022-07-11 17:36:39 +03:00
|
|
|
<option v-for="widget in widgetDefs" :key="widget" :value="widget">{{ i18n.t(`_widgets.${widget}`) }}</option>
|
2021-02-16 15:17:13 +02:00
|
|
|
</MkSelect>
|
2022-12-19 12:01:30 +02:00
|
|
|
<MkButton inline primary class="mk-widget-add" @click="addWidget"><i class="ti ti-plus"></i> {{ i18n.ts.add }}</MkButton>
|
2022-07-20 16:24:26 +03:00
|
|
|
<MkButton inline @click="$emit('exit')">{{ i18n.ts.close }}</MkButton>
|
2021-02-16 15:17:13 +02:00
|
|
|
</header>
|
2022-12-21 04:04:49 +02:00
|
|
|
<Sortable
|
2022-12-21 08:10:21 +02:00
|
|
|
:model-value="props.widgets"
|
2021-02-16 15:17:13 +02:00
|
|
|
item-key="id"
|
2022-12-21 08:10:21 +02:00
|
|
|
handle=".handle"
|
|
|
|
:animation="150"
|
2022-12-22 09:51:48 +02:00
|
|
|
@update:model-value="v => emit('updateWidgets', v)"
|
2021-02-16 15:17:13 +02:00
|
|
|
>
|
|
|
|
<template #item="{element}">
|
|
|
|
<div class="customize-container">
|
2022-12-19 12:01:30 +02:00
|
|
|
<button class="config _button" @click.prevent.stop="configWidget(element.id)"><i class="ti ti-settings"></i></button>
|
|
|
|
<button class="remove _button" @click.prevent.stop="removeWidget(element)"><i class="ti ti-x"></i></button>
|
2022-06-30 13:19:54 +03:00
|
|
|
<div class="handle">
|
2022-12-22 09:51:48 +02:00
|
|
|
<component :is="`mkw-${element.name}`" :ref="el => widgetRefs[element.id] = el" class="widget" :widget="element" @update-props="updateWidget(element.id, $event)"/>
|
2022-06-30 13:19:54 +03:00
|
|
|
</div>
|
2021-02-16 15:17:13 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-12-21 04:04:49 +02:00
|
|
|
</Sortable>
|
2021-02-16 15:17:13 +02:00
|
|
|
</template>
|
2022-12-22 09:51:48 +02:00
|
|
|
<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" @update-props="updateWidget(widget.id, $event)" @contextmenu.stop="onContextmenu(widget, $event)"/>
|
2021-02-16 15:17:13 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-07-11 17:36:39 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, reactive, ref, computed } from 'vue';
|
2021-02-16 15:17:13 +02:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2021-11-11 19:02:25 +02:00
|
|
|
import MkSelect from '@/components/form/select.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { widgets as widgetDefs } from '@/widgets';
|
2022-07-11 17:36:39 +03:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-12-21 04:04:49 +02:00
|
|
|
import { deepClone } from '@/scripts/clone';
|
2022-07-11 17:36:39 +03:00
|
|
|
|
2022-12-21 08:10:21 +02:00
|
|
|
const Sortable = defineAsyncComponent(() => import('vuedraggable').then(x => x.default));
|
2022-07-11 17:36:39 +03:00
|
|
|
|
|
|
|
type Widget = {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
data: Record<string, any>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
widgets: Widget[];
|
|
|
|
edit: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'updateWidgets', widgets: Widget[]): void;
|
|
|
|
(ev: 'addWidget', widget: Widget): void;
|
|
|
|
(ev: 'removeWidget', widget: Widget): void;
|
|
|
|
(ev: 'updateWidget', widget: Partial<Widget>): void;
|
|
|
|
(ev: 'exit'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const widgetRefs = {};
|
|
|
|
const configWidget = (id: string) => {
|
|
|
|
widgetRefs[id].configure();
|
|
|
|
};
|
|
|
|
const widgetAdderSelected = ref(null);
|
|
|
|
const addWidget = () => {
|
|
|
|
if (widgetAdderSelected.value == null) return;
|
|
|
|
|
|
|
|
emit('addWidget', {
|
|
|
|
name: widgetAdderSelected.value,
|
|
|
|
id: uuid(),
|
|
|
|
data: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
widgetAdderSelected.value = null;
|
|
|
|
};
|
|
|
|
const removeWidget = (widget) => {
|
|
|
|
emit('removeWidget', widget);
|
|
|
|
};
|
|
|
|
const updateWidget = (id, data) => {
|
|
|
|
emit('updateWidget', { id, data });
|
|
|
|
};
|
2022-12-21 04:04:49 +02:00
|
|
|
|
2022-07-11 17:36:39 +03:00
|
|
|
function onContextmenu(widget: Widget, ev: MouseEvent) {
|
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (isLink(ev.target)) return;
|
|
|
|
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}`),
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-settings',
|
2022-07-11 17:36:39 +03:00
|
|
|
text: i18n.ts.settings,
|
|
|
|
action: () => {
|
|
|
|
configWidget(widget.id);
|
2021-02-16 15:17:13 +02:00
|
|
|
},
|
2022-07-11 17:36:39 +03:00
|
|
|
}], ev);
|
|
|
|
}
|
2021-02-16 15:17:13 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.vjoppmmu {
|
|
|
|
> header {
|
|
|
|
margin: 16px 0;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
width: 100%;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .widget, .customize-container {
|
2022-07-05 16:35:57 +03:00
|
|
|
contain: content;
|
2021-02-16 15:17:13 +02: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 13:19:54 +03:00
|
|
|
|
|
|
|
> .handle {
|
|
|
|
> .widget {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
2021-02-16 15:17:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|