media_player_client/src/pages/WallPage.vue

857 lines
28 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">
2022-02-10 15:51:48 +08:00
<window
@reset_geometry_offset="resetGeometryOffset"
@commit_geometry="commitGeometry"
@close_this_window="closeWindow"
@close_other_windows="closeOtherWindows"
@close_all_windows="closeAllWindows"
@top_window="topWindow"
@lower_window="lowerWindow"
2022-02-10 15:51:48 +08:00
@dblclick="(evt) => windowDBClick(item.window_id)"
@edit_volume="edit_volume"
@mute_unmute="mute_unmute"
@start_polling="start_polling"
@stop_polling="stop_polling"
@polling_setting="polling_setting"
v-for="(item, index) in windows"
:key="index"
:ref="'window_' + item.window_id"
:id="'window_' + item.window_id"
:uuid="item.uuid"
:disable="plan_running"
class="window"
:mouse_area_flag="area_open_window_flag"
:signal_source_table_uuid="item.signal_source_table_uuid"
:window="item"
:style="{
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',
'z-index': $store.state.windows_sort.findIndex(
(element) => element == item.uuid
),
}"
>
</window>
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>
2022-01-25 11:34:07 +08:00
<div
class="mouse_area_mask"
v-show="area_open_window_flag"
style="position: fixed; pointer-events: none; z-index: 999"
:style="{
left:
Math.min(area_open_window_rect.start_x, area_open_window_rect.end_x) +
'px',
top:
Math.min(area_open_window_rect.start_y, area_open_window_rect.end_y) +
'px',
width:
Math.abs(area_open_window_rect.end_x - area_open_window_rect.start_x) +
'px',
height:
Math.abs(area_open_window_rect.end_y - area_open_window_rect.start_y) +
'px',
}"
></div>
2021-12-22 19:44:02 +08:00
<edit-volume-dialog ref="edit_volume_dialog" />
<polling-setting-dialog ref="polling_setting_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 {
}
2022-01-25 11:34:07 +08:00
.mouse_area_mask {
background: #aacceec2;
border: 1px solid #0069bee7;
}
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";
import PollingSettingDialog from "src/components/PollingSettingDialog.vue";
2021-12-22 19:44:02 +08:00
2022-01-25 11:34:07 +08:00
class Rect {
start_x = 0;
start_y = 0;
end_x = 0;
end_y = 0;
reset() {
this.start_x = 0;
this.start_y = 0;
this.end_x = 0;
this.end_y = 0;
}
}
2021-08-05 14:23:45 +08:00
export default defineComponent({
name: "PageWall",
components: { Window, EditVolumeDialog, PollingSettingDialog },
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);
const polling_setting_dialog: Ref<any> = ref(null);
2021-12-22 19:44:02 +08:00
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);
2022-01-25 11:34:07 +08:00
const area_open_window_flag = ref(false);
const area_open_window_rect = ref(new Rect());
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;
}
2022-02-09 20:12:04 +08:00
item_witdh.value =
Math.ceil(item_witdh.value + wall_cols.value) & ~wall_cols.value;
item_height.value =
Math.ceil(item_height.value + wall_rows.value) & ~wall_rows.value;
2021-08-09 15:05:14 +08:00
};
2022-01-25 11:34:07 +08:00
const wallMouseDown = (evt: MouseEvent) => {
2022-01-25 19:41:28 +08:00
if (plan_running.value) {
return;
}
2022-01-25 11:34:07 +08:00
if (evt.ctrlKey && wall.value) {
let left =
wall.value.offsetLeft + (wall.value.parentElement?.offsetLeft ?? 0);
let top =
wall.value.offsetTop + (wall.value.parentElement?.offsetTop ?? 0);
if (
left <= evt.clientX &&
top <= evt.clientY &&
left + wall.value.offsetWidth >= evt.clientX &&
top + wall.value.offsetHeight >= evt.clientY
) {
area_open_window_rect.value.start_x = evt.clientX;
area_open_window_rect.value.start_y = evt.clientY;
area_open_window_rect.value.end_x = evt.clientX;
area_open_window_rect.value.end_y = evt.clientY;
area_open_window_flag.value = true;
evt.stopPropagation();
}
}
};
const wallMouseUp = (evt: MouseEvent) => {
if (area_open_window_flag.value && wall.value) {
evt.stopPropagation();
// 大小为0 不开窗
if (
area_open_window_rect.value.start_x !=
area_open_window_rect.value.end_x &&
area_open_window_rect.value.start_y !=
2022-01-25 11:34:07 +08:00
area_open_window_rect.value.end_y
) {
// 开窗
let left =
wall.value.offsetLeft + (wall.value.parentElement?.offsetLeft ?? 0);
let top =
wall.value.offsetTop + (wall.value.parentElement?.offsetTop ?? 0);
let start_x =
Math.min(
area_open_window_rect.value.start_x,
area_open_window_rect.value.end_x
) - left;
let start_y =
Math.min(
area_open_window_rect.value.start_y,
area_open_window_rect.value.end_y
) - top;
let end_x = Math.abs(
area_open_window_rect.value.end_x -
area_open_window_rect.value.start_x
2022-01-25 11:34:07 +08:00
);
let end_y = Math.abs(
area_open_window_rect.value.end_y -
area_open_window_rect.value.start_y
);
GlobalData.getInstance()
.getCurrentClient()
?.openWindow(
new Protocol.OpenWindowRequestEntity(
$store.state.selected_signal_source,
(start_x * wall_width_scaler.value) /
$store.state.device_screen_width,
(start_y * wall_height_scaler.value) /
$store.state.device_screen_height,
(end_x * wall_width_scaler.value) /
$store.state.device_screen_width,
(end_y * wall_height_scaler.value) /
$store.state.device_screen_height
)
);
}
2022-01-25 11:34:07 +08:00
}
area_open_window_flag.value = false;
area_open_window_rect.value.reset();
};
const wallMouseMove = (evt: MouseEvent) => {
if (area_open_window_flag.value) {
evt.stopPropagation();
if (wall.value) {
let left =
wall.value.offsetLeft + (wall.value.parentElement?.offsetLeft ?? 0);
let top =
wall.value.offsetTop + (wall.value.parentElement?.offsetTop ?? 0);
let right = left + wall.value.offsetWidth;
let bottom = top + wall.value.offsetHeight;
if (evt.clientX < left) {
area_open_window_rect.value.end_x = left;
} else if (evt.clientX > right) {
area_open_window_rect.value.end_x = right;
} else {
area_open_window_rect.value.end_x = evt.clientX;
}
if (evt.clientY < top) {
area_open_window_rect.value.end_y = top;
} else if (evt.clientY > bottom) {
area_open_window_rect.value.end_y = bottom;
} else {
area_open_window_rect.value.end_y = evt.clientY;
}
}
}
};
EventBus.getInstance().on(EventNamesDefine.WindowMouseDown, wallMouseDown);
EventBus.getInstance().on(EventNamesDefine.WindowMouseMove, wallMouseMove);
EventBus.getInstance().on(EventNamesDefine.WindowMouseUp, wallMouseUp);
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) {
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: "muted",
value: temp.muted,
},
{
window,
property_name: "volume",
value: temp.volume,
},
{
window,
property_name: "volume",
value: temp.volume,
},
{
window,
property_name: "polling",
value: temp.polling,
},
{
window,
property_name: "polling_title",
value: temp.title,
},
{
window,
property_name: "polling_window_type",
value: temp.window_type,
},
2021-12-23 09:28:21 +08:00
]);
2021-08-09 10:59:16 +08:00
}
}
2021-08-12 08:28:52 +08:00
}
break;
case Protocol.Commands.kTopWindow:
2022-02-10 15:51:48 +08:00
{
const temp = JSON.parse(
notify.data
) as Protocol.TopWindowNotifyEntity;
2022-02-10 15:51:48 +08:00
if (temp) {
for (const window of $store.state.windows) {
if (window && window.window_id != temp.new_window_id) {
$store.commit("setWindowProperty", {
window,
property_name: "focus",
value: false,
});
}
}
const window = $store.state.windows.find(
(item) => item.window_id == temp.new_window_id
);
$store.commit("setWindowProperty", {
window,
property_name: "focus",
value: true,
});
$store.commit("topWindow", temp.new_window_id);
}
}
break;
case Protocol.Commands.kLowerWindow:
{
const temp = JSON.parse(
notify.data
) as Protocol.LowerWindowNotifyEntity;
if (temp) {
$store.commit("lowerWindow", temp.window_id);
}
}
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,
polling_setting_dialog,
2022-01-25 11:34:07 +08:00
area_open_window_rect,
area_open_window_flag,
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")) {
// 开窗
2021-08-09 10:59:16 +08:00
GlobalData.getInstance()
.getCurrentClient()
?.openWindow(
new Protocol.OpenWindowRequestEntity(
signal_source.uuid,
2022-02-09 20:12:04 +08:00
dom.offsetLeft / wall.value.clientWidth,
dom.offsetTop / wall.value.clientHeight,
dom.offsetWidth / wall.value.clientWidth,
dom.offsetHeight / wall.value.clientHeight
2021-08-09 10:59:16 +08:00
)
);
} else if (dom.classList.contains("window_flag")) {
// 替换窗口
2021-08-09 10:59:16 +08:00
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);
}
}
},
topWindow(window_id: number) {
2021-08-09 10:59:16 +08:00
GlobalData.getInstance().getCurrentClient()?.focusIn(window_id);
},
lowerWindow(window_id: number) {
GlobalData.getInstance().getCurrentClient()?.lowerWindow(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
}
},
start_polling(window_id: number) {
const window = windows.value.find(
(element) => element && element.window_id == window_id
);
if (window) {
GlobalData.getInstance().getCurrentClient()?.startPolling(window_id);
}
},
stop_polling(window_id: number) {
const window = windows.value.find(
(element) => element && element.window_id == window_id
);
if (window) {
GlobalData.getInstance().getCurrentClient()?.stopPolling(window_id);
}
},
async polling_setting(window_id: number) {
const window = windows.value.find(
(element) => element && element.window_id == window_id
);
if (window) {
if (window.polling) {
$q.notify({
color: "positive",
icon: "done",
message: $t.t("please stop polling first") + "!",
position: "top",
timeout: 1500,
});
return;
}
const datas = await polling_setting_dialog.value.showDialogAsync(
window.polling_signal_sources
);
if (datas) {
try {
const resposne = await GlobalData.getInstance()
.getCurrentClient()
?.setPollingData(window_id, datas);
if (resposne) {
if (resposne.success) {
$q.notify({
color: "positive",
icon: "done",
message: $t.t("set polling data") + $t.t("success") + "!",
position: "top",
timeout: 1500,
});
} else {
$q.notify({
color: "negative",
icon: "warning",
message: $t.t("set polling data") + $t.t("failed") + "!",
position: "top",
timeout: 1500,
});
}
}
} catch (e) {
console.log(e);
}
}
}
},
2021-08-05 14:23:45 +08:00
};
},
});
</script>