123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- /**
- * Created by Mai on 2017/4/1.
- */
- var TREE_SHEET_CONTROLLER = {
- createNew: function (tree, sheet, setting, loadSheetHeader = true) {
- var controller = function () {
- this.tree = tree;
- this.sheet = sheet;
- this.setting = setting;
- this.event = {
- refreshBaseActn: null,
- treeSelectedChanged: null
- };
- if(loadSheetHeader){
- TREE_SHEET_HELPER.loadSheetHeader(this.setting, this.sheet);
- }
- };
- controller.prototype.showTreeData = function () {
- //
- var that = this;
- TREE_SHEET_HELPER.showTreeData(this.setting, this.sheet, this.tree);
- this.sheet.unbind(GC.Spread.Sheets.Events.SelectionChanged);
- this.sheet.bind(GC.Spread.Sheets.Events.SelectionChanged, function (e, info) {
- that.setTreeSelected(that.tree.items[info.newSelections[0].row]);
- });
- };
- controller.prototype.insert = function () {
- var newNode = null, that = this, sels = this.sheet.getSelections();
- if (this.tree) {
- if (this.tree.selected) {
- newNode = this.tree.insert(this.tree.selected.getParentID(), this.tree.selected.getNextSiblingID());
- } else {
- newNode = this.tree.insert();
- }
- if (newNode) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- that.sheet.addRows(newNode.serialNo(), 1);
- TREE_SHEET_HELPER.refreshTreeNodeData(that.setting, that.sheet, [newNode], false);
- that.setTreeSelected(newNode);
- that.sheet.setSelection(newNode.serialNo(), sels[0].col, 1, 1);
- that.sheet.showRow(newNode.serialNo(), GC.Spread.Sheets.VerticalPosition.center);
- if(typeof cbTools !== 'undefined'){
- cbTools.refreshFormulaNodes();
- }
- });
- }
- }
- };
- controller.prototype.insertByID = function (ID) {
- var newNode = null, that = this, sels = this.sheet.getSelections();
- if (this.tree) {
- if (this.tree.selected) {
- newNode = this.tree.insertByID(ID, this.tree.selected.getParentID(), this.tree.selected.getNextSiblingID());
- } else {
- newNode = this.tree.insertByID(ID);
- }
- if (newNode) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- that.sheet.addRows(newNode.serialNo(), 1);
- TREE_SHEET_HELPER.refreshTreeNodeData(that.setting, that.sheet, [newNode], false);
- that.setTreeSelected(newNode);
- that.sheet.setSelection(newNode.serialNo(), sels[0].col, 1, 1);
- //that.sheet.showRow(newNode.serialNo(), GC.Spread.Sheets.VerticalPosition.center);
- });
- }
- }
- return newNode;
- };
- controller.prototype.delete = function () {
- var that = this, sels = this.sheet.getSelections();
- if (this.tree.selected) {
- if (this.tree.delete(this.tree.selected)) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- that.sheet.deleteRows(sels[0].row, that.tree.selected.posterityCount() + 1);
- that.setTreeSelected(that.tree.items[sels[0].row] ? that.tree.items[sels[0].row] : that.tree.items[that.tree.items.length - 1]);
- });
- if(typeof cbTools !== 'undefined'){
- cbTools.refreshFormulaNodes();
- }
- }
- }
- };
- controller.prototype.m_delete = function (nodes, beginRow = null,selectNew = true) {//删除选中的多行节点,selectNew 为false时删除后不改变tree的选中节点
- var that = this, sels = this.sheet.getSelections();
- if (this.tree.selected) {
- if (this.tree.m_delete(nodes)) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- let rowCount = 0;
- let delRow = beginRow?beginRow:sels[0].row;
- for(let node of nodes){
- rowCount = rowCount+node.posterityCount() + 1;
- }
- that.sheet.deleteRows(delRow, rowCount);
- if(selectNew == true){
- if(beginRow) sels[0].row = beginRow;
- if(sels[0].row >= that.tree.items.length){
- sels[0].row = that.tree.items.length-1;
- sels[0].colCount = 1;
- }
- that.setTreeSelected(that.tree.items[sels[0].row]);
- that.sheet.setSelection(sels[0].row,sels[0].col,1,sels[0].colCount);
- }
- });
- if(typeof cbTools !== 'undefined'){
- cbTools.refreshFormulaNodes();
- }
- }
- }
- };
- controller.prototype.singleDelete = function () {//只删除当前节点,不删除子节点
- var that = this, sels = this.sheet.getSelections();
- if (this.tree.selected) {
- if (this.tree.singleDelete(this.tree.selected)) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- that.sheet.deleteRows(sels[0].row,1);
- that.setTreeSelected(that.tree.items[sels[0].row]);
- });
- }
- }
- };
- controller.prototype.deleteNode = function (node,next) {
- var that = this;
- if (node){
- var row = node.serialNo();
- if (this.tree.delete(node)) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- that.sheet.deleteRows(row,1);
- next?that.setTreeSelected(that.tree.items[row]):"";
- });
- if(typeof cbTools !== 'undefined'){
- cbTools.refreshFormulaNodes();
- }
- }
- }
- };
- controller.prototype.upLevel = function () {
- var that = this;
- if (this.tree.selected) {
- if (this.tree.selected.upLevel()) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- TREE_SHEET_HELPER.refreshNodesVisible([that.tree.selected], that.sheet, true);
- that.sheet.showRow(that.tree.selected.serialNo(), GC.Spread.Sheets.VerticalPosition.center);
- if (that.event.refreshBaseActn) {
- that.event.refreshBaseActn(that.tree);
- }
- });
- }
- }
- };
- controller.prototype.downLevel = function () {
- var that = this;
- if (this.tree.selected) {
- if (this.tree.selected.downLevel()) {
- TREE_SHEET_HELPER.massOperationSheet(that.sheet, function () {
- TREE_SHEET_HELPER.refreshNodesVisible([that.tree.selected.parent], that.sheet, true);
- that.sheet.showRow(that.tree.selected.serialNo(), GC.Spread.Sheets.VerticalPosition.center);
- if (that.event.refreshBaseActn) {
- that.event.refreshBaseActn(that.tree);
- }
- });
- }
- }
- };
- controller.prototype.upMove = function () {
- var that = this, sels = this.sheet.getSelections();
- if (this.tree.selected) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected,that.tree.selected.serialNo(),true);//为了处理移动前子项是隐藏的情况,先把所有的列设置为显示
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected.preSibling,that.tree.selected.preSibling.serialNo(),true);
- if (that.tree.selected.upMove()) {
- TREE_SHEET_HELPER.refreshTreeNodeData(that.setting, that.sheet, [that.tree.selected, that.tree.selected.nextSibling], true);
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected,that.tree.selected.serialNo());
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected.nextSibling,that.tree.selected.nextSibling.serialNo());
- that.sheet.setSelection(that.tree.selected.serialNo(), sels[0].col, 1, 1);
- if (that.event.refreshBaseActn) {
- that.event.refreshBaseActn(that.tree);
- }
- }
- });
- }
- };
- controller.prototype.downMove = function () {
- var that = this, sels = this.sheet.getSelections();
- if (this.tree.selected) {
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected,that.tree.selected.serialNo(),true);//为了处理移动前子项是隐藏的情况,先把所有的列设置为显示
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected.nextSibling,that.tree.selected.nextSibling.serialNo(),true);
- if (that.tree.selected.downMove()) {
- TREE_SHEET_HELPER.refreshTreeNodeData(that.setting, that.sheet, [that.tree.selected, that.tree.selected.preSibling], true);
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected,that.tree.selected.serialNo());
- TREE_SHEET_HELPER.refreshChildrenVisiable(that.sheet,that.tree,that.tree.selected.preSibling,that.tree.selected.preSibling.serialNo());
- that.sheet.setSelection(that.tree.selected.serialNo(), sels[0].col, 1, 1);
- if (that.event.refreshBaseActn) {
- that.event.refreshBaseActn(that.tree);
- }
- }
- });
- }
- };
- controller.prototype.refreshTreeNode = function (nodes, recursive) {
- var that = this;
- TREE_SHEET_HELPER.massOperationSheet(this.sheet, function () {
- TREE_SHEET_HELPER.refreshTreeNodeData(that.setting, that.sheet, nodes, recursive)
- })
- };
- controller.prototype.setTreeSelection = function (oldSelect) {
- let controller = this;
- let sel = controller.sheet.getSelections()[0];
- if(controller.tree.getNodeByID(oldSelect.getID())){//如果旧选中节点还存在
- controller.sheet.setSelection(oldSelect.serialNo(),sel.col,sel.rowCount,sel.colCount);
- controller.setTreeSelected(oldSelect)
- }else {//选中节点已被删除,自动选中新的节点
- controller.setTreeSelected(controller.tree.items[sel.row]);
- }
- };
- controller.prototype.setTreeSelected = function (node) {
- if (this.event.beforeTreeSelectedChange) {
- this.event.beforeTreeSelectedChange(this.tree.selected);
- }
- this.tree.selected = node;
- if (this.event.refreshBaseActn) {
- this.event.refreshBaseActn(this.tree);
- }
- if (this.event.treeSelectedChanged) {
- this.event.treeSelectedChanged(this.tree.selected);
- }
- }
- controller.prototype.bind = function (eventName, eventFun) {
- this.event[eventName] = eventFun;
- };
- return new controller();
- },
- eventName: {
- refreshBaseActn: 'refreshBaseActn',
- beforeTreeSelectedChange: 'beforeTreeSelectedChange',
- treeSelectedChanged: 'treeSelectedChanged',
- cellDoubleClick: 'cellDoubleClick'
- }
- };
|