123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- "use strict";
- let bandTreeOprObj = {
- treeObj: null,
- currentNode: null,
- innerCounter: 1,
- canTrickEvent: false,
- iniTree: function (rptTpl) {
- let me = bandTreeOprObj;
- let bandList = rptTpl[JV.NODE_BAND_COLLECTION];
- me.buildTreeData(bandList);
- let rootNode = {
- Name: "布局框(勾选表示:此布局框是报表外框,受报表边框属性影响)",
- isParent: true,
- };
- rootNode[JV.BAND_PROP_SUB_BANDS] = bandList;
- // me.treeObj = $.fn.zTree.init($("#band_tree_reversed"), bandSetting, bandList);
- me.treeObj = $.fn.zTree.init(
- $("#band_tree_reversed"),
- bandSetting,
- rootNode
- );
- me.treeObj.expandAll(true);
- me.setupMergeBorderChk();
- },
- setupMergeBorderChk: function () {
- let me = bandTreeOprObj;
- let nodes = me.treeObj.getNodes();
- me.treeObj.setChkDisabled(nodes[0], true);
- function checkIsMergeBorder(bandNode) {
- if (
- bandNode[JV.BAND_PROP_MERGE_BORDER] != null &&
- bandNode[JV.BAND_PROP_MERGE_BORDER] != undefined
- ) {
- if (
- stringUtil.convertStrToBoolean(bandNode[JV.BAND_PROP_MERGE_BORDER])
- ) {
- me.treeObj.checkNode(bandNode, true);
- return false;
- }
- }
- if (
- bandNode[JV.BAND_PROP_SUB_BANDS] &&
- bandNode[JV.BAND_PROP_SUB_BANDS].length > 0
- ) {
- for (let subBandNode of bandNode[JV.BAND_PROP_SUB_BANDS]) {
- if (!checkIsMergeBorder(subBandNode)) {
- return false;
- }
- }
- }
- return true;
- }
- for (let bNode of nodes) {
- checkIsMergeBorder(bNode);
- }
- },
- copyBandList: function (isAllParent) {
- let me = this,
- rst = null;
- if (me.treeObj) {
- rst = [];
- let nodes = me.treeObj.getNodes()[0][JV.BAND_PROP_SUB_BANDS];
- let private_copy_nodes = function (parentNode, item) {
- item[JV.PROP_ID] = parentNode[JV.PROP_ID];
- item[JV.BAND_PROP_NAME] = parentNode[JV.BAND_PROP_NAME];
- item[JV.BAND_PROP_STYLE] = parentNode[JV.BAND_PROP_STYLE];
- item[JV.BAND_PROP_CONTROL] = parentNode[JV.BAND_PROP_CONTROL];
- if (parentNode[JV.BAND_PROP_HEIGHT])
- item[JV.BAND_PROP_HEIGHT] = parentNode[JV.BAND_PROP_HEIGHT];
- if (parentNode[JV.BAND_PROP_WIDTH])
- item[JV.BAND_PROP_WIDTH] = parentNode[JV.BAND_PROP_WIDTH];
- item[JV.BAND_PROP_DISPLAY_TYPE] = parentNode[JV.BAND_PROP_DISPLAY_TYPE];
- item[JV.BAND_PROP_ALIGNMENT] = parentNode[JV.BAND_PROP_ALIGNMENT];
- item[JV.BAND_PROP_MERGE_BORDER] = parentNode[JV.BAND_PROP_MERGE_BORDER];
- if (isAllParent) item.isParent = true;
- if (parentNode[JV.BAND_PROP_SUB_BANDS]) {
- item.items = [];
- for (let subNode of parentNode[JV.BAND_PROP_SUB_BANDS]) {
- let subItem = {};
- private_copy_nodes(subNode, subItem);
- item.items.push(subItem);
- }
- }
- };
- for (let node of nodes) {
- let item = {};
- if (isAllParent) item.isParent = true;
- private_copy_nodes(node, item);
- rst.push(item);
- }
- } else {
- console.log("the band tree is not ready!");
- }
- return rst;
- },
- buildTreeData: function (bandList) {
- let rst = [],
- startIdx = 1;
- //zTreeHelper.createTree(result, setting, "rptTplTree", me);
- let private_setBandId = function (parentBand) {
- if (parentBand[JV.BAND_PROP_SUB_BANDS]) {
- for (let band of parentBand[JV.BAND_PROP_SUB_BANDS]) {
- band.ID = startIdx;
- band.ParentID = parentBand.ID;
- startIdx++;
- private_setBandId(band);
- }
- }
- };
- for (let band of bandList) {
- band.ID = startIdx;
- band.ParentID = -1;
- startIdx++;
- private_setBandId(band);
- }
- return rst;
- },
- createBandFromNode: function (node) {
- let me = this,
- rst = {};
- rst[JV.BAND_PROP_ALIGNMENT] = node[JV.BAND_PROP_ALIGNMENT];
- rst[JV.BAND_PROP_DISPLAY_TYPE] = node[JV.BAND_PROP_DISPLAY_TYPE];
- let posIdx = JV.LAYOUT.indexOf(node[JV.BAND_PROP_ALIGNMENT]);
- switch (posIdx) {
- case 0:
- case 1:
- rst[JV.BAND_PROP_HEIGHT] = node[JV.BAND_PROP_HEIGHT];
- break;
- case 2:
- case 3:
- rst[JV.BAND_PROP_WIDTH] = node[JV.BAND_PROP_WIDTH];
- break;
- }
- rst[JV.PROP_NAME] = node[JV.PROP_NAME];
- rst[JV.PROP_CONTROL] = node[JV.PROP_CONTROL];
- rst[JV.PROP_STYLE] = node[JV.PROP_STYLE];
- if (node.hasOwnProperty(JV.PROP_CALCULATION)) {
- rst[JV.PROP_CALCULATION] = node[JV.PROP_CALCULATION];
- }
- if (node[JV.BAND_PROP_MERGE_BORDER] !== undefined) {
- rst[JV.BAND_PROP_MERGE_BORDER] = node[JV.BAND_PROP_MERGE_BORDER];
- } else {
- rst[JV.BAND_PROP_MERGE_BORDER] = "F";
- }
- if (node[JV.BAND_PROP_SUB_BANDS]) {
- rst[JV.BAND_PROP_SUB_BANDS] = [];
- for (let subNode of node[JV.BAND_PROP_SUB_BANDS]) {
- rst[JV.BAND_PROP_SUB_BANDS].push(me.createBandFromNode(subNode));
- }
- }
- return rst;
- },
- createDftBand: function () {
- let me = this,
- rst = {};
- rst[JV.BAND_PROP_ALIGNMENT] = "Top";
- rst[JV.BAND_PROP_DISPLAY_TYPE] = "EveryPage";
- rst[JV.BAND_PROP_HEIGHT] = "3";
- rst[JV.PROP_NAME] = "newBand_" + me.innerCounter;
- me.innerCounter++;
- rst[JV.PROP_CONTROL] = "Default";
- rst[JV.PROP_STYLE] = "Default_None";
- rst[JV.BAND_PROP_MERGE_BORDER] = "F";
- return rst;
- },
- addHoverDom: function (treeId, treeNode) {
- let me = bandTreeOprObj,
- sObj = $("#" + treeNode.tId + "_span");
- if (
- treeNode.editNameFlag ||
- $("#addBtn_" + treeNode.tId).length > 0 ||
- treeNode.nodeType === RT.NodeType.TEMPLATE
- )
- return;
- let addStr =
- "<span class='button add' id='addBtn_" +
- treeNode.tId +
- "' title='新增布局框' onfocus='this.blur();'></span>";
- sObj.after(addStr);
- let btn = $("#addBtn_" + treeNode.tId);
- if (btn)
- btn.bind("click", function () {
- let newBand = me.createDftBand();
- let newNodes = [],
- isSilent = false;
- newNodes.push(newBand);
- if (!treeNode.hasOwnProperty("band_s")) {
- treeNode["band_s"] = [];
- treeNode.isParent = true;
- }
- me.treeObj.addNodes(treeNode, -1, newNodes, isSilent);
- });
- },
- removeHoverDom: function (treeId, treeNode) {
- $("#addBtn_" + treeNode.tId)
- .unbind()
- .remove();
- },
- onBeforeDrag: function (treeId, treeNodes) {
- let rst = true;
- for (let node of treeNodes) {
- if (node.level === 0) {
- rst = false;
- break;
- }
- }
- return rst;
- },
- onBeforeDrop: function (treeId, treeNodes, targetNode, moveType, isCopy) {
- let me = bandTreeOprObj,
- rst = true;
- if (targetNode.level === 0) {
- if (moveType !== "inner") {
- rst = false;
- }
- }
- return rst;
- },
- onClick: function (event, treeId, treeNode) {
- let me = bandTreeOprObj;
- me.currentNode = treeNode;
- me.canTrickEvent = false;
- //then refresh the band tab properties
- //边框样式borderStyles
- $("#borderStyles").get(0).selectedIndex =
- rpt_tpl_cfg_helper.reportCfg.borderArr.indexOf(treeNode[JV.PROP_STYLE]);
- //边框合并
- // $("#mergeBandBorder").get(0).checked = stringUtil.convertStrToBoolean(treeNode[JV.BAND_PROP_MERGE_BORDER]);
- //位置
- let posIdx = JV.LAYOUT.indexOf(treeNode[JV.BAND_PROP_ALIGNMENT]);
- $("#bandAlignment").get(0).selectedIndex = posIdx;
- //高与宽
- me.setupWidthHeightByPosition(posIdx);
- //频率
- $("#pageFrequency").get(0).selectedIndex = JV.PAGE_STATUS.indexOf(
- treeNode[JV.BAND_PROP_DISPLAY_TYPE]
- );
- //
- me.canTrickEvent = true;
- },
- onCheck: function (event, treeId, treeNode) {
- let me = bandTreeOprObj;
- let nodes = me.treeObj.getNodes();
- function unCheckMergeBorder(bandNode) {
- if (
- bandNode[JV.BAND_PROP_MERGE_BORDER] != null &&
- bandNode[JV.BAND_PROP_MERGE_BORDER] != undefined
- ) {
- bandNode[JV.BAND_PROP_MERGE_BORDER] = "F";
- }
- if (
- bandNode[JV.BAND_PROP_SUB_BANDS] &&
- bandNode[JV.BAND_PROP_SUB_BANDS].length > 0
- ) {
- for (let subBandNode of bandNode[JV.BAND_PROP_SUB_BANDS]) {
- unCheckMergeBorder(subBandNode);
- }
- }
- }
- for (let bNode of nodes) {
- unCheckMergeBorder(bNode);
- }
- if (treeNode.checked) {
- treeNode[JV.BAND_PROP_MERGE_BORDER] = "T";
- }
- },
- onBeforeRemove: function (treeId, treeNode) {
- let rst = true;
- if (treeNode.band_s && treeNode.band_s.length > 0) {
- rst = false;
- } else {
- rst = confirm("在删除前请确认报表模板内部没有引用,否则会造成混淆。");
- }
- return rst;
- },
- setupWidthHeightByPosition: function (posIdx) {
- let me = this,
- treeNode = me.currentNode;
- switch (posIdx) {
- case 0:
- case 1:
- $("#bandHeight").get(0).disabled = false;
- $("#bandHeight").get(0).value = treeNode[JV.BAND_PROP_HEIGHT];
- $("#bandWidth").get(0).disabled = true;
- $("#bandWidth").get(0).value = "";
- break;
- case 2:
- case 3:
- $("#bandHeight").get(0).disabled = true;
- $("#bandHeight").get(0).value = "";
- $("#bandWidth").get(0).disabled = false;
- $("#bandWidth").get(0).value = treeNode[JV.BAND_PROP_WIDTH];
- break;
- default:
- $("#bandHeight").get(0).disabled = true;
- $("#bandHeight").get(0).value = "";
- $("#bandWidth").get(0).disabled = true;
- $("#bandWidth").get(0).value = "";
- break;
- }
- if (treeNode.hasOwnProperty(JV.PROP_CALCULATION)) {
- if (treeNode[JV.PROP_CALCULATION] === JV.CAL_TYPE[0]) {
- $("#isBandPercentage").get(0).checked = true;
- } else {
- $("#isBandPercentage").get(0).checked = false;
- }
- } else {
- $("#isBandPercentage").get(0).checked = false;
- }
- },
- bandStyleChange: function (dom) {
- let me = this;
- if (me.currentNode) {
- me.currentNode[JV.PROP_STYLE] =
- rpt_tpl_cfg_helper.reportCfg.borderArr[dom.selectedIndex];
- }
- },
- bandAlignmentChange: function (dom) {
- let me = this;
- if (me.currentNode) {
- let posIdx = dom.selectedIndex;
- me.currentNode[JV.BAND_PROP_ALIGNMENT] = JV.LAYOUT[posIdx];
- me.setupWidthHeightByPosition(posIdx);
- }
- },
- bandHeightWidthChange: function (dom) {
- let me = this,
- treeNode = me.currentNode;
- if (me.currentNode) {
- let posIdx = $("#bandAlignment").get(0).selectedIndex;
- switch (posIdx) {
- case 0:
- case 1:
- treeNode[JV.BAND_PROP_HEIGHT] = dom.value;
- break;
- case 2:
- case 3:
- treeNode[JV.BAND_PROP_WIDTH] = dom.value;
- break;
- }
- }
- },
- changeBandHeight: function (bandName, newHeight) {
- let me = this;
- let private_setup_band_height = function (bNode) {
- let rst = false;
- if (bNode[JV.PROP_NAME] === bandName) {
- bNode[JV.BAND_PROP_HEIGHT] = newHeight;
- rst = true;
- }
- if (
- bNode[JV.BAND_PROP_SUB_BANDS] &&
- bNode[JV.BAND_PROP_SUB_BANDS].length > 0
- ) {
- for (let sbNode of bNode[JV.BAND_PROP_SUB_BANDS]) {
- if (private_setup_band_height(sbNode)) {
- rst = true;
- break;
- }
- }
- }
- return rst;
- };
- if (me.currentNode && me.currentNode[JV.PROP_NAME] === bandName) {
- me.currentNode[JV.BAND_PROP_HEIGHT] = newHeight;
- } else {
- let nodes = me.treeObj.getNodes();
- for (let node of nodes) {
- if (private_setup_band_height(node)) {
- break;
- }
- }
- }
- },
- changeAreaCalcType: function (dom) {
- if (bandTreeOprObj.currentNode) {
- bandTreeOprObj.currentNode[JV.PROP_CALCULATION] = dom.checked
- ? JV.CAL_TYPE[0]
- : JV.CAL_TYPE[1];
- }
- },
- bandShowFrequencyChange: function (dom) {
- let me = this;
- if (me.currentNode) {
- me.currentNode[JV.BAND_PROP_DISPLAY_TYPE] =
- JV.PAGE_STATUS[dom.selectedIndex];
- }
- },
- extractBands: function (rptTpl) {
- let me = this;
- if (rptTpl) {
- let newBandList = [];
- let nodes = me.treeObj.getNodes()[0][JV.BAND_PROP_SUB_BANDS];
- for (let node of nodes) {
- newBandList.push(me.createBandFromNode(node));
- }
- rptTpl[JV.NODE_BAND_COLLECTION] = newBandList;
- }
- },
- };
|