media_player_client/src/pages/WallPage.vue

577 lines
18 KiB
Vue
Raw Normal View History

2021-08-05 14:23:45 +08:00
<template>
<div
ref="wall"
class="fit items-center justify-evenly wall"
@dragenter="onDragEnter"
@dragleave="onDragLeave"
@dragover="onDragOver"
@drop="onDrop"
2021-12-15 16:42:19 +08:00
style="background-color: #bce0f0"
2021-08-05 14:23:45 +08:00
>
2021-08-05 17:26:27 +08:00
<div id="windows" style="position: absolute">
2021-08-06 10:54:03 +08:00
<window
@reset_geometry_offset="resetGeometryOffset"
@commit_geometry="commitGeometry"
@close_this_window="closeWindow"
@close_other_windows="closeOtherWindows"
@close_all_windows="closeAllWindows"
2021-08-09 10:59:16 +08:00
@window_fouse_in="windowFocusIn"
@dblclick="(evt) => windowDBClick(item.window_id)"
2021-12-22 19:44:02 +08:00
@edit_volume="edit_volume"
@mute_unmute="mute_unmute"
2021-08-09 10:59:16 +08:00
:ref="'window_' + item.window_id"
:id="'window_' + item.window_id"
2021-08-05 17:26:27 +08:00
v-for="(item, index) in windows"
2021-08-09 10:59:16 +08:00
:uuid="item.uuid"
2021-08-05 17:26:27 +08:00
:key="index"
2021-12-22 19:44:02 +08:00
:disable="plan_running"
2021-08-05 17:26:27 +08:00
class="window"
2021-08-06 10:54:03 +08:00
:signal_source_table_uuid="item.signal_source_table_uuid"
:window="item"
2021-08-05 17:26:27 +08:00
:style="{
2021-12-15 16:42:19 +08:00
top:
(item.y * $store.state.device_screen_height) / wall_height_scaler +
'px',
left:
(item.x * $store.state.device_screen_width) / wall_width_scaler +
'px',
width:
(item.width * $store.state.device_screen_width) /
wall_width_scaler +
'px',
height:
(item.height * $store.state.device_screen_height) /
wall_height_scaler +
'px',
2021-08-05 17:26:27 +08:00
}"
2021-08-12 08:28:52 +08:00
/>
2021-08-05 17:26:27 +08:00
</div>
2021-08-06 10:54:03 +08:00
<div ref="wall_grids" @click="onWallGridsClick">
2021-08-05 17:26:27 +08:00
<div
v-for="row in wall_rows"
:key="row"
class="row"
2021-08-05 14:23:45 +08:00
:style="{
height: item_height + 'px',
}"
>
2021-08-05 17:26:27 +08:00
<div
:ref="'item' + (row - 1) * wall_cols * col"
v-for="col in wall_cols"
:key="col"
2021-08-09 10:59:16 +08:00
class="col wall_item wall_item_flag"
2021-08-05 17:26:27 +08:00
:style="{
width: item_witdh + 'px',
height: item_height + 'px',
}"
>
<q-popup-proxy context-menu>
2021-08-05 17:26:27 +08:00
<q-popup-proxy context-menu />
<q-list>
2021-12-20 10:34:56 +08:00
<q-item
:disable="plan_running"
clickable
v-close-popup
@click="closeAllWindows"
>
2021-08-05 17:26:27 +08:00
<q-item-section avatar>
<q-icon name="close" color="red" />
</q-item-section>
<q-item-section> {{ $t("close all windwos") }} </q-item-section>
</q-item>
</q-list>
</q-popup-proxy>
</div>
2021-08-05 14:23:45 +08:00
</div>
</div>
</div>
2021-12-22 19:44:02 +08:00
<edit-volume-dialog ref="edit_volume_dialog" />
2021-08-05 14:23:45 +08:00
</template>
<style scoped>
.wall {
border: 1px solid black;
}
.wall_item {
2021-08-06 10:54:03 +08:00
border: 1px solid gray;
2021-08-05 14:23:45 +08:00
}
2021-08-05 17:26:27 +08:00
.window {
position: absolute;
}
2021-08-09 10:59:16 +08:00
.wall_item_flag {
}
2021-08-05 14:23:45 +08:00
</style>
<script lang="ts">
import GlobalData from "src/common/GlobalData";
2021-08-26 15:42:34 +08:00
import { defineComponent, ref, Ref, computed, onMounted } from "vue";
const elementResizeDetectorMaker = require("element-resize-detector");
2021-08-05 14:23:45 +08:00
import { Protocol } from "src/entities/WSProtocol";
2021-08-06 10:54:03 +08:00
import Window from "src/components/Window.vue";
2021-08-05 14:23:45 +08:00
import { useI18n } from "vue-i18n";
import { useStore } from "src/store";
2021-08-06 10:54:03 +08:00
import EventBus, { EventNamesDefine } from "src/common/EventBus";
2021-12-23 09:28:21 +08:00
import { WindowOpenNotifyEntity } from "src/entities/MultimediaWindowEntity";
2021-08-09 10:59:16 +08:00
import WindowOtherStateChangeNotifyEntity from "src/entities/WindowOtherStateChangeNotifyEntity";
import { useQuasar } from "quasar";
2021-08-25 17:30:02 +08:00
import { NotifyMessage } from "src/common/ClientConnection";
2021-08-05 14:23:45 +08:00
2021-12-22 19:44:02 +08:00
import EditVolumeDialog from "src/components/EditVolumeDialog.vue";
2021-08-05 14:23:45 +08:00
export default defineComponent({
name: "PageWall",
2021-12-22 19:44:02 +08:00
components: { Window, EditVolumeDialog },
2021-08-05 14:23:45 +08:00
setup() {
const $q = useQuasar();
2021-08-05 14:23:45 +08:00
const $store = useStore();
const $t = useI18n();
2021-12-22 19:44:02 +08:00
const edit_volume_dialog: Ref<any> = ref(null);
2021-12-20 10:34:56 +08:00
const plan_running = ref(false);
2021-08-05 17:26:27 +08:00
const windows = computed({
get: () => $store.state.windows,
set: (val) => $store.commit("setWindows", val),
});
2021-08-05 14:23:45 +08:00
const wall_rows = computed({
get: () => $store.state.wall_row,
set: (val) => $store.commit("setWallRow", val),
});
const wall_cols = computed({
get: () => $store.state.wall_col,
set: (val) => $store.commit("setWallCol", val),
});
const wall: Ref<HTMLElement | null> = ref(null);
2021-08-09 15:05:14 +08:00
let item_witdh = ref(0);
const item_height = ref(0);
2021-08-05 14:23:45 +08:00
2021-08-05 17:26:27 +08:00
const wall_width_scaler = ref(0);
const wall_height_scaler = ref(0);
const calcWallVWScaler = (wall_width: number, wall_height: number) => {
2021-08-05 17:26:27 +08:00
if (wall.value && wall.value.parentElement) {
wall_height_scaler.value =
$store.state.device_screen_height / wall_height;
wall_width_scaler.value = $store.state.device_screen_width / wall_width;
2021-08-05 17:26:27 +08:00
}
};
2021-08-09 15:05:14 +08:00
const calcWallItemWH = () => {
item_witdh.value =
wall?.value?.parentElement?.offsetWidth ?? 0 / wall_cols.value;
if (wall.value && wall.value.parentElement) {
const wv_scaler =
$store.state.device_screen_width / $store.state.device_screen_height;
item_height.value =
wall.value.parentElement.offsetWidth / wv_scaler / wall_rows.value;
} else {
item_height.value = 0;
}
};
EventBus.getInstance().on(
EventNamesDefine.DocumentBodyClick,
(evt: PointerEvent) => {
if (wall.value) {
let flag = false;
{
let item: HTMLElement | null = evt.srcElement as HTMLElement;
while (item) {
if (item == wall.value) {
flag = true;
break;
}
item = item.parentElement;
}
}
if (!flag) {
EventBus.getInstance().emit(EventNamesDefine.UnSelectAllWindows);
}
}
}
);
EventBus.getInstance().on(
2021-08-12 08:28:52 +08:00
EventNamesDefine.NotifyMessage,
2021-08-26 11:19:31 +08:00
(notify: NotifyMessage) => {
try {
2021-08-26 11:19:31 +08:00
switch (notify.packet.command) {
2021-08-12 08:28:52 +08:00
case Protocol.Commands.kCloseWindow:
{
2021-08-26 11:19:31 +08:00
const temp = JSON.parse(notify.data);
2021-08-12 08:28:52 +08:00
if (temp && temp.window_id) {
$store.commit("removeWindow", {
window_id: temp.window_id,
});
}
2021-08-12 08:28:52 +08:00
}
break;
case Protocol.Commands.kMoveWindow:
{
2021-08-26 11:19:31 +08:00
const temp = JSON.parse(notify.data);
2021-08-12 08:28:52 +08:00
if (temp && temp.window_id) {
const window = $store.state.windows.find(
(item) => item.window_id == temp.window_id
);
if (window) {
$store.commit("setWindowPropertys", [
{
window,
property_name: "x",
value: temp.x ?? 0,
},
{
window,
property_name: "y",
value: temp.y ?? 0,
},
]);
}
}
2021-08-12 08:28:52 +08:00
}
break;
case Protocol.Commands.kResizeWindow:
{
2021-08-26 11:19:31 +08:00
const temp = JSON.parse(notify.data);
2021-08-12 08:28:52 +08:00
if (temp && temp.window_id) {
const window = $store.state.windows.find(
(item) => item.window_id == temp.window_id
);
if (window) {
$store.commit("setWindowPropertys", [
{
window,
property_name: "width",
value: temp.width ?? 0,
},
{
window,
property_name: "height",
value: temp.height ?? 0,
},
]);
}
}
2021-08-12 08:28:52 +08:00
}
break;
case Protocol.Commands.kOpenWindow:
{
2021-08-26 11:19:31 +08:00
const temp = JSON.parse(notify.data) as WindowOpenNotifyEntity;
2021-08-12 08:28:52 +08:00
if (temp) {
$store.commit("pushWindow", temp);
}
2021-08-12 08:28:52 +08:00
}
break;
case Protocol.Commands.kWindowOtherStateChanged:
{
const temp = JSON.parse(
2021-08-26 11:19:31 +08:00
notify.data
2021-08-12 08:28:52 +08:00
) as WindowOtherStateChangeNotifyEntity;
if (temp && temp.window_id) {
2022-01-18 16:09:15 +08:00
if (temp.focus) {
for (const window of $store.state.windows) {
if (window) {
$store.commit("setWindowProperty", {
window,
property_name: "focus",
value: false,
});
}
}
}
2021-08-12 08:28:52 +08:00
const window = $store.state.windows.find(
(item) => item.window_id == temp.window_id
);
if (window) {
2021-12-23 09:28:21 +08:00
$store.commit("setWindowPropertys", [
{
window,
property_name: "playing",
value: temp.playing,
},
{
window,
property_name: "focus",
value: temp.focus,
},
{
window,
property_name: "muted",
value: temp.muted,
},
{
window,
property_name: "volume",
value: temp.volume,
},
]);
2021-08-09 10:59:16 +08:00
}
}
2021-08-12 08:28:52 +08:00
}
break;
2021-12-20 10:34:56 +08:00
case Protocol.Commands.kCurrentRunningPlanStateChanged:
{
const temp = JSON.parse(
notify.data
) as Protocol.PlanRunningStateChangeNotifyEntity;
if (temp && temp.plan) {
plan_running.value = temp.running;
}
}
break;
}
} catch {}
}
);
onMounted(() => {
if (wall.value) {
elementResizeDetectorMaker().listenTo(
wall.value,
(element: HTMLElement) => {
if (element) {
calcWallItemWH();
calcWallVWScaler(element.offsetWidth, element.offsetHeight);
}
}
);
}
2021-08-05 17:26:27 +08:00
});
2021-08-05 14:23:45 +08:00
return {
2021-08-05 17:26:27 +08:00
windows,
2021-08-05 14:23:45 +08:00
wall,
wall_rows,
wall_cols,
item_witdh,
item_height,
2021-08-05 17:26:27 +08:00
wall_width_scaler,
wall_height_scaler,
2021-12-20 10:34:56 +08:00
plan_running,
2021-12-22 19:44:02 +08:00
edit_volume_dialog,
2021-08-05 14:23:45 +08:00
onDrop(e: DragEvent) {
e.preventDefault();
let target = e.target as any;
if (target) {
target.classList.remove("drag-enter");
}
let uuid = e.dataTransfer?.getData("uuid");
if (uuid) {
let signal_sources = GlobalData.getInstance().signal_source.filter(
(item) => (item as any)?.uuid == uuid
);
if (signal_sources.length) {
let signal_source = signal_sources[0];
2021-08-07 11:04:39 +08:00
if (signal_source) {
2021-08-09 10:59:16 +08:00
let dom: HTMLElement | null = e.target as HTMLElement;
2021-08-11 10:56:22 +08:00
if (wall.value && dom) {
2021-08-09 10:59:16 +08:00
if (dom.classList.contains("wall_item_flag")) {
GlobalData.getInstance()
.getCurrentClient()
?.openWindow(
new Protocol.OpenWindowRequestEntity(
signal_source.uuid,
2021-12-15 16:42:19 +08:00
(dom.offsetLeft * wall_width_scaler.value) /
$store.state.device_screen_width,
(dom.offsetTop * wall_height_scaler.value) /
$store.state.device_screen_height,
(dom.offsetWidth * wall_width_scaler.value) /
$store.state.device_screen_width,
(dom.offsetHeight * wall_height_scaler.value) /
$store.state.device_screen_height
2021-08-09 10:59:16 +08:00
)
);
} else if (dom.classList.contains("window_flag")) {
let uuid = dom.getAttribute("uuid");
if (uuid) {
let window = $store.state.windows.find(
(item) => item.uuid == uuid
);
if (window) {
let client = GlobalData.getInstance().getCurrentClient();
if (client) {
let x = window.x;
let y = window.y;
let width = window.width;
let height = window.height;
client.closeWindow(window.window_id);
setTimeout(() => {
client?.openWindow(
new Protocol.OpenWindowRequestEntity(
signal_source.uuid,
x,
y,
width,
height
)
);
}, 100);
}
}
}
}
2021-08-07 11:04:39 +08:00
}
}
2021-08-05 14:23:45 +08:00
}
}
},
onDragEnter(e: DragEvent) {
2021-12-20 10:34:56 +08:00
e.stopPropagation();
2021-08-09 10:59:16 +08:00
let target: HTMLElement | null = e.target as HTMLElement;
2021-08-05 14:23:45 +08:00
if (target && target.draggable !== true) {
2021-08-09 10:59:16 +08:00
while (
target &&
!target.classList.contains("window_flag") &&
!target.classList.contains("wall_item_flag")
) {
target = target.parentElement;
}
target?.classList.add("drag-enter");
2021-08-05 14:23:45 +08:00
}
},
onDragLeave(e: DragEvent) {
2021-08-09 10:59:16 +08:00
let target: HTMLElement = e.target as HTMLElement;
target?.classList.remove("drag-enter");
2021-08-05 14:23:45 +08:00
},
onDragOver(e: DragEvent) {
2021-12-20 10:34:56 +08:00
if (!plan_running.value) {
e.preventDefault();
}
2021-08-05 14:23:45 +08:00
},
2021-08-06 10:54:03 +08:00
onWallGridsClick(e: MouseEvent) {
EventBus.getInstance().emit(EventNamesDefine.UnSelectAllWindows);
$store.commit("setSelectedWindow", "");
2021-08-06 10:54:03 +08:00
},
resetGeometryOffset(
2021-08-06 10:54:03 +08:00
window: any,
offset_x: number,
offset_y: number,
offset_width: number,
offset_height: number
) {
2021-08-06 10:54:03 +08:00
$store.commit("setWindowPropertys", [
{
window,
property_name: "x",
2021-12-15 16:42:19 +08:00
value:
window.x +
(offset_x * wall_width_scaler.value) /
$store.state.device_screen_width,
2021-08-06 10:54:03 +08:00
},
{
window,
property_name: "y",
2021-12-15 16:42:19 +08:00
value:
window.y +
(offset_y * wall_height_scaler.value) /
$store.state.device_screen_height,
2021-08-06 10:54:03 +08:00
},
{
window,
property_name: "width",
value: Math.max(
2021-12-15 16:42:19 +08:00
window.width +
(offset_width * wall_width_scaler.value) /
$store.state.device_screen_width,
32 / $store.state.device_screen_width
),
},
{
window,
property_name: "height",
value: Math.max(
2021-12-15 16:42:19 +08:00
window.height +
(offset_height * wall_height_scaler.value) /
$store.state.device_screen_height,
32 / $store.state.device_screen_height
),
},
2021-08-06 10:54:03 +08:00
]);
},
commitGeometry(window: any) {
const win = window as WindowOpenNotifyEntity;
if (win) {
GlobalData.getInstance()
.getCurrentClient()
?.moveWindow(win.window_id, win.x, win.y);
GlobalData.getInstance()
.getCurrentClient()
?.resizeWindow(win.window_id, win.width, win.height);
}
},
closeAllWindows() {
for (const window of $store.state.windows) {
if (window) {
GlobalData.getInstance()
.getCurrentClient()
?.closeWindow(window.window_id);
}
}
},
2021-08-09 10:59:16 +08:00
windowFocusIn(window_id: number) {
GlobalData.getInstance().getCurrentClient()?.focusIn(window_id);
},
closeOtherWindows(window_id: number) {
for (const window of $store.state.windows) {
if (window && window.window_id != window_id) {
GlobalData.getInstance()
.getCurrentClient()
?.closeWindow(window.window_id);
}
}
},
windowDBClick(window_id: number) {
2021-12-22 19:44:02 +08:00
if (plan_running.value) {
return;
}
GlobalData.getInstance().getCurrentClient()?.windowFitGrid(window_id);
},
closeWindow(window_id: number) {
GlobalData.getInstance().getCurrentClient()?.closeWindow(window_id);
},
2021-12-22 19:44:02 +08:00
edit_volume(window_id: number) {
const window = windows.value.find(
(element) => element && element.window_id == window_id
);
if (window) {
edit_volume_dialog.value?.showDialog(window_id, window.volume);
}
},
mute_unmute(window_id: number) {
const window = windows.value.find(
(element) => element && element.window_id == window_id
);
if (window) {
2021-12-23 09:28:21 +08:00
if (window.muted) {
GlobalData.getInstance()
.getCurrentClient()
?.unmuteWindow(window_id);
} else {
GlobalData.getInstance().getCurrentClient()?.muteWindow(window_id);
}
2021-12-22 19:44:02 +08:00
}
},
2021-08-05 14:23:45 +08:00
};
},
});
</script>