rt-sim-training-client/src/views/scriptManage/getAction.vue
joylink_cuiweidong af0068c972 地图绘制代码调整
剧本录制代码调整
2020-08-04 14:02:10 +08:00

263 lines
10 KiB
Vue

<template>
<el-scrollbar ref="elActionScrollbar" wrap-class="scrollbar-wrapper" class="scriptBottom" :style="{width:370+'px',height:size.height+'px'}">
<el-timeline :reverse="reverse" class="el_timeline">
<el-timeline-item v-for="(actionInfo,index) in actionInfoList" :key="index">
<el-card>
<div class="actionTable">
<span class="detail" v-html="actionInfo.detail" />
<span class="otherInfo" v-html="actionInfo.otherInfo" />
<span v-if="actionInfo.isStartCoversition">
<span class="roleClass">{{ actionInfo.memberName }}</span>
<span>邀请</span>
<span class="roleClass">{{ actionInfo.targetName }}</span>
<span>开始会话</span>
</span>
<span v-else-if="actionInfo.isDrive">
<span class="roleClass">{{ actionInfo.memberName }}</span>
<span>把车开到</span>
<span class="commandStyle">区段{{ actionInfo.targetName }}</span>
</span>
<span v-else-if="actionInfo.isClose">
<span class="roleClass">{{ actionInfo.memberName }}</span>
<span>结束了会话</span>
</span>
<span v-else-if="actionInfo.isCoversition">
<span class="roleClass">{{ actionInfo.memberName }}</span>
<!-- <span>{{ $t('scriptRecord.speakTo') }}</span> -->
<!-- <span class="roleClass">{{ actionInfo.targetName }}</span> -->
<span>: </span>
<span v-if="!actionInfo.isModify">{{ actionInfo.reply }}</span>
<textarea v-else v-model="actionInfo.modifyText" type="text" class="modifyText" />
</span>
<span v-else>
<span class="roleClass">{{ actionInfo.memberName }}</span>
<span>{{ $t('scriptRecord.executeCommandTips') }}</span>
<span class="commandStyle">{{ actionInfo.command }}</span>
</span>
</div>
<div class="btnGroup">
<el-button v-if="actionInfo.visible && !actionInfo.isModify" type="primary" size="mini" style="margin-left:10px;" @click="modifyAction(actionInfo)">{{ $t('scriptRecord.modifyConversitionButton') }}</el-button>
<el-button v-if="actionInfo.visible && actionInfo.isModify" :loading="modifyTextLoading" type="danger" size="mini" style="margin-left:10px;" @click="confirmModify(actionInfo)">确定</el-button>
<el-button v-if="actionInfo.visible && actionInfo.isModify" type="" size="mini" style="margin-left:10px;" @click="cancleModify(actionInfo)">取消</el-button>
<!-- <el-button type="danger" size="mini" @click="deleteAction(actionInfo.id)">删除</el-button> -->
</div>
</el-card>
</el-timeline-item>
</el-timeline>
</el-scrollbar>
</template>
<script>
import {getScriptAllAction, modifyScriptActionNew } from '@/api/simulation';
import CMD from '@/scripts/cmdPlugin/CommandEnum';
// import CommandHandler from '@/scripts/cmdPlugin/CommandHandler';
export default {
name: 'GetActionNew',
props: {
group: {
type: String,
required: true
},
size: {
type: Object,
required: true
},
memberList:{
type:Array,
required:true
}
},
data() {
return {
actionInfoList: [],
deviceCommandList: [],
reverse: false,
loading: true,
// isModify:false,
// modifyText:'',
modifyTextLoading:false,
// behaviorName:"",
memberName: ''
};
},
computed:{
// drawWay() {
// const drawWay = this.$route.query.drawWay;
// return drawWay && JSON.parse(drawWay);
// }
},
watch: {
actionInfoList: function(val) {
this.$nextTick(function() {
var div = this.$refs['elActionScrollbar'].$refs['wrap'];
div.scrollTop = this.$refs['elActionScrollbar'].wrap.scrollHeight;
});
},
'$store.state.socket.scriptAction':function(val) {
this.covertData(this.memberList, val);
},
'memberList':function(val) {
this.loadInitData();
}
},
mounted() {
},
methods: {
loadInitData() {
this.loadOtherData(this.$route.query);
},
covertData(memberList, element) {
const member = memberList.find(elem=>{ return elem.id == element.memberId; });
const memberName = member.name;
switch (element.type) {
case 'Start_Conversation': {
// isStartCoversition
const targetNameList = [];
element.conversationMemberIds.forEach(id=>{
if (member.id != id) {
const userName = memberList.find(elem=>{ return elem.id == id; });
targetNameList.push(userName.name);
}
});
this.actionInfoList.push({id: element.id, isStartCoversition: true, memberName: memberName, targetName:targetNameList.toString() });
break;
}
case 'Drive': {
this.actionInfoList.push({id: element.id, isDrive: true, memberName: memberName, targetName:this.covertSection(element.targetSectionCode)});
break;
}
case 'Conversation':
{
this.actionInfoList.push({id: element.id, isCoversition: true, memberName: memberName, reply: element.content, row: element, visible: true, isModify:false, modifyText:''});
break;
}
case 'Over_Conversation': {
this.actionInfoList.push({id: element.id, isClose: true, memberName: memberName});
break;
}
case 'Operation':
{
// const command = CommandHandler.getScriptDefinition(element.operationType);
const commandName = element.operationType;
let operateType = commandName.split('_')[0];
if (operateType == 'CM') {
operateType = 'ControlConvertMenu';
}
const operateName = Object.values(CMD[operateType]).find(res=>{ return res.value == commandName; });
const deviceTypeList = {Section:'区段', Switch:'道岔', Signal:'信号机', Stand:'站台', Station:'车站', TrainWindow:'车次窗', ControlConvertMenu:'控制模式', Driver:'司机'};
const operateTypeName = deviceTypeList[operateType];
this.actionInfoList.push({id: element.id, isCoversition: false, memberName: memberName, command: operateTypeName + '(' + operateName.label + ')', row: element, visible: false});
break;
}
}
},
covertSection(sectionCode) {
const section = this.$store.getters['map/getDeviceByCode'](sectionCode);
if (section && section.name) {
return section.name;
} else {
return '';
}
},
loadOtherData(obj) {
const group = obj.group;
getScriptAllAction(group).then(resp=>{
this.actionInfoList = [];
const actionList = resp.data;
actionList.forEach(element => {
this.covertData(this.memberList, element);
});
}).catch(error => {
this.$message(error.message);
});
},
reloadTable() {
this.loadInitData();
},
modifyAction(actionInfo) {
actionInfo.modifyText = actionInfo.row.content;
actionInfo.isModify = true;
},
cancleModify(actionInfo) {
actionInfo.modifyText = '';
actionInfo.isModify = false;
this.modifyTextLoading = false;
},
confirmModify(actionInfo) {
const row = actionInfo.row;
if (actionInfo.modifyText != row.content) {
const data = {id:row.id};
data.content = actionInfo.modifyText;
this.modifyTextLoading = true;
modifyScriptActionNew(this.group, data).then(response=>{
actionInfo.modifyText = '';
actionInfo.isModify = false;
this.modifyTextLoading = false;
this.reloadTable();
this.$store.dispatch('scriptRecord/updateCoversitionInfo');
}).catch(error=>{
this.modifyTextLoading = false;
this.$messageBox('修改会话失败:' + error.message);
});
} else {
if (!actionInfo.modifyText) {
this.$messageBox('请输入修改的会话');
} else {
actionInfo.modifyText = '';
actionInfo.isModify = false;
}
}
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
@import "src/styles/mixin.scss";
.actionTable{
width:280px;
padding: 15px 0px 10px 15px;
display: inline-block;
line-height: 200%;
}
.btnGroup{
padding: 0px 10px 10px 10px;
float: right;
vertical-align: top;
display: inline-block;
}
.el_timeline{
width: 350px;
margin-top:5px;
padding-left: 25px;
}
.el-timeline{
font-size:13px;
}
.roleClass{
color:#409EFF
}
.commandStyle{
color:#F00;
}
.scriptPane{
height: 100%;
padding-top:200px;
}
.scriptBottom{
margin-left:300px;
margin-top: 0px;
font-size:13px;
}
.modifyText{
height: 70px;
border: 1px #ccc solid;
border-radius: 3px;
width: 270px;
outline: none;
font-size: 13px;
resize: none;
vertical-align: top;
padding: 5px;
line-height: 20px;
}
</style>