2021-08-10 11:22:39 +08:00
|
|
|
<template>
|
2021-08-13 16:50:03 +08:00
|
|
|
<q-dialog persistent v-model="show_dialog" @before-hide="resetData">
|
2021-08-11 10:25:35 +08:00
|
|
|
<q-card class="overflow-hidden" style="overflow-y: scroll; max-width: 45vw">
|
|
|
|
<q-form @submit="onSubmit">
|
|
|
|
<q-card-section class="q-ma-none q-pa-sm">
|
|
|
|
<div class="row">
|
2021-08-17 17:17:51 +08:00
|
|
|
<div class="col-auto text-h6">
|
2021-08-11 10:25:35 +08:00
|
|
|
{{
|
|
|
|
type == 1
|
|
|
|
? $t("add signal source")
|
|
|
|
: type == 2
|
|
|
|
? $t("edit signal source")
|
|
|
|
: type == 3
|
|
|
|
? $t("delete signal source")
|
|
|
|
: "add"
|
|
|
|
}}
|
|
|
|
</div>
|
2021-08-17 17:17:51 +08:00
|
|
|
<q-space />
|
|
|
|
<div>
|
2021-08-11 10:25:35 +08:00
|
|
|
<q-btn
|
|
|
|
:loading="loading"
|
|
|
|
flat
|
|
|
|
round
|
|
|
|
icon="close"
|
|
|
|
color="red"
|
|
|
|
v-close-popup
|
|
|
|
>
|
|
|
|
<q-tooltip>
|
|
|
|
{{ $t("close") }}
|
|
|
|
</q-tooltip>
|
|
|
|
</q-btn>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
<q-separator />
|
|
|
|
|
|
|
|
<q-card-section style="max-height: 50vh; width: 45vw" class="scroll">
|
|
|
|
<q-list>
|
|
|
|
<q-item v-if="type != 2">
|
|
|
|
<q-item-label>{{ $t("parent group") }}:</q-item-label>
|
|
|
|
</q-item>
|
|
|
|
<q-item v-if="type != 2" class="q-pa-none q-ma-none">
|
|
|
|
<q-item-section style="padding-right: 10px">
|
|
|
|
<q-tree
|
|
|
|
ref="tree"
|
|
|
|
class="scroll"
|
|
|
|
:class="loading ? 'disable_tree' : ''"
|
|
|
|
v-model:selected="selected"
|
|
|
|
:nodes="tree_nodes"
|
|
|
|
default-expand-all
|
|
|
|
node-key="uuid"
|
|
|
|
labelKey="name"
|
|
|
|
filter="group filter"
|
|
|
|
:filter-method="treeNodesFilter"
|
|
|
|
>
|
|
|
|
<template v-slot:default-header="prop">
|
|
|
|
<q-item
|
|
|
|
class="full-width"
|
|
|
|
:class="
|
|
|
|
prop.tree.selected == prop.key ? 'item-selected-bg' : ''
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<q-item-section avatar>
|
|
|
|
<q-icon
|
|
|
|
:name="'img:source_icon/group.png'"
|
|
|
|
color="orange"
|
|
|
|
size="28px"
|
|
|
|
class="q-mr-sm"
|
|
|
|
/>
|
|
|
|
</q-item-section>
|
|
|
|
<q-item-section>
|
|
|
|
<div class="text-weight-bold text-primary">
|
|
|
|
{{ prop.node.name }}
|
|
|
|
</div>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
</template>
|
|
|
|
</q-tree>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
<q-item>
|
|
|
|
<q-item-section>
|
|
|
|
<q-input
|
|
|
|
:loading="loading"
|
|
|
|
:disable="loading"
|
|
|
|
filled
|
|
|
|
autofocus
|
|
|
|
v-model="item_data.name"
|
|
|
|
:label="$t('signal source name')"
|
|
|
|
:hint="$t('please input signal source name')"
|
|
|
|
lazy-rules
|
|
|
|
:rules="[
|
|
|
|
(val) =>
|
|
|
|
(val && val.length > 0) || $t('Please type something'),
|
|
|
|
]"
|
|
|
|
@keydown="
|
|
|
|
(evt) => {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<template v-if="item_data.name" v-slot:append>
|
|
|
|
<q-icon
|
|
|
|
item_data.name="cancel"
|
|
|
|
@click.stop="item_data.name = null"
|
|
|
|
class="cursor-pointer"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</q-input>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
<q-item>
|
|
|
|
<q-item-section>
|
|
|
|
<q-select
|
|
|
|
:loading="loading"
|
|
|
|
:disable="loading"
|
|
|
|
filled
|
|
|
|
option-value="value"
|
|
|
|
option-label="label"
|
|
|
|
emit-value
|
|
|
|
map-options
|
|
|
|
v-model="item_data.window_type"
|
|
|
|
:options="signal_source_options"
|
|
|
|
:label="$t('signal source type')"
|
|
|
|
:hint="$t('please select signal source type')"
|
|
|
|
@update:model-value="onSelected"
|
|
|
|
@keydown="
|
|
|
|
(evt) => {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
</q-select>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
<q-item>
|
|
|
|
<q-item-section>
|
|
|
|
<q-input
|
|
|
|
:loading="loading"
|
|
|
|
:disable="loading"
|
|
|
|
filled
|
|
|
|
v-model="item_data.media_url"
|
|
|
|
:label="media_url_label"
|
|
|
|
:hint="$t('please input') + media_url_label"
|
|
|
|
lazy-rules
|
|
|
|
:rules="[
|
|
|
|
(val) =>
|
|
|
|
(val && val.length > 0) || $t('Please type something'),
|
|
|
|
]"
|
|
|
|
@keydown="
|
|
|
|
(evt) => {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<template v-if="item_data.media_url" v-slot:append>
|
|
|
|
<q-icon
|
|
|
|
item_data.media_url="cancel"
|
|
|
|
@click.stop="item_data.media_url = null"
|
|
|
|
class="cursor-pointer"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</q-input>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
<q-item
|
|
|
|
v-if="item_data && item_data.window_type == 'EwindowType::Rtsp'"
|
|
|
|
>
|
|
|
|
<q-item-section>
|
|
|
|
<q-input
|
|
|
|
:loading="loading"
|
|
|
|
:disable="loading"
|
|
|
|
filled
|
|
|
|
v-model="item_data.user_name"
|
|
|
|
:label="$t('user name')"
|
|
|
|
:hint="$t('please input user name')"
|
|
|
|
lazy-rules
|
|
|
|
:rules="[
|
|
|
|
(val) =>
|
|
|
|
(val && val.length > 0) || $t('Please type something'),
|
|
|
|
]"
|
|
|
|
@keydown="
|
|
|
|
(evt) => {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<template v-if="item_data.user_name" v-slot:append>
|
|
|
|
<q-icon
|
|
|
|
item_data.user_name="cancel"
|
|
|
|
@click.stop="item_data.user_name = null"
|
|
|
|
class="cursor-pointer"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</q-input>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
<q-item
|
|
|
|
v-if="item_data && item_data.window_type == 'EwindowType::Rtsp'"
|
|
|
|
>
|
|
|
|
<q-item-section>
|
|
|
|
<q-input
|
|
|
|
:loading="loading"
|
|
|
|
:disable="loading"
|
|
|
|
filled
|
|
|
|
v-model="item_data.password"
|
|
|
|
:label="$t('password')"
|
|
|
|
:hint="$t('please input password')"
|
|
|
|
lazy-rules
|
|
|
|
:rules="[
|
|
|
|
(val) =>
|
|
|
|
(val && val.length > 0) || $t('Please type something'),
|
|
|
|
]"
|
|
|
|
@keydown="
|
|
|
|
(evt) => {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<template v-if="item_data.password" v-slot:append>
|
|
|
|
<q-icon
|
|
|
|
item_data.password="cancel"
|
|
|
|
@click.stop="item_data.password = null"
|
|
|
|
class="cursor-pointer"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</q-input>
|
|
|
|
</q-item-section>
|
|
|
|
</q-item>
|
|
|
|
</q-list>
|
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
<q-separator />
|
|
|
|
|
|
|
|
<q-card-actions align="right">
|
|
|
|
<q-btn
|
|
|
|
:loading="loading"
|
|
|
|
flat
|
|
|
|
:label="$t('Cancel')"
|
|
|
|
color="primary"
|
|
|
|
v-close-popup
|
|
|
|
/>
|
|
|
|
<q-btn
|
|
|
|
ref="accept"
|
|
|
|
flat
|
|
|
|
:label="$t('Accept')"
|
|
|
|
:loading="loading"
|
|
|
|
color="primary"
|
|
|
|
type="submit"
|
|
|
|
/>
|
|
|
|
</q-card-actions>
|
|
|
|
</q-form>
|
|
|
|
</q-card>
|
|
|
|
</q-dialog>
|
2021-08-10 11:22:39 +08:00
|
|
|
</template>
|
|
|
|
|
2021-08-11 10:25:35 +08:00
|
|
|
<style scoped>
|
|
|
|
.disable_tree {
|
|
|
|
background: #9e9e9e;
|
|
|
|
cursor: wait;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2021-08-10 11:22:39 +08:00
|
|
|
<script lang="ts">
|
2021-08-11 10:25:35 +08:00
|
|
|
import {
|
|
|
|
defineComponent,
|
|
|
|
ref,
|
|
|
|
watch,
|
|
|
|
reactive,
|
|
|
|
onUnmounted,
|
|
|
|
computed,
|
|
|
|
} from "vue";
|
|
|
|
import { useStore } from "src/store";
|
|
|
|
import GlobalData from "src/common/GlobalData";
|
|
|
|
import { useQuasar } from "quasar";
|
|
|
|
import { useI18n } from "vue-i18n";
|
|
|
|
import {
|
|
|
|
SignalSourceEntity,
|
|
|
|
SignalSourceTreeItemEntity,
|
|
|
|
} from "src/entities/SignalSourceEntity";
|
2021-08-10 11:22:39 +08:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: "ComponentSignalSourceDialog",
|
|
|
|
|
|
|
|
setup() {
|
2021-08-11 10:25:35 +08:00
|
|
|
let $store = useStore();
|
|
|
|
let $q = useQuasar();
|
|
|
|
let $t = useI18n();
|
|
|
|
|
|
|
|
let show_dialog = ref(false);
|
|
|
|
let type = ref(1);
|
|
|
|
let media_url_label = ref("URL");
|
|
|
|
let item_data: SignalSourceEntity = reactive(new SignalSourceEntity());
|
|
|
|
item_data.window_type = "EwindowType::Multimedia";
|
|
|
|
const selected: any = ref(null);
|
|
|
|
let loading = ref(false);
|
|
|
|
|
|
|
|
let suppored_window_types = new Set<string>([
|
|
|
|
"EwindowType::Multimedia",
|
|
|
|
"EwindowType::Web",
|
|
|
|
"EwindowType::Image",
|
|
|
|
"EwindowType::Rtsp",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let signal_source_options = [
|
|
|
|
{
|
|
|
|
label: $t.t("multimedia file"),
|
|
|
|
value: "EwindowType::Multimedia",
|
|
|
|
},
|
|
|
|
{
|
2021-08-12 08:28:52 +08:00
|
|
|
label: $t.t("Web"),
|
2021-08-11 10:25:35 +08:00
|
|
|
value: "EwindowType::Web",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: $t.t("image"),
|
|
|
|
value: "EwindowType::Image",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: $t.t("rtsp"),
|
|
|
|
value: "EwindowType::Rtsp",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const tree_nodes = computed({
|
|
|
|
get: () => $store.state.signal_source_tree,
|
|
|
|
set: (val) => {},
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => selected.value,
|
|
|
|
(newValue, oldValue) => {
|
|
|
|
if (newValue == null) {
|
|
|
|
selected.value = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => item_data.window_type,
|
|
|
|
(newValue, oldValue) => {
|
|
|
|
if (!suppored_window_types.has(newValue)) {
|
|
|
|
item_data.window_type = "EwindowType::Multimedia";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const setMediaUrlLabel = (value: string) => {
|
|
|
|
switch (value) {
|
|
|
|
case "EwindowType::Web":
|
|
|
|
media_url_label.value = $t.t("http url") + ":";
|
|
|
|
break;
|
|
|
|
case "EwindowType::Rtsp":
|
|
|
|
media_url_label.value = $t.t("RTSP url") + ":";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
media_url_label.value = $t.t("file path") + ":";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const requestAddSignalSource = async () => {
|
|
|
|
item_data.group_uuid = selected.value;
|
|
|
|
let response = await GlobalData.getInstance()
|
|
|
|
.getCurrentClient()
|
|
|
|
?.addSignalSource(item_data);
|
|
|
|
if (response) {
|
|
|
|
$q.notify({
|
|
|
|
color: response.success ? "positive" : "negative",
|
|
|
|
icon: response.success ? "done" : "warning",
|
|
|
|
message:
|
|
|
|
$t.t("add signal source") +
|
|
|
|
(response.success ? $t.t("success") : $t.t("fail")) +
|
|
|
|
"!",
|
|
|
|
position: "top",
|
|
|
|
timeout: 1000,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const requestEditSignalSource = async () => {
|
|
|
|
item_data.group_uuid = selected.value;
|
|
|
|
|
|
|
|
let response = await GlobalData.getInstance()
|
|
|
|
.getCurrentClient()
|
|
|
|
?.editSignalSource(item_data);
|
|
|
|
if (response) {
|
|
|
|
$q.notify({
|
|
|
|
color: response.success ? "positive" : "negative",
|
|
|
|
icon: response.success ? "done" : "warning",
|
|
|
|
message:
|
|
|
|
$t.t("edit signal source") +
|
|
|
|
(response.success ? $t.t("success") : $t.t("fail")) +
|
|
|
|
"!",
|
|
|
|
position: "top",
|
|
|
|
timeout: 1000,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
show_dialog,
|
|
|
|
type,
|
|
|
|
signal_source_options,
|
|
|
|
media_url_label,
|
|
|
|
item_data,
|
|
|
|
selected,
|
|
|
|
loading,
|
|
|
|
tree_nodes,
|
|
|
|
showDialog(options: any) {
|
|
|
|
if (options) {
|
|
|
|
type.value = options.type ?? 1;
|
|
|
|
if (options.data && options.data.item_data) {
|
2021-08-12 08:28:52 +08:00
|
|
|
SignalSourceEntity.copy(
|
|
|
|
item_data,
|
|
|
|
JSON.parse(JSON.stringify(options.data.item_data))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (type.value == 2) {
|
|
|
|
selected.value = item_data.group_uuid;
|
|
|
|
} else {
|
|
|
|
selected.value = options.parent_node ?? "";
|
2021-08-11 10:25:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (item_data) {
|
|
|
|
setMediaUrlLabel(item_data.window_type);
|
|
|
|
}
|
|
|
|
show_dialog.value = true;
|
|
|
|
},
|
|
|
|
resetData() {
|
|
|
|
loading.value = false;
|
|
|
|
selected.value = null;
|
2021-08-12 08:28:52 +08:00
|
|
|
SignalSourceEntity.copy(item_data);
|
2021-08-11 10:25:35 +08:00
|
|
|
type.value = 1;
|
|
|
|
},
|
|
|
|
treeNodesFilter(node: any, filter: any) {
|
|
|
|
return node.is_group && !node.item_data?.system_default;
|
|
|
|
},
|
|
|
|
onSelected(value: any) {
|
|
|
|
setMediaUrlLabel(value as string);
|
|
|
|
},
|
|
|
|
async onSubmit() {
|
|
|
|
loading.value = true;
|
|
|
|
try {
|
|
|
|
await (type.value == 2
|
|
|
|
? requestEditSignalSource()
|
|
|
|
: requestAddSignalSource());
|
|
|
|
show_dialog.value = false;
|
|
|
|
} catch {}
|
|
|
|
loading.value = false;
|
|
|
|
},
|
|
|
|
};
|
2021-08-10 11:22:39 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|