| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- MWF.require("MWF.xApplication.File.Actions.RestActions", null, false);
- MWF.require("MWF.xApplication.File.AttachmentController", null, false);
- MWF.xApplication.File.Main = new Class({
- Extends: MWF.xApplication.Common.Main,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "name": "File",
- "icon": "icon.png",
- "width": "1000",
- "height": "600",
- "title": MWF.xApplication.File.LP.title
- },
- onQueryLoad: function(){
- this.lp = MWF.xApplication.File.LP;
- },
- loadApplication: function(callback){
- this.history = [];
- this.currentHistory = 1;
- this.currentFolder = null;
-
- this.restActions = new MWF.xApplication.File.Actions.RestActions();
-
- MWF.getJSON("/x_component_File/$Main/icon.json", function(json){
- this.icons = json;
- }.bind(this), false);
-
- this.createNode();
- this.loadApplicationContent();
- if (callback) callback();
- },
- createNode: function(){
- this.content.setStyle("overflow", "hidden");
- this.node = new Element("div", {
- "styles": {"width": "100%", "height": "100%", "overflow": "hidden"}
- }).inject(this.content);
- },
- loadApplicationContent: function(){
- this.loadTop();
-
- // this.loadTools();
-
- this.fileContentNode = new Element("div", {"styles": this.css.fileContentNode}).inject(this.node);
- this.folderContentNode = new Element("div", {"styles": this.css.folderContentNode}).inject(this.fileContentNode);
- this.attachmentContentNode = new Element("div", {"styles": this.css.attachmentContentNode}).inject(this.fileContentNode);
- this.resizeContentNode = new Element("div", {"styles": this.css.resizeContentNode}).inject(this.folderContentNode);
- this.folderTreeAreaNode = new Element("div", {
- "styles": this.css.folderTreeAreaNode
- }).inject(this.folderContentNode);
-
- this.folderTreeAreaScrollNode = new Element("div", {
- "styles": this.css.folderTreeAreaScrollNode
- }).inject(this.folderContentNode);
- this.shareTreeAreaScrollNode = new Element("div", {
- "styles": this.css.folderTreeAreaScrollNode
- }).inject(this.folderContentNode);
-
- this.loadFileContentAreaNode();
- this.loadFolderTreeNode();
- // this.loadShareTreeNode();
- this.treeResize = new Drag(this.resizeContentNode,{
- "snap": 1,
- "onStart": function(el, e){
- var x = e.event.clientX;
- var y = e.event.clientY;
- el.store("position", {"x": x, "y": y});
- var size = this.folderContentNode.getSize();
- el.store("initialWidth", size.x);
- }.bind(this),
- "onDrag": function(el, e){
- var x = e.event.clientX;
- // var y = e.event.y;
- var bodySize = this.content.getSize();
- var position = el.retrieve("position");
- var initialWidth = el.retrieve("initialWidth").toFloat();
- var dx = x.toFloat() - position.x.toFloat();
- var width = initialWidth+dx;
- if (width> bodySize.x/2) width = bodySize.x/2;
- if (width<160) width = 160;
- this.attachmentContentNode.setStyle("margin-left", width);
- this.folderContentNode.setStyle("width", width);
- }.bind(this)
- });
-
- MWF.require("MWF.widget.Tab", function(){
- this.treeTab = new MWF.widget.Tab(this.folderTreeAreaNode, {"style": "processlayout"});
- this.treeTab.load();
- this.fileTabe = this.treeTab.addTab(this.folderTreeAreaScrollNode, this.lp.myFiles, false);
- this.shareTab = this.treeTab.addTab(this.shareTreeAreaScrollNode, this.lp.shareFiles, false);
- this.fileTabe.showIm();
- this.setContentHeight();
- this.addEvent("resize", function(){this.setContentHeight();}.bind(this));
- }.bind(this));
- MWF.require("MWF.widget.ScrollBar", function(){
- new MWF.widget.ScrollBar(this.folderTreeAreaScrollNode, {
- "style":"xApp_Organization_Explorer", "where": "before", "distance": 100, "friction": 4, "axis": {"x": false, "y": true}
- });
- new MWF.widget.ScrollBar(this.shareTreeAreaScrollNode, {
- "style":"xApp_Organization_Explorer", "where": "before", "distance": 100, "friction": 4, "axis": {"x": false, "y": true}
- });
- //new MWF.widget.ScrollBar(this.fileContentAreaScrollNode, {
- // "style":"xApp_Organization_Explorer", "where": "before", "distance": 100, "friction": 4, "axis": {"x": false, "y": true}
- //});
- }.bind(this));
-
- },
- loadTop: function(){
- this.topNode = new Element("div", {"styles": this.css.topNode}).inject(this.node);
-
- this.leftNode = new Element("div", {"styles": this.css.leftNode}).inject(this.topNode);
- this.leftNode.addEvent("click", function(){
- this.leftPath();
- }.bind(this));
-
- this.rightNode = new Element("div", {"styles": this.css.rightNode}).inject(this.topNode);
- this.rightNode.addEvent("click", function(){
- this.rightPath();
- }.bind(this));
-
- this.refreshNode = new Element("div", {"styles": this.css.refreshNode}).inject(this.topNode);
- this.searchNode = new Element("div", {"styles": this.css.searchNode}).inject(this.topNode);
- this.pathNode = new Element("div", {"styles": this.css.pathNode}).inject(this.topNode);
- },
- loadTools: function(){
- this.toolsNode = new Element("div", {"styles": this.css.toolsNode}).inject(this.node);
- this.uploadNode = new Element("div", {"styles": this.css.toolsActionNode, "text": this.lp.upload}).inject(this.toolsNode);
- this.createFolderNode = new Element("div", {"styles": this.css.toolsActionNode, "text": this.lp.createFolder}).inject(this.toolsNode);
- this.operationNode = new Element("div", {"styles": this.css.toolsMenuActionNode}).inject(this.toolsNode);
- var downTextNode = new Element("div", {"styles": this.css.downTextNode, "text": this.lp.operation}).inject(this.operationNode);
- var downIconNode = new Element("div", {"styles": this.css.downIconNode}).inject(this.operationNode);
-
- this.uploadNode.addEvents({
- "mouseover": function(){this.uploadNode.setStyles(this.css.toolsActionNode_over);}.bind(this),
- "mouseout": function(){this.uploadNode.setStyles(this.css.toolsActionNode);}.bind(this),
- "click": function(){this.createUploadFile();}.bind(this)
- });
- this.createFolderNode.addEvents({
- "mouseover": function(){this.createFolderNode.setStyles(this.css.toolsActionNode_over);}.bind(this),
- "mouseout": function(){this.createFolderNode.setStyles(this.css.toolsActionNode);}.bind(this),
- "click": function(){this.createFolder();}.bind(this)
- });
- this.operationNode.addEvents({
- "mouseover": function(){this.operationNode.setStyles(this.css.toolsMenuActionNode_over);}.bind(this),
- "mouseout": function(){this.operationNode.setStyles(this.css.toolsMenuActionNode);}.bind(this),
- "click": function(){}.bind(this)
- });
- this.operationMenu = new MWF.xDesktop.Menu(this.operationNode, {
- "event": "click",
- "style": "fileOperation",
- "offsetX": -4,
- "offsetY": 4,
- "onQueryShow": function(){
- this.operationMenu.items.each(function(item){item.setDisable(true);});
- if (this.selectedItem){
- if (this.selectedItem.type=="folder"){
- this.operationMenu.items[0].setText(this.lp.uploadTo+" "+this.selectedItem.data.name+"...");
- this.operationMenu.items[0].setDisable(false);
- this.operationMenu.items[3].setDisable(false);
- this.operationMenu.items[4].setDisable(false);
- this.operationMenu.items[7].setDisable(false);
- }
- if (this.selectedItem.type=="file"){
- this.operationMenu.items[0].setText(this.lp.uploadTo);
- this.operationMenu.items[0].setDisable(true);
- this.operationMenu.items[1].setDisable(false);
- this.operationMenu.items[3].setDisable(false);
- this.operationMenu.items[4].setDisable(false);
- this.operationMenu.items[5].setDisable(false);
- this.operationMenu.items[7].setDisable(false);
- }
- }
- }.bind(this)
- });
- this.operationMenu.load();
-
- var img = this.path+this.options.style+"/operation/upload.png";
- this.operationMenu.addMenuItem(this.lp.uploadTo, "click", function(){this.createUploadFile(this.selectedItem);}.bind(this), img);
- var img = this.path+this.options.style+"/operation/download.png";
- this.operationMenu.addMenuItem(this.lp.download, "click", function(){this.downloadCurrentFile();}.bind(this), img);
-
- this.operationMenu.addMenuLine();
-
- var img = this.path+this.options.style+"/operation/move.png";
- this.operationMenu.addMenuItem(this.lp.move, "click", function(){this.moveFileFolder();}.bind(this), img);
- var img = this.path+this.options.style+"/operation/rename.png";
- this.operationMenu.addMenuItem(this.lp.rename, "click", function(){this.renameFileFolder();}.bind(this), img);
- var img = this.path+this.options.style+"/operation/share.png";
- this.operationMenu.addMenuItem(this.lp.share, "click", function(){this.shareFile();}.bind(this), img);
-
- this.operationMenu.addMenuLine();
-
- var img = this.path+this.options.style+"/operation/delete.png";
- this.operationMenu.addMenuItem(this.lp["delete"], "click", function(e){this.deleteFileFolder(e);}.bind(this), img);
- },
-
- downloadCurrentFile: function(){
- if (this.selectedItem){
- if (this.selectedItem.type=="file"){
- this.selectedItem.open();
- }
- }
- },
- moveFileFolder: function(){
- //move----------
- //move----------
- //move----------
- //move----------
- },
- renameFileFolder: function(){
- this.content.mask({
- "style": {
- "opacity": 0.7,
- "background-color": "#999"
- }
- });
-
- var renameNode = new Element("div", {"styles": this.css.createFolderNode}).inject(this.content);
- renameNode.position({
- relativeTo: this.node,
- position: "center"
- });
-
- var titleNode = new Element("div", {"styles": this.css.createFolderTitleNode, "text": this.lp.rename}).inject(renameNode);
- var inforNode = new Element("div", {"styles": this.css.createFolderInforNode, "text": this.lp.inputName}).inject(renameNode);
- var inputAreaNode = new Element("div", {"styles": this.css.createFolderInputAreaNode}).inject(renameNode);
- var inputNode = new Element("input", {"type": "text", "styles": this.css.createFolderInputNode, "value": this.selectedItem.data.name}).inject(inputAreaNode);
-
- var actionNode = new Element("div", {"styles": this.css.createFolderActionNode}).inject(renameNode);
- var cancelButton = new Element("button", {"styles": this.css.createFolderCancelButton, "text": this.lp.cancel}).inject(actionNode);
- var okButton = new Element("button", {"styles": this.css.createFolderOkButton, "text": this.lp.ok}).inject(actionNode);
-
- cancelButton.addEvent("click", function(){
- this.content.unmask();
- renameNode.destroy();
- }.bind(this));
- okButton.addEvent("click", function(){
- if (inputNode.get("value")){
- this.selectedItem.data.name = inputNode.get("value");
-
- if (this.selectedItem.type=="folder"){
- this.restActions.saveFolder(this.selectedItem.data, function(json){
- if (this.currentFolder){
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- this.selectedItem.treeNode.setText(this.selectedItem.data.name);
- }.bind(this));
- }else{
- this.restActions.updateAttachment(this.selectedItem.data, function(json){
- if (this.currentFolder){
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- }.bind(this));
- }
- renameNode.destroy();
- this.content.unmask();
- }else{
- this.notice(this.lp.nameNotEmpty, "error", renameNode);
- }
- }.bind(this));
- },
-
- deleteFileFolder: function(e){
- if (this.selectedItem){
- var _self = this;
- var title = (this.selectedItem.type=="folder") ? this.lp.deleteFolderTitle : this.lp.deleteFileTitle;
- var content = (this.selectedItem.type=="folder") ? this.lp.deleteFolder : this.lp.deleteFile;
-
- var size = this.node.getSize();
- // var position = this.operationMenu.items[7].item.getPosition(this.operationMenu.items[7].item.getOffsetParent());
- var ep = {"event": {"x": (size.x-300)/2, "y": (size.y-120)/2}};
-
- this.confirm("infor", ep, title, content+"("+this.selectedItem.data.name+")", 300, 120, function(){
- var callback = function(){
- if (this.currentFolder){
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- };
- if (_self.selectedItem.type=="folder"){
- _self.selectedItem.treeNode.destroy();
- _self.restActions.deleteFolder(_self.selectedItem.data.id, callback.bind(_self));
- }else{
- _self.restActions.deleteFile(_self.selectedItem.data.id, callback.bind(_self));
- }
- this.close();
- }, function(){
- this.close();
- });
- }
- },
- shareFile: function(){
- this.content.mask({
- "style": {
- "opacity": 0.7,
- "background-color": "#999"
- }
- });
-
- var shareNode = new Element("div", {"styles": this.css.createFolderNode}).inject(this.content);
- shareNode.position({
- relativeTo: this.node,
- position: "center"
- });
-
- var titleNode = new Element("div", {"styles": this.css.createFolderTitleNode, "text": this.lp.shareFile}).inject(shareNode);
- var inforNode = new Element("div", {"styles": this.css.createFolderInforNode, "text": this.lp.selectShareUser}).inject(shareNode);
- var inputAreaNode = new Element("div", {"styles": this.css.createFolderInputAreaNode}).inject(shareNode);
- var inputNode = new Element("input", {"type": "text", "readonly": true, "styles": this.css.shareFileInputNode, "value": this.selectedItem.data.shareList.join(", ")}).inject(inputAreaNode);
- inputNode.addEvent("click", function(){
- MWF.require("MWF.xApplication.Organization.Selector.Person", function(){
- var selector = new MWF.xApplication.Organization.Selector.Person(this.node,{
- "names": this.selectedItem.data.shareList,
- "onComplete": function(items){
- var names = [];
- items.each(function(item){
- names.push(item.data.name);
- });
- inputNode.set("value", names.join(", "));
- }.bind(this)
- });
- selector.load();
- }.bind(this));
- }.bind(this));
-
- var actionNode = new Element("div", {"styles": this.css.createFolderActionNode}).inject(shareNode);
- var cancelButton = new Element("button", {"styles": this.css.createFolderCancelButton, "text": this.lp.cancel}).inject(actionNode);
- var okButton = new Element("button", {"styles": this.css.createFolderOkButton, "text": this.lp.ok}).inject(actionNode);
-
- cancelButton.addEvent("click", function(){
- this.content.unmask();
- shareNode.destroy();
- }.bind(this));
- okButton.addEvent("click", function(){
- this.selectedItem.data.shareList = inputNode.get("value").split(/,\s*/g);
-
- this.restActions.updateAttachment(this.selectedItem.data, function(json){
- if (inputNode.get("value")) this.notice(this.lp.fileShareSuccess+inputNode.get("value"), "success", this.content);
- }.bind(this));
- shareNode.destroy();
- this.content.unmask();
-
- }.bind(this));
- },
-
- createUploadFile: function(folder){
- if (!this.uploadFileAreaNode){
- this.uploadFileAreaNode = new Element("div");
- var html = "<input name=\"file\" multiple type=\"file\"/>";
- this.uploadFileAreaNode.set("html", html);
-
- this.fileUploadNode = this.uploadFileAreaNode.getFirst();
- this.fileUploadNode.addEvent("change", function(){
- var folderId = "";
- if (folder){
- folderId = folder.data.id;
- }else{
- folderId = (this.currentFolder && this.currentFolder.data) ? this.currentFolder.data.id : "";
- }
-
- var files = fileNode.files;
- if (files.length){
- for (var i = 0; i < files.length; i++) {
- var file = files.item(i);
-
- var formData = new FormData();
- formData.append('file', file);
- formData.append('name', file.name);
- formData.append('folder', folderId);
-
- this.restActions.addAttachment(function(){
- if (this.currentFolder){
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- }.bind(this), null, formData, file);
- }
- }
-
- }.bind(this));
- }
- var fileNode = this.uploadFileAreaNode.getFirst();
- fileNode.click();
- },
- createFolder: function(){
- this.content.mask({
- "style": {
- "opacity": 0.7,
- "background-color": "#999"
- }
- });
-
- var createFolderNode = new Element("div", {"styles": this.css.createFolderNode}).inject(this.content);
- createFolderNode.position({
- relativeTo: this.node,
- position: "center"
- });
-
- var titleNode = new Element("div", {"styles": this.css.createFolderTitleNode, "text": this.lp.createFolder}).inject(createFolderNode);
- var inforNode = new Element("div", {"styles": this.css.createFolderInforNode, "text": this.lp.inputFolderName}).inject(createFolderNode);
- var inputAreaNode = new Element("div", {"styles": this.css.createFolderInputAreaNode}).inject(createFolderNode);
- var inputNode = new Element("input", {"type": "text", "styles": this.css.createFolderInputNode}).inject(inputAreaNode);
-
- var actionNode = new Element("div", {"styles": this.css.createFolderActionNode}).inject(createFolderNode);
- var cancelButton = new Element("button", {"styles": this.css.createFolderCancelButton, "text": this.lp.cancel}).inject(actionNode);
- var okButton = new Element("button", {"styles": this.css.createFolderOkButton, "text": this.lp.ok}).inject(actionNode);
-
- cancelButton.addEvent("click", function(){
- this.content.unmask();
- createFolderNode.destroy();
- }.bind(this));
- okButton.addEvent("click", function(){
- if (inputNode.get("value")){
- var data = {
- "name": inputNode.get("value"),
- "superior": (this.currentFolder && this.currentFolder.data) ? this.currentFolder.data.id : ""
- };
- this.restActions.saveFolder(data, function(json){
- data.id = json.data.id;
- if (this.currentFolder){
- var json = {"data":[data]};
- this.createTreeNode(json, this.currentFolder);
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- }.bind(this));
- createFolderNode.destroy();
- this.content.unmask();
- }else{
- this.notice(this.lp.folderNameNotEmpty, "error", createFolderNode);
- }
-
- }.bind(this));
- },
-
- loadFolderTreeNode: function(){
- this.folderTreeNode = new Element("div", {
- "styles": this.css.folderTreeNode
- }).inject(this.folderTreeAreaScrollNode);
-
- MWF.require("MWF.widget.Tree", function(){
- this.folderTree = new MWF.widget.Tree(this.folderTreeNode, {
- "style": "file",
- // "onQueryExpand": function(node){
- // this.loadFolderTree(node);
- // }.bind(this)
- });
- this.folderTree.load();
- var rootData = {
- "expand": false,
- "title": "root",
- "text": "root",
- "action": function(treeNode){
- this.recordHistory(treeNode);
- this.expand(treeNode, function(){
- this.loadSub(treeNode);
- }.bind(this));
- }.bind(this),
- "icon": "folder.png"
- };
- this.topTreeNode = this.folderTree.appendChild(rootData);
- this.topTreeNode.clickNode();
- // this.loadFolderTree();
- }.bind(this));
- },
-
- createShareTreeNode: function(json){
- json.data.each(function(data){
- var nodeData = {
- "expand": false,
- "title": data.person+"("+data.count+")",
- "text": data.person+"("+data.count+")",
- "action": function(treeNode){
- this.loadShareFile(treeNode);
- }.bind(this),
- "icon": "folder.png"
- };
- var treeNode = this.shareTree.appendChild(nodeData);
- treeNode.data = data;
- }.bind(this));
- },
- loadShareTreeNode: function(){
- this.shareTreeNode = new Element("div", {
- "styles": this.css.folderTreeNode
- }).inject(this.shareTreeAreaScrollNode);
-
- MWF.require("MWF.widget.Tree", function(){
- this.shareTree = new MWF.widget.Tree(this.shareTreeNode, {
- "style": "file"
- });
- this.shareTree.load();
-
- this.restActions.listShare(function(json){
- this.createShareTreeNode(json);
- // node.setOperateIcon();
- }.bind(this), null, false);
-
- // this.loadFolderTree();
- }.bind(this));
- },
- loadShareFile: function(treeNode){
- var person = treeNode.data.person;
- this.restActions.listShareAttachment(function(json){
- this.fileContentAreaNode.empty();
- json.data.each(function(file){
- new MWF.xApplication.File.ShareAttachment(file, this);
- }.bind(this));
- }.bind(this), null, person);
- },
-
- loadFileContentAreaNode: function(){
- this.controller = new MWF.xApplication.File.AttachmentController(this.attachmentContentNode, this, {
- "resize": false,
- "isSizeChange": false,
- })
- this.controller.load();
- //this.fileContentAreaScrollNode = new Element("div", {
- // "styles": this.css.fileContentAreaScrollNode
- //}).inject(this.attachmentContentNode);
- //
- //this.fileContentAreaScrollNode.addEvent("click", function(){
- // if (this.selectedItem) this.selectedItem.unSelected();
- //}.bind(this));
- //
- //this.fileContentAreaNode = new Element("div", {
- // "styles": this.css.fileContentAreaNode
- //}).inject(this.fileContentAreaScrollNode);
- //
- //this.initDropUpLoad();
- },
-
- createTreeNode: function(json, topNode){
- json.data.each(function(data){
- var nodeData = {
- "expand": false,
- "title": data.name,
- "text": data.name,
- "action": function(treeNode){
- this.recordHistory(treeNode);
- this.expand(treeNode, function(){
- this.loadSub(treeNode);
- }.bind(this));
- }.bind(this),
- "icon": "folder.png"
- };
- var treeNode = topNode.appendChild(nodeData);
- treeNode.data = data;
- }.bind(this));
- },
- loadFolderTree: function(node, callback){
- if (!node.loaded){
- if (node.data){
- this.restActions.listFolder(function(json){
- this.createTreeNode(json, node);
- node.setOperateIcon();
- if (callback) callback();
- }.bind(this), null, node.data.id, false);
- }else{
- this.restActions.listTopFolder(function(json){
- this.createTreeNode(json, node);
- node.setOperateIcon();
- if (callback) callback();
- }.bind(this), null, false);
- }
- node.loaded = true;
- }else{
- if (callback) callback();
- }
- },
-
- setContentHeight: function(node){
- var size = this.node.getSize();
- var tSize = this.topNode.getSize();
- // var toolSize = this.toolsNode.getSize();
-
- var mtt = this.topNode.getStyle("margin-top").toFloat();
- var mbt = this.topNode.getStyle("margin-bottom").toFloat();
-
- // var mttool = this.toolsNode.getStyle("margin-top").toFloat();
- // var mbtool = this.toolsNode.getStyle("margin-bottom").toFloat();
-
- var mtc = this.fileContentNode.getStyle("margin-top").toFloat();
- var mbc = this.fileContentNode.getStyle("margin-bottom").toFloat();
- var height = size.y-tSize.y-mtt-mbt-mtc-mbc;
- this.fileContentNode.setStyle("height", height);
- this.attachmentContentNode.setStyle("height", height);
- var attTopSzie = this.controller.topNode.getSize();
- var y = height-attTopSzie.y;
- this.controller.contentScrollNode.setStyle("height", ""+y+"px");
-
- // this.fileContentAreaNode.setStyle("min-height", height);
-
- var tabSize = this.treeTab.tabNodeContainer.getSize();
- var height = height-tabSize.y;
-
- this.folderTreeAreaScrollNode.setStyle("height", height);
- this.shareTreeAreaScrollNode.setStyle("height", height);
- },
-
- expand: function(treeNode, callback){
- if (!treeNode.options.expand){
- this.loadFolderTree(treeNode, function(){
- if (callback) callback();
- }.bind(this));
- this.folderTree.expand(treeNode);
- treeNode.options.expand = true;
- treeNode.setOperateIcon();
- }else{
- if (callback) callback();
- }
- },
- checkHistory: function(){
- if (this.history.length>1){
- if (this.currentHistory>0){
- this.enabledLeftNode();
- }else{
- this.disabledLeftNode();
- }
-
- if (this.currentHistory<this.history.length-1){
- this.enabledRightNode();
- }else{
- this.disabledRightNode();
- }
- }else{
- this.disabledLeftNode();
- this.disabledRightNode();
- }
- },
- enabledLeftNode: function(){
- this.leftNode.setStyle("background-image", "url("+"/x_component_File/$Main/default/icon/left_enabled.png)");
- },
- enabledRightNode: function(){
- this.rightNode.setStyle("background-image", "url("+"/x_component_File/$Main/default/icon/right_enabled.png)");
- },
- disabledLeftNode: function(){
- this.leftNode.setStyle("background-image", "url("+"/x_component_File/$Main/default/icon/left.png)");
- },
- disabledRightNode: function(){
- this.rightNode.setStyle("background-image", "url("+"/x_component_File/$Main/default/icon/right.png)");
- },
-
- leftPath: function(){
- if (this.currentHistory>0){
- this.currentHistory--;
- var treeNode = this.history[this.currentHistory];
- if (treeNode){
- treeNode.selectNode();
- this.loadSub(treeNode);
- this.checkHistory();
- }
- }
- },
- rightPath: function(){
- if (this.currentHistory<this.history.length-1){
- this.currentHistory++;
- var treeNode = this.history[this.currentHistory];
- if (treeNode){
- treeNode.selectNode();
- this.loadSub(treeNode);
- this.checkHistory();
- }
- }
- },
-
- recordHistory: function(treeNode){
- if (!this.history.length || this.history[this.history.length-1]!=treeNode){
- this.history.push(treeNode);
- this.currentHistory = this.history.length-1;
- this.checkHistory();
- }
- },
- setPathNode: function(treeNode){
- this.pathNode.empty();
- var paths = [];
- var tmpNode = treeNode;
- while (tmpNode){
- paths.unshift(tmpNode);
- tmpNode = tmpNode.parentNode;
- };
- var _self = this;
- paths.each(function(node, index){
- this.expand(node);
- var pathNode = new Element("div",{
- "styles": this.css.pathItemNode,
- "text": (node.data) ? node.data.name : "root",
- "events": {
- "mouseover": function(){
- this.setStyles(_self.css.pathItemNode_over);
- },
- "mouseout": function(){
- this.setStyles(_self.css.pathItemNode);
- },
- "click": function(){
- node.clickNode();
- },
- }
- }).inject(this.pathNode);
- if (index<paths.length-1) new Element("div",{"styles": this.css.pathItemIconNode}).inject(this.pathNode);
- }.bind(this));
- },
- loadSub: function(treeNode){
- this.setPathNode(treeNode);
-
- //this.fileContentAreaNode.empty();
- this.controller.clear();
-
- treeNode.children.each(function(node){
- this.controller.addAttachmentFolder(node.data);
- //var folder = new MWF.xApplication.File.Folder(node.data, this);
- //folder.treeNode = node;
- }.bind(this));
-
- this.currentFolder = treeNode;
- if (treeNode.data){
- this.restActions.listAttachment(function(json){
- json.data.each(function(file){
- this.controller.addAttachment(file);
- //new MWF.xApplication.File.Attachment(file, this);
- }.bind(this));
- }.bind(this), null, treeNode.data.id);
- }else{
- this.restActions.listAttachmentTop(function(json){
- json.data.each(function(file){
- this.controller.addAttachment(file);
- //new MWF.xApplication.File.Attachment(file, this);
- }.bind(this));
- }.bind(this));
- }
- },
- uploadFiles: function(files){
- if (!this.uploadFileList) this.uploadFileList = [];
- if (!this.uploadFileTotalSize) this.uploadFileTotalSize = 0;
- if (!files || !files.length) return;
-
- for (var i = 0; i < files.length && i < 5; i++) {
- this.uploadFileList.push(files[i]);
- this.uploadFileTotalSize += files[i].size;
- }
- this.uploadNext();
- },
- uploadNext: function(){
- if (this.uploadFileList.length) {
- var nextFile = this.uploadFileList.shift();
- if (nextFile){
- this.uploadFile(nextFile);
- this.uploadNext();
- }
- }
- },
- uploadFile: function(file){
- var formData = new FormData();
- formData.append('file', file);
- formData.append('name', file.name);
- formData.append('folder', (this.currentFolder && this.currentFolder.data) ? this.currentFolder.data.id : "");
- // xhr.send(formData);
-
- this.restActions.addAttachment(function(){
- if (!this.uploadFileList.length){
- if (this.currentFolder){
- this.currentFolder.clickNode();
- }else{
- this.topTreeNode.clickNode();
- }
- }
- }.bind(this), null, formData, file);
- },
- initDropUpLoad: function(){
- this.fileContentAreaNode.addEventListener('drop', function(e){
- e.stopPropagation();
- e.preventDefault();
- if (this.dropUploadInforNode){
- this.dropUploadInforNode.destroy();
- this.dropUploadInforNode = null;
- }
- if (e.dataTransfer.types.length<2){
- this.uploadFiles(e.dataTransfer.files);
- }
- }.bind(this), false);
-
- this.fileContentAreaNode.addEventListener('dragover', function(e){
- if (e.dataTransfer.types.length<2){
- e.stopPropagation();
- e.preventDefault();
-
- if (!this.dropUploadInforNode){
- this.dropUploadInforNode = new Element("div", {
- "styles": this.css.dropUploadInforNode,
- "text": this.lp.dropUpload
- }).inject(this.node);
- this.dropUploadInforNode.position({
- relativeTo: this.fileContentAreaNode,
- position: "centerBottom",
- edge: "centerBottom",
- offset: {"x": 0, "y": -100}
- });
- this.dropUploadInforNode.fade(0.7);
- }
- }
-
- }.bind(this), false);
-
- this.fileContentAreaNode.addEventListener('dragleave', function(e){
- e.stopPropagation();
- e.preventDefault();
-
- if (this.dropUploadInforNode) window.setTimeout(function(){
- if (this.dropUploadInforNode){
- this.dropUploadInforNode.destroy();
- this.dropUploadInforNode = null;
- }
- }.bind(this), 2000);
- }.bind(this), false);
-
-
- }
- });
- MWF.xApplication.File.Attachment = new Class({
- initialize: function(data, file){
- this.data = data;
- this.file = file;
- this.type = "file";
-
- this.extension = this.data.name.substr(this.data.name.lastIndexOf(".")+1, this.data.name.length);
-
- this.load();
- },
- getIcon: function(){
- var iconName = this.file.icons[this.extension] || this.file.icons.unknow;
- return "/x_component_File/$Main/default/file/"+iconName;
- },
- load: function(){
- this.node = new Element("div", {"styles": this.file.css.attachmentNode});
- this.iconNode = new Element("div", {"styles": this.file.css.attachmentIconNode}).inject(this.node);
- this.imgNode = new Element("div", {
- "styles": this.file.css.attachmentImgNode
- }).inject(this.iconNode);
- this.imgNode.setStyle("background-image", "url("+this.getIcon()+")");
-
- this.textNode = new Element("div", {
- "styles": this.file.css.attachmentTextNode,
- "text": this.data.name,
- "title": this.data.name
- }).inject(this.node);
-
- if (this.data.shareList){
- if (this.data.shareList.length){
- this.shareIconNode = new Element("div", {"styles": this.file.css.shareIconNode}).inject(this.node);
- // this.shareIconNode.position({
- // relativeTo: this.node,
- // position: "centerBottom",
- // edge: "centerBottom"
- // });
- }
- }
-
-
- this.node.inject(this.file.fileContentAreaNode);
-
- this.setEvents();
- },
- setEvents: function(){
- this.node.addEvents({
- "mouseover": function(){
- if (!this.isSelected) this.node.setStyles(this.file.css.attachmentNode_over);
- }.bind(this),
- "mouseout": function(){
- if (!this.isSelected) this.node.setStyles(this.file.css.attachmentNode);
- }.bind(this),
- "click": function(e){
- this.selected();
- e.stop();
- e.stopPropagation();
- }.bind(this),
- "dblclick": function(){
- this.open();
- }.bind(this),
- });
- this.node.makeLnk({
- "par": {
- "icon": this.getIcon(),
- "title": this.data.name,
- "par": "FileOpen#{\"id\": \""+this.data.id+"\", \"type\": \"file\"}"
- }
- });
- },
- selected: function(){
- if (this.file.selectedItem) this.file.selectedItem.unSelected();
- this.isSelected = true;
- this.node.setStyles(this.file.css.attachmentNode_select);
- this.file.selectedItem = this;
- },
- unSelected: function(){
- this.isSelected = false;
- this.node.setStyles(this.file.css.attachmentNode);
- this.file.selectedItem = null;
- },
- open: function(){
- this.file.restActions.getAttachment(this.data.id);
- }
- });
- MWF.xApplication.File.Folder = new Class({
- initialize: function(data, file){
- this.data = data;
- this.file = file;
- this.type = "folder";
-
- this.load();
- },
- getIcon: function(){
- return "/x_component_File/$Main/default/file/folder.png";
- },
- load: function(){
- this.node = new Element("div", {"styles": this.file.css.attachmentNode});
- // this.node.addEvents();
-
- this.iconNode = new Element("div", {"styles": this.file.css.attachmentIconNode}).inject(this.node);
- this.imgNode = new Element("img", {
- "styles": this.file.css.attachmentImgNode,
- "src": this.getIcon(),
- "border": "0"
- }).inject(this.iconNode);
-
- this.textNode = new Element("div", {
- "styles": this.file.css.attachmentTextNode,
- "text": this.data.name
- }).inject(this.node);
-
-
- this.node.inject(this.file.fileContentAreaNode);
-
- this.setEvents();
- },
- setEvents: function(){
- this.node.addEvents({
- "mouseover": function(){
- if (!this.isSelected) this.node.setStyles(this.file.css.attachmentNode_over);
- }.bind(this),
- "mouseout": function(){
- if (!this.isSelected) this.node.setStyles(this.file.css.attachmentNode);
- }.bind(this),
- "click": function(e){
- this.selected();
- e.stop();
- e.stopPropagation();
- }.bind(this),
- "dblclick": function(){
- this.open();
- }.bind(this),
- });
- },
- selected: function(){
- if (this.file.selectedItem) this.file.selectedItem.unSelected();
- this.isSelected = true;
- this.node.setStyles(this.file.css.attachmentNode_select);
- this.file.selectedItem = this;
- },
- unSelected: function(){
- this.isSelected = false;
- this.node.setStyles(this.file.css.attachmentNode);
- this.file.selectedItem = null;
- },
- open: function(){
- this.treeNode.clickNode();
- }
- });
- MWF.xApplication.File.ShareAttachment = new Class({
- Extends: MWF.xApplication.File.Attachment,
- initialize: function(data, file){
- this.data = data;
- this.file = file;
- this.type = "share";
-
- this.extension = this.data.name.substr(this.data.name.lastIndexOf(".")+1, this.data.name.length);
-
- this.load();
- }
- });
|