123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- import config from '@config/index.js';
- import {formatContinueDots,getLabelIndex,handleLocalDelTag,checkFullfillText} from '@utils/tools.js';
- export function preSetCheckbody(state,action) {
- let res = Object.assign({},state);
- const {data} = action;
- res.preData = data;
- return res;
- }
- //设置查体数据
- export function set(state,action){
- let res = Object.assign({},state);
- const {data,isText,isEmpty} = action;
- if(isText){ //查体只显示文本时(引用预问诊)
- const label = Object.assign(JSON.parse(config.textLabel),{value:data,noSearch:true});
- res.data = [label];
- res.saveText = [data];
- res.showAll = true;
- res.update = Math.random();
- res.isEmpty = isEmpty;
- return res;
- }
- const obj = checkFullfillText(data);
- res.data = obj.newArr;
- res.saveText = obj.saveText;//存逗号
- res.showAll = obj.checkHiddenDefault;
- res.update = Math.random();
- res.isEmpty = isEmpty;
- return res;
- }
- //多选标签选中确定处理
- export const confirm = (state,action) =>{
- let res = Object.assign({},state);
- let arr = res.data;
- const {nones,exists,withs,ikey,exclusion,excluName,copyType} = action.data;
- const items = [...exists||[],...withs||[]];
- if((!exists||!withs||items.length==0)&&!nones&&!exclusion){ //取消无殊的选中,空白提交
- arr[ikey].value = '';
- res.saveText[ikey] = '';
- res.selecteds.splice(ikey,1);
- res.update=Math.random();
- return res;
- }
- //选中互斥项
- if(exclusion){
- arr[ikey].value = excluName;
- res.saveText[ikey] = excluName;
- res.selecteds[ikey] = action.data;
- res.update=Math.random();
- return res;
- }
- //只有无的项目选中
- if(+copyType===0) { //原标签保留
- arr.splice(ikey,1);
- }
- if(arr[ikey].value) arr[ikey].value= '';
- let preText = arr[ikey-1].value!==undefined?arr[ikey-1].value:arr[ikey-1].name||'';
- let newPreText =preText +nones;//console.log(arr[ikey-1],newPreText)
- if(items.length==0&&nones){
- arr[ikey-1].value = newPreText;
- res.saveText[ikey-1] = newPreText;
- res.selecteds[ikey] = null; //无殊选中状态遗留bug修改
- res.update=Math.random();
- return res;
- }
- //有,伴,无随配
- //arr.splice(ikey-1,1);
- let flabel = items[items.length-1]; //要插入的最后一个标签
- let labelText = flabel.value!==undefined?flabel.value:flabel.name;
- let text = labelText;
- //要插入的最后一个标签为自由文本,则和后面的文本标签文字合并
- if(flabel.tagType==8){
- flabel.value = labelText+nones;
- text = flabel.value;
- }
- arr.splice(ikey,0,...exists,...withs);
- //arr[ikey-1].value = text;
- //res.saveText[ikey+items.length] = text;
- res.saveText = checkFullfillText(arr).saveText;
- res.update=Math.random(); //用于触发组件更新(data变化了因在对象中无法被组件检测到)
- return res;
- };
- //多选文字,如杂音
- export function setCheckBoxValue(state,action) {
- let res = Object.assign({},state);
- const {labelInx,excluName,existsName,nones,withsName,ban} = action.data;
- let showText = (excluName||'')+(existsName||'')+(ban.name||'')+(withsName||'')+(nones&&nones.replace('、','')||'');
- // 若每个选项都有符号,去掉最后一个,因与标签间的符号有冲突
- let pattern = new RegExp(/\,+$|\,+$|\.+$|\。+$|\、+$/);//+ 一次或多次
- if(pattern.test(showText)){
- showText = showText.substr(0,showText.length-1);
- }
- res.data[labelInx].value = showText;
- res.selecteds[labelInx] = action.data;
- res.saveText = checkFullfillText(res.data).saveText;
- res.update = Math.random();
- return res;
- }
- //搜索结果
- export function setSearchData(state,action){
- let res = Object.assign({},state);
- res.searchData = action.data;
- res.searchStr = action.inpStr;
- res.searchInEnd = action.isEnd;
- return res;
- }
- //插入标签数据-搜索
- export function insertLabelData(state,action){
- let res = Object.assign({},state);
- const searchStr = res.searchStr;
- const {index,data,isReplace,span,searchInEnd}=action;
- const showText = res.saveText[index];
- let tempLabels = data.tagType==4?checkFullfillText(data.questionMapping).newArr:[data];
- tempLabels = formatContinueDots(tempLabels);
- //查体中,默认显示区域搜索出来的标签要默认显示,隐藏区域搜索出的默认隐藏
- let hideAreaIndex = [...res.data].reverse().findIndex((it)=>it.showInCheck);
- hideAreaIndex = res.data.length-hideAreaIndex-1; //默认显示的最后一个标签的位置
- const text = Object.assign({},JSON.parse(config._textLabel),{showInCheck:index>hideAreaIndex?false:true});
- let spreadLabels =tempLabels.map((it)=>{
- return Object.assign({},it,{showInCheck:index>hideAreaIndex?false:true});
- });
- let reg = searchInEnd?new RegExp(searchStr+"$"):new RegExp("^"+searchStr);
- const newText=showText.replace(reg,'')||'';
- if(!isReplace){
- span.current.innerText?(span.current.innerText = newText):(span.current.innerHTML = newText);
- const pText = Object.assign({},text,{value:newText});
- if(searchInEnd){
- res.data.splice(index,1,pText,...spreadLabels,text);
- res.saveText = checkFullfillText(res.data).saveText;
- //res.saveText.splice(index,1,newText,'','');
- res.selecteds.splice(index,1,null,...new Array(spreadLabels.length).fill(null),null);
- }else{
- res.data.splice(index,1,text,...spreadLabels,pText);
- res.saveText = checkFullfillText(res.data).saveText;
- //res.saveText.splice(index,1,'','',newText);
- res.selecteds.splice(index,1,null,...new Array(spreadLabels.length).fill(null),null);
- }
- }else{
- span.current.innerText?(span.current.innerText = ' '):(span.current.innerHTML = ' ');
- if(searchInEnd){
- res.data.splice(index+1,0,spreadLabels,text);
- res.saveText.splice(index+1,0,'','');
- res.selecteds.splice(index+1,0,null,null);
- }else{
- res.data.splice(index,0,text,spreadLabels);
- res.saveText.splice(index,0,'','');
- res.selecteds.splice(index,0,null,null);
- }
- }
- res.searchData = []; //选中清空搜索内容(即关闭搜索弹窗)
- res.update = Math.random();
- return res;
- }
- export const changeLabelVal = (state,action)=>{//双击标签输入改变值
- const res = Object.assign({},state);
- const {changeVal,totalVal,ikey,prefix,suffix} = action.data;
- const index = ikey;
- const newVal = changeVal; //下拉修改的内容
- let labText = totalVal?totalVal:newVal; //如单选没有前后缀
- let item = res.data[index];
- const next = res.data[+index+1];
- const nextVal = next.value||next.name;
- //标签后是不是标点符号标签,是的话删除本标签时一起删除
- let nextIsDot = +next.tagType===8&&!nextVal.match(config.punctuationReg);
- // if(newVal && newVal.trim()){
- if(labText && labText.trim()){
- if(item){
- item.value = newVal;
- const canAdd=hasNoSame(item.questionDetailList,labText);
- //单选双击编辑的内容自动加到下拉选项中,双击编辑但未修改不添加
- if(canAdd&&+item.tagType===1&&(+item.controlType===1||+item.controlType===0)){
- const li = {
- id:-Math.floor(Math.random()*1000),
- name:labText,
- questionId:item.id,
- orderNo:0,
- code:0,
- defaultSelect:"0",
- remark:null,
- abnormal:0,
- selected:true
- };
- const exist = JSON.parse(localStorage.getItem('radio'+item.id)||null);
- //console.log(exist)
- if(exist&&typeof exist=='object'){ //已添加过编辑的数据
- //exist.push(li);
- exist[0]=li; //暂限添1条
- localStorage.setItem('radio'+item.id,JSON.stringify(exist));
- }else{
- localStorage.setItem('radio'+item.id,JSON.stringify([li]));
- }
- //取消原选中状态
- item.questionDetailList.find((it)=>it.selected==true).selected=false;
- }
- item.labelPrefix = prefix||'';
- item.labelSuffix = suffix||'';
- // res.saveText[index] = totalVal;
- res.saveText[index] = labText;
- }
- }else{//删除完标签内容则删除该标签
- const num = nextIsDot?2:1;
- handleLocalDelTag('4',index,res.data[index]);
- res.data.splice(index,num);
- res.selecteds.splice(index,num);//杂音类样式选中状态对应
- res.saveText = checkFullfillText(res.data).saveText;
- }
- res.update = Math.random();
- return res;
- }
- function hasNoSame(arr,text){
- return arr.findIndex((it)=>text==it.name)==-1;
- }
- export function clearCheckBody(state,action){ //清空
- let res = Object.assign({},state);
- res.data = action.data;
- res.preData = [];
- res.saveText = action.saveText;
- res.isEmpty = action.isEmpty;
- res.selecteds = action.selecteds?action.selecteds:[];
- if(action.flg){res.showAll = true}
- return res;
- }
- // backspace删除
- export function backspaceText(state,action){
- let res = Object.assign({},state);
- const {delIndex,flag} = action;
- const data = res.data;
- if(flag == 'backsp'){
- // 前一个是文本标签或者子模板,只改变值
- if(data[delIndex-1].flag&&data[delIndex-1].flag==3){//子模板不删
- // data[delIndex].value = text;
- }else if(data[delIndex-1].tagType==8){
- data.splice(delIndex,1);
- res.selecteds.splice(delIndex,1); //杂音类样式选中状态对应
- res.saveText.splice(delIndex,1);
- }
- else{
- handleLocalDelTag(4,delIndex-1,data[delIndex-1]);
- data.splice(delIndex-1,2);
- res.selecteds.splice(delIndex-1,2);
- res.saveText.splice(delIndex-1,2);
- }
- }else if(flag == 'del'){
- if(data[delIndex+1] && data[delIndex+1].flag&&data[delIndex+1].flag==3){//子模板不删
-
- }else if(data[delIndex+1] && data[delIndex+1].tagType==8){
- data.splice(delIndex,1);
- res.selecteds.splice(delIndex,1); //杂音类样式选中状态对应
- res.saveText.splice(delIndex,1);
- }else if(!data[delIndex+1]){//最后一个文本标签不删除
-
- }
- else{
- handleLocalDelTag(4,delIndex,data[delIndex+1]);
- data.splice(delIndex,2);
- res.selecteds.splice(delIndex,2);
- res.saveText.splice(delIndex,2);
- }
- }
- // res.saveText = fullfillText(data).saveText;
- res.update = Math.random();
- return res;
- }
- // 单列多选
- export function multipleComfirn(state,action){
- let res = Object.assign({},state);
- const {ikey,seleData,fullIkey} = action.data;
- let data = res.data;//console.log(action,data[ikey])
- let index = fullIkey.substr(fullIkey.length-1,1);
- if(data[ikey].tagType==3){ //在组合项中
- let item = data[ikey].questionMapping;
- let arr=[];
- item[index].value = seleData;
- item.map((it)=>{
- if(it.value){
- arr.push(it.labelPrefix+it.value+it.labelSuffix);
- }
- });
- res.saveText[ikey] = arr.join("");
- res.update = Math.random();
- res.selecteds[ikey] = {[index]:action.data};
- return res;
- }
- data[ikey].value = seleData;
- res.saveText[ikey] = seleData;
- res.selecteds[ikey] = action.data;
- res.update = Math.random();
- return res;
- }
- export function delSingleLable(state,action){
- let res = Object.assign({},state);
- const {index} = action;
- let data = res.data;
- // 前一个不是文本标签 并且不是子模板,则删除
- if(data[index-1].flag&&data[index-1].flag==3){
- }
- else if(data[index-1].tagType != 8){
- data.splice(index-1,1);
- res.saveText.splice(index-1,1);
- }
- res.update = Math.random();
- return res;
- }
- //查体推送高亮标签
- export function setImportCheckbodyLabel(state,action) {
- let res = Object.assign({},state);
- res.importLabel = action.labels;
- res.update = Math.random();
- return res;
- }
|