123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- import config from '@config/index';
- import {getLabelIndex,fullfillText} from '@common/js/func.js';
- //多选标签选中确定处理
- 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.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.update=Math.random(); //用于触发组件更新(data变化了因在对象中无法被组件检测到)
- return res;
- };
- //单选下拉选中
- export function setRadioValue(state,action){
- let res = Object.assign({},state);
- const {ikey,id,text} = action;
- let labelInx = getLabelIndex(ikey);
- const subInx = ikey.substr(ikey.length-1);
- let item = res.data[labelInx];
- if(typeof text != 'string'){ //需要展开项--有无治疗类型
- const len = +item.copyType === 0?1:0;
- res.data.splice(labelInx,len,text);
- return res;
- }
- if(+item.tagType===1){
- item.value = text;
- res.saveText[labelInx] = item.labelPrefix+text+item.labelSuffix;
- item.questionDetailList.map((its)=>{
- if(its.id === id){
- its.selected = true;
- }else{
- its.selected = false;
- }
- });
- }else{
- item.questionMapping[subInx].value = text;
- let hasValue = false;
- const sub = item.questionMapping.map((it)=>{
- //添加选中状态
- it.questionDetailList.map((its)=>{
- if(its.id === id){
- its.selected = true;
- }else{
- its.selected = false;
- }
- });
- if(it.value){ //至少有一个子值才黑显
- hasValue = true;
- }
- return (it.labelPrefix||'')+(it.value||'')+(it.labelSuffix||'');
- });
- res.saveText[labelInx] = hasValue?sub.join(''):'';
- }
- res.update = Math.random();
- return res;
- }
- //数字键盘选中事件
- export function setNumberValue(state,action){
- let res = Object.assign({},state);
- const param = action.params;
- const ikey = param.ikey;
- let labelInx = getLabelIndex(ikey);
- const subInx = ikey.substr(ikey.length-1);
- let item = res.data[labelInx];
- if(+item.tagType===1){
- item.value = param.text;
- res.saveText[labelInx] = param.text?item.labelPrefix+param.text+item.labelSuffix:'';
- }else{
- item.questionMapping[subInx].value = param.text;
- let hasValue = false;
- const sub = item.questionMapping.map((it)=>{
- if(it.value){ //至少有一个子值才黑显
- hasValue = true;
- }
- return (it.labelPrefix||'')+(it.value||'')+(it.labelSuffix||'');
- });
- res.saveText[labelInx] = hasValue?sub.join(''):'';
- }
- res.update = Math.random();
- return res;
- }
- //自由文本
- export function setCheckText(state,action) {
- let res = Object.assign({},state);
- const {i,text} = action;
- if(res.data[i]){
- res.data[i].value=text;
- //res.data[i].name=''; //默认显示的文字
- }
- res.saveText[i] = text;
- res.update = Math.random();
- return res;
- }
- //文本输入标签
- export function setOtherInput(state,action){
- let res = Object.assign({},state);
- const {i,text,prefix,suffix} = action;
- if(res.data[i]){
- res.data[i].value=text;
- }
- res.saveText[i] = prefix+text+suffix;
- res.update = Math.random();
- return res;
- }
- //多选文字,如杂音
- export function setCheckBoxValue(state,action) {
- let res = Object.assign({},state);
- const {labelInx,excluName,existsName,nones,withsName} = action.data;
- let showText = (excluName||'')+(existsName||'')+(nones||'')+(withsName||'');
- // 若每个选项都有符号,去掉最后一个,因与标签间的符号有冲突
- let pattern = new RegExp(/\,+$|\,+$|\.+$|\。+$|\、+$/);//+ 一次或多次
- if(pattern.test(showText)){
- showText = showText.substr(0,showText.length-1);
- }
- res.data[labelInx].value = showText;
- res.saveText[labelInx] = showText;
- res.selecteds[labelInx] = action.data;
- res.update = Math.random();
- return res;
- }
- //搜索结果
- export function setSearchData(state,action){
- let res = Object.assign({},state);
- res.searchData = action.data;
- res.searchStr = action.inpStr;
- return res;
- }
- //插入标签数据
- export function insertLabelData(state,action){
- let res = Object.assign({},state);
- const text = Object.assign({},JSON.parse(config.textLabel));
- const searchStr = res.searchStr;
- const {index,data,isReplace,span}=action;
- const showText = res.saveText[index];
- const spreadLabels = data;
- const toEnd = showText.indexOf(searchStr)>0; //替换前或后的搜索词(中间不可搜)
- let reg = toEnd?new RegExp(searchStr+"$"):new RegExp("^"+searchStr);
- const newText=showText.replace(reg,'')||' ';
- if(!isReplace){
- span.current.innerText = newText;
- const pText = Object.assign({},text,{value:newText});
- res.data.splice(index,1,pText,spreadLabels,text);
- res.saveText.splice(index,1,newText,'','');
- }else{
- span.current.innerText = ' ';
- res.data.splice(index+1,0,spreadLabels,text);
- res.saveText.splice(index+1,0,'','');
- }
- res.searchData = []; //选中清空搜索内容(即关闭搜索弹窗)
- res.update = Math.random();
- return res;
- }
- export function changeTextLabel(state,action) {
- const res = Object.assign({},state);
- const index = action.data.ikey;
- const newVal = action.data.changeVal;
- let item = res.data[index];
- if(item){
- item.value = newVal;
- }
- res.saveText[index] = newVal;
- res.update = Math.random();
- return res;
- }
- export function clearOtherHistory(state,action){ //清空数据
- let res = Object.assign({},state);
- res.data = action.data;
- res.saveText = action.saveText;
- res.selecteds = action.selecteds;
- res.editClear = action.editClear;
- return res;
- }
- //文本模式下值保存
- export const setTextModeValue = (state,action)=>{
- const res = Object.assign({},state);
- res.saveText[0] = action.text;
- return res;
- };
- //复制标签(如血压)事件
- export function addLabelItem(state,action){
- let res = Object.assign({},state);
- const {data,i} = action;
- const textLabel = JSON.parse(config.textLabel);
- //使用Object.assign({},data)拷贝操作时复制项和原项会同步修改
- if(!data) return res;
- res.data.splice(i+1,0,JSON.parse(data),textLabel);
- res.update = Math.random();
- return res;
- }
- export const otherEditClear = (state,action)=>{
- const res = Object.assign({},state);
- res.editClear = action.bool;
- return res;
- };
- // backspace删除
- export function backspaceText(state,action){
- let res = Object.assign({},state);
- const {delIndex} = action;
- const data = res.data;
- if(data[delIndex-1].tagType==8 ||data[delIndex-1].flag&&data[delIndex-1].flag==3){
- // 前一个是文本标签或者子模板 不做处理
- }else{
- data.splice(delIndex-1,2);
- }
- res.saveText = fullfillText(data).saveText;
- res.update = Math.random();
- return res;
- }
|