2020-07-11 03:13:11 +02:00
|
|
|
<template>
|
|
|
|
<x-column :menu="menu" :column="column" :is-stacked="isStacked">
|
|
|
|
<template #header>
|
|
|
|
<fa :icon="faSatellite"/><span style="margin-left: 8px;">{{ column.name }}</span>
|
|
|
|
</template>
|
|
|
|
|
2020-07-26 06:30:36 +02:00
|
|
|
<x-timeline v-if="column.antennaId" ref="timeline" src="antenna" :antenna="column.antennaId" @after="() => $emit('loaded')"/>
|
2020-07-11 03:13:11 +02:00
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faSatellite, faCog } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import XColumn from './column.vue';
|
|
|
|
import XTimeline from '../timeline.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XTimeline,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
column: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
isStacked: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
faSatellite
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
mediaOnly() {
|
|
|
|
(this.$refs.timeline as any).reload();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.menu = [{
|
|
|
|
icon: faCog,
|
2020-07-26 06:30:36 +02:00
|
|
|
text: this.$t('selectAntenna'),
|
|
|
|
action: this.setAntenna
|
2020-07-11 03:13:11 +02:00
|
|
|
}];
|
|
|
|
},
|
|
|
|
|
2020-07-26 06:30:36 +02:00
|
|
|
mounted() {
|
|
|
|
if (this.column.antennaId == null) {
|
|
|
|
this.setAntenna();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
methods: {
|
2020-07-26 06:30:36 +02:00
|
|
|
async setAntenna() {
|
|
|
|
const antennas = await this.$root.api('antennas/list');
|
|
|
|
const { canceled, result: antenna } = await this.$root.dialog({
|
|
|
|
title: this.$t('selectAntenna'),
|
|
|
|
type: null,
|
|
|
|
select: {
|
|
|
|
items: antennas.map(x => ({
|
|
|
|
value: x, text: x.name
|
|
|
|
})),
|
|
|
|
default: this.column.antennaId
|
|
|
|
},
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
Vue.set(this.column, 'antennaId', antenna.id);
|
|
|
|
this.$store.commit('deviceUser/updateDeckColumn', this.column);
|
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
focus() {
|
|
|
|
(this.$refs.timeline as any).focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|