rt-sim-training-client/src/views/iscsSystem/index.vue

259 lines
9.0 KiB
Vue
Raw Normal View History

2020-01-14 09:06:03 +08:00
<template>
<div>
<div :id="iscsId" v-loading="loading" :style="{ width: canvasWidth +'px', height: canvasHeight +'px',background:'#45607B' }" class="iscs-canvas" />
2020-01-14 09:06:03 +08:00
<el-button v-if="showBackButton" class="iscs-button" type="primary" @click="back">{{ $t('global.back') }}</el-button>
</div>
</template>
<script>
import Vue from 'vue';
import Iscs from '@/iscs/iscs';
import { parser, deviceFactory } from '@/iscs/utils/parser';
2020-02-05 12:21:56 +08:00
import iscsData from '@/iscs/constant/iscsData';
2020-01-14 09:06:03 +08:00
import { mapGetters } from 'vuex';
import { exitFullscreen } from '@/utils/screen';
import { putJointTrainingSimulationUser } from '@/api/chat';
2020-03-16 15:29:26 +08:00
import { putJointTrainingSimulationUserNew} from '@/api/jointTraining';
2020-05-10 21:51:44 +08:00
// import { handlerIscsEvent } from '@/api/simulation';
2020-05-10 15:58:08 +08:00
// import { IscsOperation } from '@/scripts/ConstDic';
import { deepAssign } from '@/utils/index';
import { getUID } from '@/iscs/utils/Uid';
2020-01-14 09:06:03 +08:00
export default {
name: 'Iscs',
props: {
size: {
type: Object,
default() {
return null;
}
}
},
data() {
return {
dataZoom: {
offsetX: '0',
offsetY: '0',
scaleRate: '1'
},
config: {
scaleRate: '1',
origin: {
x: 0,
y: 0
}
},
selected: null, // 选择复制元素
copyModel: {}, // 复制元素内容
2020-01-14 09:06:03 +08:00
showBackButton: true,
initTime: '',
started: false,
loading: false,
stationCode: '',
banUpOpenScreenDoor: false,
banDownOpenScreenDoor: false
};
},
computed: {
...mapGetters([
'canvasWidth',
'canvasHeight'
]),
...mapGetters('iscs', [
'iscs'
]),
2020-01-14 09:06:03 +08:00
iscsId() {
return ['iscs', (Math.random().toFixed(5)) * 100000].join('_');
2020-01-15 10:11:26 +08:00
},
2020-03-16 15:29:26 +08:00
drawWay() {
2020-03-27 13:52:14 +08:00
return this.$route.query.drawWay + '';
2020-03-16 15:29:26 +08:00
},
2020-01-15 10:11:26 +08:00
width() {
return this.$store.state.config.width;
},
height() {
return this.$store.state.config.height;
2020-01-14 09:06:03 +08:00
}
},
watch: {
'$store.state.config.canvasSizeCount': function (val) {
this.reSize();
},
'$store.state.socket.equipmentStatus': function (val) {
if (val.length) {
this.statusMessage(val);
}
}
},
mounted() {
},
beforeDestroy() {
this.iscsDestroy();
},
methods: {
2020-02-05 12:21:56 +08:00
show (deviceCode) {
if (!deviceCode) {
return;
}
2020-01-14 09:06:03 +08:00
document.getElementById(this.iscsId).oncontextmenu = function (e) {
return false;
};
this.iscsDestroy();
this.loading = true;
2020-02-05 12:21:56 +08:00
const data = parser(iscsData[deviceCode], {width: this.canvasWidth, height: this.canvasHeight});
2020-01-14 09:06:03 +08:00
this.$iscs = new Iscs({
dom: document.getElementById(this.iscsId),
config: {
renderer: 'canvas',
2020-01-15 13:27:07 +08:00
width: this.width,
height: this.height
2020-01-14 09:06:03 +08:00
},
options: {
scaleRate: 1,
2020-01-15 13:27:07 +08:00
offsetX: 0,
2020-01-14 09:06:03 +08:00
offsetY: 0
},
methods: {
viewLoaded: this.handleViewLoaded
}
});
Vue.prototype.$iscs = this.$iscs;
this.$iscs.on('contextmenu', this.onContextMenu, this);
if (this.$route.query.group) {
this.$iscs.on('selected', this.onSelected, this);
}
2020-02-05 12:21:56 +08:00
this.setIscs(data, iscsData[deviceCode]);
this.$store.dispatch('iscs/setIscsData', iscsData[deviceCode]);
if (this.$route.path.startsWith('/iscs/design')) {
this.$iscs.on('keyboard', this.onKeyboard, this);
}
2020-01-14 09:06:03 +08:00
window.document.oncontextmenu = function () {
return false;
};
},
setIscs(data, oldData) {
this.$iscs.setIscs(oldData, data);
},
// 键盘快捷键事件
onKeyboard(hook) {
if (this.selected && this.selected.code) {
switch (hook) {
case 'Ctrl_C': {
if (this.selected._type != "CheckBox") {
this.copyModel = deepAssign({}, this.selected);
this.copyModel.point = {
x: this.selected.point.x + 10,
y: this.selected.point.y + 10
};
const type1 = this.selected._type.charAt(0).toLowerCase() + this.selected._type.slice(1); // .toLowerCase()
this.copyModel.code = getUID(this.selected._type, this.iscs[type1 + 'List'] || []);
} else {
this.copyModel = {}
}
} break;
case 'Ctrl_V':
this.copyModel.code && this.createDataModel(this.copyModel);
break;
// case 'Delete': this.$store.dispatch('map/setDeleteCount');
// break;
// case 'Update':
// this.$refs.offsetX.focus();
// this.$store.dispatch('map/setUpdateCount');
// break;
}
}
},
createDataModel(model) {
const newModel = deviceFactory(model._type, model);
this.$store.dispatch('iscs/updateIscsDevices', newModel.model);
},
2020-01-14 09:06:03 +08:00
// 点击选择事件
onSelected(em) {
if (em.deviceModel.mean) {
2020-05-10 15:58:08 +08:00
// switch (IscsOperation[em.deviceModel.mean].event) {
// case 'UpHoldTrain':
// case 'UpCancelHoldTrain':
// case 'DownHoldTrain':
// case 'DownCancelHoldTrain':
// handlerIscsEvent(this.$route.query.group, {operate:IscsOperation[em.deviceModel.mean].operate, stationCode:this.stationCode});
// break;
// case 'BanUpOpenScreenDoor':
// this.banUpOpenScreenDoor = !this.banUpOpenScreenDoor;
// break;
// case 'BanDownOpenScreenDoor':
// this.banDownOpenScreenDoor = !this.banDownOpenScreenDoor;
// break;
// case 'UpOpenScreenDoor':
// this.openScreenDoor(this.banUpOpenScreenDoor, IscsOperation[em.deviceModel.mean].operate);
// break;
// case 'DownOpenScreenDoor':
// this.openScreenDoor(this.banDownOpenScreenDoor, IscsOperation[em.deviceModel.mean].operate);
// break;
// }
2020-01-14 09:06:03 +08:00
}
},
openScreenDoor(flag, operate) {
if (flag) {
2020-05-10 21:51:44 +08:00
// handlerIscsEvent(this.$route.query.group, {operate: operate, stationCode:this.stationCode});
2020-01-14 09:06:03 +08:00
}
},
// 右键点击事件
onContextMenu(em) {
2020-02-06 10:29:59 +08:00
if (em.eventTarget) {
this.selected = em.eventTarget.model;
2020-02-06 10:29:59 +08:00
this.$store.dispatch('iscs/setUpdateDeviceData', em.eventTarget.model);
}
2020-01-14 09:06:03 +08:00
},
// 绘图时调用,元素可拖拽
drawIscsInit() {
this.$iscs && this.$iscs.drawIscsInit();
this.showBackButton = false;
},
reSize() {
this.$nextTick(() => {
this.$iscs && this.$iscs.resize({ width: this.width, height: this.height });
});
},
back() {
this.group = this.$route.query.group;
this.$store.dispatch('training/over').then(() => {
2020-03-27 13:52:14 +08:00
if (this.drawWay === 'true') {
2020-03-16 15:29:26 +08:00
putJointTrainingSimulationUserNew(this.group).then(() => {
this.$router.replace({ path: `/trainroom`, query: { group: this.group, lineCode:this.$route.query.lineCode, drawWay: this.drawWay } });
exitFullscreen();
});
} else {
putJointTrainingSimulationUser(this.group).then(() => {
this.$router.replace({ path: `/trainroom`, query: { group: this.group, lineCode:this.$route.query.lineCode } });
exitFullscreen();
});
}
2020-01-14 09:06:03 +08:00
});
},
iscsDestroy() {
if (this.$iscs) {
this.$iscs.dispose();
this.$iscs = '';
Vue.prototype.$iscs = '';
}
},
handleViewLoaded() {
this.loading = false;
},
statusMessage(val) {
this.$iscs && this.$iscs.setDeviceStatus(val);
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.iscs-button{
position: absolute;
float: right;
right: 20px;
bottom: 15px;
}
.iscs-canvas{
}
</style>