DiskView.js 53 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. Namespace.register("U.MD.DK.VW"); //Disk视图操作命名空间
  2. //#region 追随设置
  3. /* 跟新追随信息
  4. *
  5. * @param diskel {element} 网盘窗体元素
  6. * @param userid {string} 用户id
  7. **/
  8. U.MD.DK.VW.followState = function (diskel, userid) {
  9. var _followbutton = $(".U_MD_DK_LIRS", diskel);
  10. _followbutton.attr("user", userid);
  11. if (userid == US.userInfo.userid) {
  12. _followbutton[0].innerHTML = "本人";
  13. }
  14. else if (US.friend.friends && U.Json.select(US.friend.friends, { UserId: userid })[0]) {
  15. _followbutton[0].innerHTML = "已追随";
  16. _followbutton.addClass("U_MD_DK_LIRSED");
  17. } else {
  18. _followbutton[0].innerHTML = "追随";
  19. _followbutton.removeClass("U_MD_DK_LIRSED");
  20. }
  21. }
  22. /* 追随按钮点击事件
  23. *
  24. **/
  25. U.MD.DK.VW.followState.click = function (button) {
  26. var _userid = $(button).attr("user");
  27. var _userinfo;
  28. if (_userid == US.userInfo.userid) {
  29. return;
  30. } else if (US.friend.friends && (_userinfo = U.Json.select(US.friend.friends, { UserId: _userid })[0])) {
  31. U.MD.F.M.deleteFriend(_userinfo, function () {
  32. button.innerHTML = "追随";
  33. $(button).removeClass("U_MD_DK_LIRSED");
  34. });
  35. } else {
  36. U.A.Request(US.CD, [US.DB, "UseStudio_Users", "GetUserinfoByUserId", _userid], function (r) {//根据用户名获取用户信息
  37. if (r.value && r.value[0]) {
  38. U.MD.F.M.addFriend(r.value[0], function () {
  39. button.innerHTML = "已追随";
  40. $(button).addClass("U_MD_DK_LIRSED");
  41. });
  42. } else {
  43. U.Alert("用户信息有误,请稍后尝试...");
  44. }
  45. });
  46. }
  47. }
  48. //#endregin
  49. //#region 目录文件打印
  50. /**
  51. * 打印网盘视图输出判断的地方 分为普通视图输出和详细视图输出
  52. * @param {array} 需要输出的文件或者文件夹信息
  53. * @param {element} 输出到那个区域
  54. **/
  55. U.MD.DK.VW.viewsSwitch = function (viewtype, diskinfo) {
  56. var _contentel = $("#U_MD_DK_RZ", diskinfo.formel)[0], //内容元素
  57. _viewnav = $(_contentel).prev()[0] //导航元素
  58. ;
  59. diskinfo.viewtype = _contentel.viewtype = viewtype; //视图
  60. if (diskinfo.currentDirectoryFile.length) {
  61. _contentel.innerHTML = ""; //先清空处理
  62. U.MD.DK.VW.printContent(diskinfo.currentDirectoryFile, _contentel); //打印内容
  63. //这里是普通视图处理
  64. if (viewtype == "Normal") {
  65. _contentel.style.width = ""; //普通视图不修改大小
  66. _viewnav.style.display = "none";
  67. _contentel.style.height = $(_contentel).Parent(2).offsetHeight - 79 + "px"
  68. }
  69. //详细视图处理
  70. else {
  71. U.MD.DK.VW.size(diskinfo); //详细视图的时候需要设置大小和样式,这里统一处理
  72. }
  73. }
  74. }
  75. /**
  76. * 根据时间排序
  77. * @param {object} 用户网盘信息
  78. **/
  79. U.MD.DK.VW.SortView = function (diskinfo, type, cb) {
  80. var _filesinfo = diskinfo.currentDirectoryFile, //用户展示在改文件夹下所有的文件
  81. _contentel = $("#U_MD_DK_RZ", diskinfo.formel)[0]
  82. ;
  83. //判断文件是否存在,如果有打印文件,那么就进行文件的打印,否则不做任何处理
  84. if (_filesinfo.length) {
  85. //判断头两个文件的创建时间,进行排序处理
  86. if (_filesinfo[0].UserDirectoryAddTime > _filesinfo[1].UserDirectoryAddTime) {
  87. //文件降序处理
  88. U.UF.Math.sequence(_filesinfo, type, cb, 1);
  89. } else {
  90. //文件升序处理
  91. U.UF.Math.sequence(_filesinfo, type, cb, -1);
  92. }
  93. //重新打印内容
  94. _contentel.innerHTML = "";
  95. U.MD.DK.VW.printContent(_filesinfo, _contentel); //打印
  96. }
  97. }
  98. /**
  99. * 打印网盘视图输出判断的地方 分为普通视图输出和详细视图输出
  100. * @param {array} 需要输出的文件或者文件夹信息
  101. * @param {element} 输出到那个区域
  102. **/
  103. U.MD.DK.VW.printContent = function (filesinfo, el) {
  104. var _diskinfo = US.disk.UserDisk, //用户网盘的数据
  105. _viewtype = el.viewtype || "Normal", //打印的格式
  106. _viewnav = $(el).prev()[0] //视图导航
  107. ;
  108. //判断是否有需要输出的文件信息
  109. if (filesinfo.length) {
  110. //打印的模式 这里是普通视图输出
  111. if (_viewtype == "Normal") {
  112. U.MD.DK.VW.printNormalView(filesinfo, el); //输出
  113. }
  114. //详细视图输出
  115. else {
  116. U.MD.DK.VW.printDetailedView(filesinfo, el); //详细视图输出
  117. }
  118. }
  119. //如果还有输出的信息在div上面那么不输出空文件的提示
  120. else if (!$(el).Child().length) {
  121. U.MD.DK.VW.printNullView(el); //没有文件的时候样式输出
  122. }
  123. }
  124. /**
  125. * 空文件提示信息输出
  126. * @param {element} 输出到那个区域
  127. **/
  128. U.MD.DK.VW.printNullView = function (el) {
  129. var _viewel,
  130. _infoel,
  131. _promptel,
  132. _viewel = $$("div", { "className": "U_MD_DK_RZF" }, el);
  133. _infoel = $$("div", { "className": "U_MD_DK_RZFS" }, _viewel);
  134. $$("div", { "className": "U_MD_DK_RZTSL U_MD_DK_RZFSL", "innerHTML": "!" }, _infoel);
  135. _promptel = $$("div", { "className": "U_MD_DK_RZFSR" }, _infoel);
  136. //提示信息
  137. _infoel = $$("div", { "className": "U_MD_DK_RZFSRS" }, _promptel);
  138. $$("div", { "className": "U_MD_DK_RZFSRS", "innerHTML": "这地方暂时" }, _infoel);
  139. $$("div", { "className": "U_MD_DK_RZFSRS", "innerHTML": " 没有资源哦。" }, _infoel);
  140. $$("div", { "className": "U_MD_DK_RZTSRX U_MD_DK_RZFSRX", "innerHTML": "Nothing!!" }, _promptel);
  141. }
  142. /**
  143. * 普通视图打印
  144. * @param {array} 需要输出的文件或者文件夹信息
  145. * @param {element} 输出到那个区域
  146. **/
  147. U.MD.DK.VW.printNormalView = function (filesinfo, el) {
  148. //变量定义区域
  149. var i, //用于循环
  150. _isencryp, //判断文件夹是否加密处理
  151. _date, //文件当前使用时间
  152. _icon, //获取文件的icon样式,包含多种
  153. _imgicon, //打印给用户看到的文件类型对应的图标的样式,上面的是
  154. _iconel, //图标元素
  155. _imgeel, //输入给用户看到的元素
  156. _infoel, //信息输出元素
  157. _userimg, //用户头像
  158. _frag = $$("frag"), //临时panel
  159. _diskinfo = US.disk.UserDisk, //用户网盘信息
  160. _userid = _diskinfo.userInfo.UserId //当前使用用户的id
  161. ;
  162. //逻辑输出区域
  163. for (i = 0; i < filesinfo.length; i++) {
  164. //获取文件的信息
  165. _isencryp = (filesinfo[i]["UserDirectoryEncrypt"] && filesinfo[i]["UserDirectoryEncrypt"] != _userid); //判断文件夹是否是加密属性
  166. _date = U.UF.D.formatDateToArray(filesinfo[i]["UserDirectoryAddTime"], "Array"); //获取文件的创建时间数组 返回值包含 [年, 月, 日]
  167. _icon = U.MD.DK.C.getIcon(filesinfo[i].UserDirectoryExtendType); //根据文件扩展名,得到图标的样式
  168. //创建一个文件夹图标或者文件图标。
  169. _viewel = $$("div", {
  170. "title": filesinfo[i]["UserallDirectoryName"],
  171. "className": "U_MD_DK_RZO",
  172. "id": "R" + (filesinfo[i].UserDirectoryID),
  173. "onmousedown": function () {
  174. var _isindex = _diskinfo.selectElement.indexOf(this); //元素是否在多选元素的位置
  175. if (_isindex > -1) {
  176. U.UF.EV.stopBubble(); //onmousedown设置阻止冒泡
  177. }
  178. },
  179. "oncontextmenu": U.UF.C.closure(function (fileinfo) {
  180. U.UF.EV.stopBubble();
  181. U.UF.EV.stopDefault();
  182. U.MD.DK.RM.rightMenu(this, fileinfo, US.disk.UserDisk); //右键菜单
  183. }, [filesinfo[i]])
  184. }, _frag);
  185. //设置点击事件
  186. if (filesinfo[i].filetype == "1") { //普通文件的处理
  187. _viewel.onclick = U.UF.C.closure(function (fileinfo) {
  188. U.MD.DK.LE.openFileDirectory(fileinfo, _userid);
  189. }, [filesinfo[i]]);
  190. }
  191. else { //文件夹的处理,文件夹的处理这里加一个前进后退的添加
  192. _viewel.onclick = U.UF.C.closure(function (fileinfo) {
  193. U.MD.DK.LE.openFileDirectory(fileinfo, _userid);
  194. }, [filesinfo[i]]);
  195. }
  196. //图标处理
  197. _imgicon = "";
  198. _iconel = $$("div", { "className": "U_MD_DK_RZOA" }, _viewel);
  199. //文件夹处理
  200. if (filesinfo[i].filetype != 1) {
  201. //加密的处理
  202. if (_isencryp) {
  203. _imgicon = "U_MD_DK_Img U_MD_DK_RZOM";
  204. }
  205. //未加密的处理
  206. else {
  207. _imgicon = "U_MD_DK_Img U_MD_DK_RZOW";
  208. }
  209. }
  210. //根据上面根据类型获取的图标输出图标样式
  211. else if (_icon.classname[1]) {
  212. _imgicon = "U_MD_DK_Img " + _icon.classname[1];
  213. }
  214. _imgeel = $$("div", { "className": "U_MD_DK_RZOS " + _imgicon }, _iconel);
  215. //如果图标是空图标,给空图标写入后缀名
  216. if (_icon.name == "文件") {
  217. $$("div", { "className": "U_MD_DK_RZOSZ", "innerHTML": filesinfo[i].UserDirectoryExtendType || "" }, _imgeel);
  218. }
  219. else if (!_icon.classname[1]) {
  220. $$("img", {
  221. "onerror": U.MD.C.imgError,
  222. "onerror": function () {
  223. U.MD.C.imgError(this, 1);
  224. },
  225. "title": "点击查看",
  226. "src": U.MD.C.getHeadImage(filesinfo[i].UserDirectoryUrl)
  227. }, _imgeel);
  228. }
  229. //目录名输出
  230. _infoel = $$("div", { "className": "U_MD_DK_RZOZO" }, _iconel);
  231. $$("div", { "className": "U_MD_DK_RZOZ", "innerHTML": filesinfo[i]["UserallDirectoryName"] }, _infoel);
  232. //大小
  233. _infoel = $$("div", { "className": "U_MD_DK_RZOFXJ U_MD_D_Text_Abbreviation" }, _infoel);
  234. $$("span", { "className": "U_MD_DK_RZOFXJO", "innerHTML": _date[0] + "-" + _date[1] + "-" + _date[2] }, _infoel);
  235. $$("span", { "className": "U_MD_DK_RZOFXJT", "innerHTML": U.UF.UP.minUnitToMaxUnit(filesinfo[i]["UserDirectorySize"]) }, _infoel);
  236. //线面输入文件归属用户的信息 头像和名字
  237. _infoel = $$("div", { "className": "U_MD_DK_RZOF" }, _viewel);
  238. _infoel = $$("div", { "className": "U_MD_DK_RZOFD" }, _infoel);
  239. _userimg = $$("div", { "className": "U_MD_DK_RZOFDI" }, _infoel);
  240. //用户头像输出
  241. $$("img", {
  242. "onerror": U.MD.C.imgError,
  243. "onerror": U.MD.C.imgError, "title": "点击查看",
  244. "src": U.MD.C.getHeadImage(filesinfo[i].UserThumbnailImageHead),
  245. "onclick": function () {
  246. U.UF.EV.stopBubble(); U.MD.U.V.ViewOtherUserInfo(filesinfo[i].UserId);
  247. }
  248. }, _userimg);
  249. //归属用户名输出
  250. $$("div", { "className": "U_MD_DK_RZOFDN U_MD_D_Text_Abbreviation", "innerHTML": filesinfo[i].UserNickName || filesinfo[i]["UserallDirectoryName"] }, _infoel);
  251. }
  252. //追加元素
  253. $(el).append(_frag); // , 0, el.firstChild
  254. }
  255. /**
  256. * 详细视图输出
  257. * @param {array} 需要输出的文件或者文件夹信息
  258. * @param {element} 输出到那个区域
  259. **/
  260. U.MD.DK.VW.printDetailedView = function (filesinfo, el) {
  261. //变量定义区域
  262. var i, //用于循环
  263. _isencryp, //判断文件夹是否加密处理
  264. _date, //文件当前使用时间
  265. _icon, //获取文件的icon样式,包含多种
  266. _iconandnameel, //图标和名字展示的区域
  267. _ischecked = false, //判断文件是否给选中
  268. _userimg, //用户头像
  269. _frag = $$("frag"), //临时panel
  270. _userid = US.disk.UserDisk.userInfo.UserId //当前使用用户的id
  271. ;
  272. //逻辑输出区域
  273. for (i = 0; i < filesinfo.length; i++) {
  274. //获取文件的信息
  275. _isencryp = (filesinfo[i]["UserDirectoryEncrypt"] && filesinfo[i]["UserDirectoryEncrypt"] != _userid); //判断文件夹是否是加密属性
  276. _date = U.UF.D.formatDateToArray(filesinfo[i]["UserDirectoryAddTime"]); //获取文件的创建时间数组 返回值包含 [年, 月, 日]
  277. _icon = U.MD.DK.C.getIcon(filesinfo[i].UserDirectoryExtendType); //根据文件扩展名,得到图标的样式
  278. //创建一个文件夹图标或者文件图标。
  279. _viewel = $$("div", { "title": filesinfo[i]["UserallDirectoryName"], "className": "U_MD_DK_RZS U_MD_DK_RZXO", "id": "R" + (filesinfo[i].UserDirectoryID) }, _frag);
  280. //设置右键按钮的处理
  281. _viewel.oncontextmenu = function () {
  282. U.UF.EV.stopBubble();
  283. U.MD.DK.RM.rightMenu(_viewel, filesinfo[i], US.disk.UserDisk);
  284. };
  285. _viewel.onmousedown = function () {
  286. var _isindex = _diskinfo.selectElement.indexOf(this); //元素是否在多选元素的位置
  287. if (_isindex > -1) {
  288. U.UF.EV.stopBubble(); //onmousedown设置阻止冒泡
  289. }
  290. }
  291. //设置点击事件
  292. _viewel.onclick = U.UF.C.closure(function (fileinfo) {
  293. U.MD.DK.LE.openFileDirectory(fileinfo, _userid);
  294. }, [filesinfo[i]]);
  295. _iconandnameel = $$("div", { "className": "U_MD_DK_RZSO", "style": { "marginLeft": "0px" } }, _viewel);
  296. //多选的按钮设置
  297. $$("input", {
  298. "className": "U_MD_DK_RZSOI",
  299. "checked": _ischecked,
  300. "type": "checkbox",
  301. "onclick": function () {
  302. U.UF.EV.stopBubble();
  303. U.MD.DK.VW.checkFile(this);
  304. }
  305. }, _iconandnameel);
  306. _iconandnameel = $$("div", { "className": "U_MD_DK_RZSM U_MD_D_Text_Abbreviation" }, _viewel);
  307. //设置图标如果有图标设置图标,没有图标的是图片
  308. if (_icon.classname[2]) {
  309. $$("span", { "className": _icon.classname[2] + " U_MD_DK_RZSMI U_MD_DK_Img U_MD_D_Text_Abbreviation", "innerHTML": " &nbsp; &nbsp; &nbsp;" }, _iconandnameel);
  310. }
  311. else {
  312. $$("img", {
  313. "onerror": U.MD.C.imgError,
  314. "onerror": function () {
  315. U.MD.C.imgError(this, 1);
  316. },
  317. "title": "点击查看",
  318. "src": U.MD.C.getHeadImage(filesinfo[i].UserDirectoryUrl || (US.FILESYSTEMURL + filesinfo[i].UseFilesServerThumbnailName))
  319. }, _iconandnameel);
  320. }
  321. //文件名
  322. $$("span", { "className": "U_MD_DK_RZSMN", "innerHTML": filesinfo[i]["UserallDirectoryName"] }, _iconandnameel);
  323. //引用次数,暂时没有功能
  324. $$("div", { "className": "U_MD_DK_RZSF U_MD_DK_RZSFO U_MD_D_Text_Abbreviation", "innerHTML": 0 }, _viewel);
  325. //归属用户名字
  326. $$("div", { "className": "U_MD_DK_RZSL U_MD_D_Text_Abbreviation", "innerHTML": filesinfo[i]["UserNickName"] }, _viewel);
  327. //文件类别名字,如文件夹、图片等等
  328. $$("div", { "className": "U_MD_DK_RZSX U_MD_D_Text_Abbreviation", "innerHTML": _icon.name }, _viewel);
  329. //文件大小
  330. $$("div", { "className": "U_MD_DK_RZSD U_MD_D_Text_Abbreviation", "innerHTML": U.UF.UP.minUnitToMaxUnit(filesinfo[i]["UserDirectorySize"]) }, _viewel);
  331. //时间
  332. $$("div", { "className": "U_MD_DK_RZST U_MD_D_Text_Abbreviation", "innerHTML": _date[0] + "-" + _date[1] + "-" + _date[2] + " " + _date[3] + ":" + _date[4] }, _viewel);
  333. }
  334. //追加元素
  335. el.appendChild(_frag);
  336. }
  337. /**
  338. * 详细视图的大小变化使用
  339. * @param {array} 需要输出的文件或者文件夹信息
  340. * @param {element} 输出到那个区域
  341. **/
  342. U.MD.DK.VW.size = function (diskinfo) {
  343. var i, j, k, //循环变量
  344. _childel,
  345. _size = [0.1, 0.2, 0.1, 0.15, 0.15, 0.15, 0.14], //详细视图每一格的大小
  346. _contentel = $("#U_MD_DK_RZ", diskinfo.formel)[0], //内容元素
  347. _contentchildel = $(_contentel).Child(), //内容的子元素
  348. _navel = $(_contentel).prev()[0], //导航元素
  349. _navchildel = $(_navel).Child(), //导航的子元素
  350. _width = $(_contentel).width(), //获取编辑区域的长度
  351. _height = $(_contentel).height() //获取编辑区域的高度
  352. ;
  353. _navel.style.display = "block"; //导航按钮出现
  354. //视图格式处理,要满足有数据,没有数据不做任何处理
  355. if (_contentel.viewtype === "Detailed" && diskinfo.currentDirectoryFile.length) {
  356. for (i = 0; i < _size.length; i++) {
  357. //导航按钮区域处理
  358. for (j = 0; j < _navchildel.length; j += 2) {
  359. _navchildel[j].style.width = _width * _size[j / 2] + "px"; //导航按钮带下处理
  360. }
  361. //内容区域处理
  362. for (j = 0; j < _contentchildel.length; j++) {
  363. _childel = $(_contentchildel).Child();
  364. for (k = 0; k < _childel.length; k++) {
  365. _childel[k].style.width = _width * _size[k] + "px"; //内容区域大小处理
  366. }
  367. }
  368. }
  369. _navel.style.width = _width + "px"; //导航区域设置大小
  370. _contentel.style.height = _height + "px";
  371. }
  372. }
  373. /**
  374. * 全选文件
  375. * @param {element} 输出到那个区域
  376. * @param {string} 输出到那个区域
  377. **/
  378. U.MD.DK.VW.checkAllFile = function (el) {
  379. var i,
  380. _ischeck = el.checked, //选择的状态
  381. _classname = "U_MD_DK_RZS U_MD_DK_RZXO" + (_ischeck ? " U_MD_DK_RZXOO" : ""), //选择或者取消选择的样式
  382. _contentel = $($(el).Parent(2)).next()[0], //内容区域的元素
  383. _childel = $(_contentel).Child() //所有输出的文件或者文件夹
  384. ;
  385. for (i = 0; i < _childel.length; i++) {
  386. _childel[i].className = _classname; //样式处理
  387. $("input", _childel[i])[0].checked = _ischeck; //选中状态
  388. }
  389. }
  390. /**
  391. * 再详细视图下选择文件
  392. * @param {element} 输出到那个区域
  393. * @param {string} 输出到那个区域
  394. **/
  395. U.MD.DK.VW.checkFile = function (el) {
  396. var _ischeck = el.checked; //获取文件是选择还是取消选择
  397. //选择或者取消选择的处理
  398. $(el).Parent(2).className = "U_MD_DK_RZS U_MD_DK_RZXO" + (_ischeck ? " U_MD_DK_RZXOO" : "");
  399. }
  400. //#endregion
  401. //#region 选择保存位置窗口
  402. /**
  403. * 选择文件保存位置窗口打印
  404. * @param postfix {string} 文件后缀 文件类型
  405. * @param filename {string} 文件名
  406. * @param callback {function} 回调函数
  407. * @param formtitle {string} 窗体名称
  408. * @param extendtype {string} 显示的文件属性
  409. **/
  410. U.MD.DK.VW.chosenSaveFile = function (postfix, fileid, filename, callback, formtitle, extendtype) {
  411. if (!U.MD.U.L.isLogin()) {//是否登录
  412. extendtype = extendtype || "folder"; //默认只显示文件夹
  413. var _diskinfo = US.disk.Disks[US.userInfo.userid]; //获取当前登录用户的网盘信息
  414. var _formel = $('#U_MD_DK_VW_ChosenSaveFile')[0]; //获取窗体元素
  415. var _file; //定义变量
  416. if (_formel) { //判断窗体是否存在
  417. //存在则居中显示
  418. U.UF.F.windowTopCenter(_formel);
  419. //获取文件区域
  420. _file = $('#U_MD_DK_VW_ChosenSaveFile_File')[0];
  421. _file.innerHTML = "";
  422. $('.U_MD_DK_VW_ChosenSaveFile button', _formel)[1].onclick = function () {
  423. U.MD.DK.VW.chosenSaveFile.ensure(_formel, $('.U_MD_DK_VW_ChosenSaveFile input', _formel)[0], postfix, fileid, callback);
  424. }
  425. $('.U_MD_DK_VW_ChosenSaveFile input', _formel)[0].value = "";
  426. }
  427. else {
  428. var _box = $$('div', { style: { position: "relative", overflow: "hidden" }, "className": "U_MD_DK_VW_ChosenSaveFile" }); //创建文件区域容器
  429. var _newfolder = $$('button', { style: { position: "absolute", right: "0", top: "2px" }, innerHTML: "新建文件夹" }, _box); //创建新建文件夹按钮
  430. $$("div", { style: { "font-size": "16px", padding: "12px 10px 2px" }, innerHTML: "选择文件夹" }, _box); //创建标题
  431. $$("hr", {}, _box); //创建分割线
  432. _file = $$("div", { "className": "U_MD_DK_VW_ChosenSaveFile_File", id: "U_MD_DK_VW_ChosenSaveFile_File" }, _box); //创建文件区域
  433. var _inputarea = $$('div', {}, _box); //创建填写文件名区域
  434. $$('span', { 'innerHTML': '文件名:' }, _inputarea); //标题
  435. var _input = $$('input', { placeholder: filename || "请输入文件名...", style: { width: "89%", "text-indent": "5px", "line-height": "26px" } }, _inputarea); //文件名输入框
  436. var _ensure = $$('button', { innerHTML: "确定" }, _box); //确定按钮
  437. var _cancel = $$('button', { innerHTML: "取消" }, _box); //取消按钮
  438. //创建窗体
  439. _formel = new U.UF.UI.form(
  440. "<span id='U_MD_DK_VW_ChosenSaveFile_Title'>" + (formtitle || "新建文件") + "</span>",
  441. _box, {
  442. "id": "U_MD_DK_VW_ChosenSaveFile",
  443. "style": {
  444. "width": "600px",
  445. "height": "450px"
  446. }
  447. }).form;
  448. //绑定新建文件夹事件
  449. _newfolder.onclick = function () {
  450. U.MD.DK.VW.chosenSaveFile.newFolder();
  451. }
  452. //绑定确定按钮事件
  453. _ensure.onclick = function () {
  454. U.MD.DK.VW.chosenSaveFile.ensure(_formel, _input, postfix, fileid, callback);
  455. }
  456. //取消函数
  457. _cancel.onclick = function () {
  458. U.UF.F.windowMinimize(_formel);
  459. }
  460. }
  461. //默认创建初始化目录
  462. U.MD.DK.VW.chosenSaveFile.printFolder(_diskinfo.directoryOrFiles.slice(1, 8), _file, 0, ["U_MD_DK_LCD", "U_MD_DK_LCS", "U_MD_DK_LCD", "U_MD_DK_LCB", "U_MD_DK_LCF", "U_MD_DK_LCT", "U_MD_DK_LCP", "U_MD_DK_LCY"], _file, extendtype);
  463. }
  464. }
  465. /**
  466. * 答应文件夹函数
  467. * @param data {array} 数据源
  468. * @param filearea {Element} 创建文件位置
  469. * @param deviant {int} 偏移值
  470. * @param iconclass {array} 文件图标class
  471. * @param extendtype {string} 显示的文件属性
  472. **/
  473. U.MD.DK.VW.chosenSaveFile.printFolder = function (data, filearea, deviant, iconclass, topfilearea, extendtype) {
  474. extendtype = extendtype || "folder";
  475. var i, //定义循环变量
  476. _class; //定义样式记录属性
  477. for (i = 0; i < data.length; i++) { //循环答应
  478. _class = null;
  479. if (extendtype == "*" || extendtype.indexOf(extendtype) > -1) { //判断文件类型为文件夹才打印
  480. if ((iconclass || "").length) { //判断文件图片class是否有传入
  481. _class = iconclass[i] || iconclass; //设置样式名
  482. } else if (data[i].UserDirectoryExtendType == extendtype || extendtype == "*") { //判断其能否显示,是不是想要的文件类型
  483. switch (data[i].UserDirectoryExtendType) {
  484. case "folder":
  485. _class = "U_MD_DK_LCW"; //设置默样式名
  486. break;
  487. case "UW": case "txt": case "html": case "uw":
  488. _class = "U_MD_DK_LCB";
  489. break;
  490. case "jpg": case "png":
  491. _class = "U_MD_DK_LCT";
  492. break;
  493. case "mp4":
  494. _class = "U_MD_DK_LCP";
  495. break;
  496. }
  497. }
  498. if (_class) { //判断其是否有样式,没有就不打印
  499. U.MD.DK.VW.chosenSaveFile.Print(data[i], filearea, deviant, _class, topfilearea, extendtype); //调用单个打印函数
  500. }
  501. }
  502. }
  503. }
  504. /**
  505. * 打印文件夹函数
  506. * @param data {object} 数据源
  507. * @param filearea {Element} 创建文件位置
  508. * @param deviant {int} 偏移值
  509. * @param iconclass {string} 文件图标class
  510. * @param extendtype {string} 显示的文件属性
  511. **/
  512. U.MD.DK.VW.chosenSaveFile.Print = function (data, filearea, deviant, iconclass, topfilearea, extendtype) {
  513. var _filediv, _fileel, _folder; //设置变量
  514. _folder = false; //
  515. if (data.UserDirectoryExtendType == "folder") {//判断文件是否是文件夹
  516. _folder = true;
  517. };
  518. _filediv = $$('div', { "className": "U_MD_DK_VW_ChosenSaveFile_File_Box" }, filearea); //创建单个文件区域
  519. _fileel = $$('div', {
  520. id: data["UserDirectoryID"] ? "CS" + data["UserDirectoryID"] : "",
  521. "className": "U_MD_DK_LTXOS",
  522. style: { 'padding-left': deviant + 'px' },
  523. onclick: U.UF.C.closure(function (directoryinfo, el) { //设置点击事件
  524. var _thisdate = data;
  525. var _thisfolder = _folder;
  526. U.UF.EV.stopBubble();
  527. if (_thisfolder) {//判断点击的是否是文件夹
  528. //如果是文件夹,就打开文件夹
  529. U.MD.DK.VW.chosenSaveFile.forderClick(directoryinfo, el, topfilearea, extendtype);
  530. //并且在选择该文件夹
  531. if ($('.U_MD_DK_VW_ChosenSaveFileName')[0]) {
  532. $('.U_MD_DK_VW_ChosenSaveFileName')[0].value = data.UserallDirectoryName;
  533. $('.U_MD_DK_VW_ChosenSaveFileName')[0].data = data;
  534. }
  535. } else {
  536. //不是文件夹就选择该文件
  537. if ($('.U_MD_DK_VW_ChosenSaveFileName')[0]) {
  538. $('.U_MD_DK_VW_ChosenSaveFileName')[0].value = data.UserallDirectoryName;
  539. $('.U_MD_DK_VW_ChosenSaveFileName')[0].data = data;
  540. }
  541. }
  542. }, [data, _filediv])
  543. }, _filediv); //创建文件
  544. if (_folder) {
  545. $$('div', { className: "U_MD_DK_LTXOSI U_MD_DK_Img" }, _fileel); //创建文件角标
  546. } else {
  547. $$('div', { className: "U_MD_DK_LTXOSI" }, _fileel); //不创建文件角标
  548. }
  549. $$('div', { className: "U_MD_DK_LCOI U_MD_DK_LTXOST U_MD_DK_Img " + iconclass }, _fileel); //创建文件icon
  550. $$('span', { innerHTML: data.UserallDirectoryName }, _fileel); //创建文件名
  551. return _filediv; //返回创建的文件元素
  552. }
  553. /**
  554. * 文件夹展开关闭函数
  555. * @param directoryinfo {object} 文件夹信息
  556. * @param el {Element} 文件位置
  557. * @param extendtype {string} 显示的文件属性
  558. **/
  559. U.MD.DK.VW.chosenSaveFile.forderClick = function (directoryinfo, el, topfilearea, extendtype) {
  560. var //_filearea = $('.U_MD_DK_VW_ChosenSaveFile_File')[0], //获取文件区域
  561. _folder = $(el).Child()[0], //获取每个文件
  562. _deviant = parseInt(_folder.style.paddingLeft || 0) + 5; //计算偏移值
  563. var _icon = $('.U_MD_DK_LTXOSI', _folder); //获取角标
  564. $('.U_MD_DK_LTXOSO', topfilearea).removeClass('U_MD_DK_LTXOSO'); //清楚上一个选择的文件背景
  565. $(_folder).addClass('U_MD_DK_LTXOSO'); //设置当前文件背景为选中
  566. if (_icon.hasClass('U_MD_DK_LTXOSIO')) { //判断文件是否展开
  567. //已展开
  568. _icon.removeClass('U_MD_DK_LTXOSIO'); //清楚展开角标样式
  569. var _nextlevel = $(_folder).next(); //判断是否加载了子文件夹
  570. $(_nextlevel).remove(); //删除子文件夹
  571. } else {
  572. //未展开
  573. _icon.addClass('U_MD_DK_LTXOSIO'); //添加角标打开class
  574. if (directoryinfo.Child) { //判断是否已获取子文件数据
  575. //已获取
  576. U.MD.DK.VW.chosenSaveFile.printFolder(directoryinfo.Child, $$('div', {}, el), _deviant, null, null, extendtype); //打印子级文件夹
  577. } else {
  578. //未获取则去数据库获取
  579. U.MD.DK.LE.getChildsByDirectoryId(US.userInfo.userid, directoryinfo, topfilearea, function () {
  580. //打印文件夹
  581. U.MD.DK.VW.chosenSaveFile.printFolder(directoryinfo.Child, $$('div', {}, el), _deviant, null, null, extendtype);
  582. });
  583. }
  584. }
  585. }
  586. /**
  587. * 确定按钮函数
  588. * @param formel {object} 文件夹信息
  589. * @param input {Element} 文件名输入框
  590. * @param postfix {string} 文件后缀名
  591. * @param callback {function} 回调函数
  592. **/
  593. U.MD.DK.VW.chosenSaveFile.ensure = function (formel, input, postfix, fileid, callback) {
  594. var _name = input.value; //获取文件名
  595. if (_name.trim() == "") { //判断是否为空
  596. return U.Alert('请填写文件名!');
  597. }
  598. //判断文件名是否符合规范
  599. if (U.UF.S.ZWFileName.test(_name)) {
  600. var _nowfile = $('.U_MD_DK_LTXOSO', formel)[0]; //获取当前选择的文件夹
  601. if (!_nowfile) { //如果获取不到则为未选择
  602. U.Alert('请选择文件夹新建的目录!'); //提示未选择文件
  603. } else {
  604. var _parentid = _nowfile.id.replace('CS', ''); //获取文件目录ID
  605. var _userid = US.userInfo.userid; //获取用户ID
  606. var _diskinfo = US.disk.Disks[_userid]; //获取用户网盘信息
  607. var _dirinfo = U.Json.select(_diskinfo.directoryOrFiles, { UserDirectoryID: _parentid })[0]; //获取文件夹信息
  608. if (!U.MD.DK.C.getDirectoryPermissions(_dirinfo.UserDirectoryID, _diskinfo).isnew) {
  609. return U.Alert(_dirinfo.Child.length ? '分类目录无法操作,请选择群文件或文件夹!' : '分类目录无法操作,请新建群或者选择其他群文件夹'); //提示未选择文件
  610. }
  611. //获取粘贴到制定目录的群id
  612. _ancestors = U.MD.DK.C.getAncestors(_dirinfo, _diskinfo); //获取所有的祖先
  613. //如果是ftp目录,那么groupid就是用户id
  614. if (_ancestors[0].UserDirectoryID == US.FTPFOLDERID) {
  615. _groupid = _diskinfo.userInfo.UserId;
  616. }
  617. //否则就是对应的群id,如果不存在那么就是""
  618. else {
  619. _groupid = _ancestors[0].GroupID || "";
  620. }
  621. var _newfileid = fileid || Guid.newGuid();
  622. //去数据库添加文件
  623. U.A.Request(US.DISK, ["CreateFile", _userid, _newfileid, _parentid, _name, "", "", "", postfix, _groupid], function (r) {
  624. //创建文件
  625. var _fileinfo = new U.MD.DK.M.entity(_newfileid, 0, _parentid, _name, _name, postfix, "", U.UF.D.toTimeStamp(), "", "9999", null, "", 1, "", _groupid, "", _userid, US.userInfo.UserNickName, US.userInfo.username, US.userInfo.UserThumbnailImageHead)
  626. U.MD.DK.RE.addFileOrFolder([_fileinfo], _diskinfo, _dirinfo); //添加到页面上中
  627. U.UF.F.windowMinimize(formel);
  628. //如果存在就执行
  629. if (U.UF.C.isFunction(callback)) {//判断是否有点击事件的方法,如果有,运行它
  630. callback(_fileinfo);
  631. }
  632. }, []);
  633. }
  634. } else {
  635. //不符合规范
  636. U.Alert('请填写文件名符合规范!');
  637. }
  638. }
  639. /**
  640. * 新建文件夹函数
  641. *
  642. **/
  643. U.MD.DK.VW.chosenSaveFile.newFolder = function () {
  644. var _nowfile = $('.U_MD_DK_VW_ChosenSaveFile_File .U_MD_DK_LTXOSO')[0]; //获取当前选择的文件夹
  645. if (!_nowfile) { //如果获取不到则为未选择
  646. return U.Alert('请选择文件夹新建的目录!'); //提示未选择文件
  647. }
  648. var _userid = US.userInfo.userid; //获取用户ID
  649. var _parentid = _nowfile.id.replace('CS', ''); //获取文件目录ID
  650. var _diskinfo = US.disk.Disks[_userid]; //获取用户网盘信息
  651. if (_diskinfo.directoryOrFiles[0].UserDirectoryID == _parentid || _diskinfo.directoryOrFiles[1].UserDirectoryID == _parentid || _diskinfo.directoryOrFiles[2].UserDirectoryID == _parentid) {//新建文件权限
  652. U.Alert('该目录下无法新建文件夹,请重新选择目录!');
  653. } else {
  654. //创建新建文件名输入框
  655. var _input = $$('input', { placeholder: "请输入文件夹名字...", style: { width: '180px', height: "25px", margin: "30px auto", display: "block", "text-indent": "5px" } });
  656. //创建提示框
  657. U.UF.UI.confirm(_input, function () {
  658. //确定函数
  659. var _name = _input.value; //获取输入文件夹名字
  660. if (U.UF.S.ZWFileName.test(_name)) { //判断文件名是否符合规范
  661. var _dirinfo = U.Json.select(_diskinfo.directoryOrFiles, { UserDirectoryID: _parentid })[0]; //获取文件夹信息
  662. //获取粘贴到制定目录的群id
  663. _ancestors = U.MD.DK.C.getAncestors(_dirinfo, _diskinfo); //获取所有的祖先
  664. //如果是ftp目录,那么groupid就是用户id
  665. if (_ancestors[_ancestors.length - 1].UserDirectoryID == US.FTPFOLDERID) {
  666. _groupid = _diskinfo.userInfo.UserId;
  667. }
  668. //否则就是对应的群id,如果不存在那么就是""
  669. else {
  670. _groupid = _ancestors[_ancestors.length - 1].GroupID || "";
  671. }
  672. var _newfolderid = Guid.newGuid(); //随机生成文件夹ID
  673. //填写文件名符合规范 将文件夹以及文件夹名字保存到数据库
  674. U.A.Request(US.DISK, ["CreateDirectory", _userid, _newfolderid, _dirinfo.UserDirectoryDeep + 1, _name, _parentid, "", _groupid, ""], //保存到数据库
  675. function (r) {
  676. //异步回调函数
  677. var _nextlevel = $(_nowfile).next()[0] || $$('div', {}, $(_nowfile).Parent()); //获取或选择自己文件夹创建位置
  678. var _fileinfo = new U.MD.DK.M.entity(_newfolderid, 0, _parentid, _name, _name, "folder", "", U.UF.D.toTimeStamp(), "", _dirinfo.UserDirectoryDeep + 1,
  679. null, "", 0, "", _groupid, "", _userid, US.userInfo.UserNickName, US.userInfo.username, US.userInfo.UserThumbnailImageHead); //创建本地文件信息
  680. U.MD.DK.RE.addFileOrFolder([_fileinfo], _diskinfo, _dirinfo); //添加到页面上中
  681. _filediv = U.MD.DK.VW.chosenSaveFile.Print(_fileinfo, _nextlevel, parseInt(_nowfile.style.paddingLeft || 0) + 6, "U_MD_DK_LCW"); //打印新建文件夹
  682. _nextlevel.insertBefore(_filediv, $(_nextlevel).Child()[0]); //在最前方插入
  683. });
  684. } else {
  685. //提示文件名不符合规范
  686. U.Alert('请填写文件名符合规范!');
  687. return false;
  688. }
  689. });
  690. }
  691. }
  692. //#endregion
  693. //#region 保存到指定协同群窗口
  694. /**
  695. * 保存到指定协同群窗口
  696. *
  697. * @param postfix {string} 文件后缀 文件类型
  698. * @param fileinfo {object} 文件信息
  699. * @param filename {string} 文件名
  700. * @param type {string} 操作类型 move 移动 new 新建
  701. * @param callback {function} 回调函数
  702. *
  703. **/
  704. U.MD.DK.VW.saveSynergy = function (postfix, fileinfo, filename, type, callback) {
  705. if (!U.MD.U.L.isLogin()) {//是否登录
  706. var _grouplistarr = US.disk.Disks[US.userInfo.userid]; //获取当前登录用户的网盘信息
  707. var _formel = $('#U_MD_O_SaveSynergy')[0]; //获取窗体元素
  708. var _grouplist; //定义变量
  709. if (_formel) { //判断窗体是否存在
  710. //存在则居中显示
  711. U.UF.F.windowTopCenter(_formel);
  712. //获取文件区域
  713. _grouplist = $('#U_MD_O_SaveSynergy_GroupList')[0];
  714. _grouplist.innerHTML = "";
  715. $('.U_MD_DK_VW_ChosenSaveFile button', _formel)[1].onclick = function () {
  716. U.MD.DK.VW.saveSynergy.ensure(_formel, $('.U_MD_DK_VW_ChosenSaveFile input', _formel)[0], postfix, fileinfo, type, callback);
  717. }
  718. $('.U_MD_DK_VW_ChosenSaveFile input', _formel)[0].value = "";
  719. }
  720. else {
  721. var _box = $$('div', { style: { position: "relative", overflow: "hidden" }, "className": "U_MD_DK_VW_ChosenSaveFile" }); //创建文件区域容器
  722. var _creategroup = $$('button', { style: { position: "absolute", right: "0", top: "-2px" }, innerHTML: "新建群", id: "U_MD_O_SaveSynergy_CreateGroup", onclick: 'U.MD.DK.VW.saveSynergy.swith()' }, _box); //创建新建文件夹按钮
  723. $$("div", { style: { "font-size": "16px", padding: "6px 10px 7px" }, innerHTML: "群列表" }, _box); //创建标题
  724. $$("hr", {}, _box); //创建分割线
  725. var _newgroup = $$("div", { "className": "U_MD_DK_VW_ChosenSaveFile_File", id: "U_MD_O_SaveSynergy_NewGroup", style: { display: 'none', overflow: 'hidden' } }, _box); //创建文件区域
  726. _grouplist = $$("div", { "className": "U_MD_DK_VW_ChosenSaveFile_File", id: "U_MD_O_SaveSynergy_GroupList" }, _box); //创建文件区域
  727. var _inputarea = $$('div', {}, _box); //创建填写文件名区域
  728. $$('span', { 'innerHTML': '文件名:' }, _inputarea); //标题
  729. var _input = $$('input', {
  730. placeholder: "请输入文件名...",
  731. value: filename == "未命名文档(点击编辑)..." ? "" : filename,
  732. //onfocus: "U.UF.MR.inputPlaceholder(this,'未命名文档(点击编辑)...','')",
  733. //onblur: "U.UF.MR.inputPlaceholder(this,'','未命名文档(点击编辑)...');",
  734. style: { width: "89%", "text-indent": "5px", "line-height": "26px" }
  735. }, _inputarea); //文件名输入框
  736. var _ensure = $$('button', { innerHTML: "确定" }, _box); //确定按钮
  737. var _cancel = $$('button', { innerHTML: "取消" }, _box); //取消按钮
  738. //创建窗体
  739. _formel = new U.UF.UI.form(
  740. "<span id='U_MD_O_SaveSynergy_Title'>" + (type == 'move' ? "将文档移动到" : "选择保存到") + "指定群</span>",
  741. _box, {
  742. "id": "U_MD_O_SaveSynergy",
  743. "style": {
  744. "width": "600px",
  745. "height": "450px"
  746. }
  747. }).form;
  748. //绑定确定按钮事件
  749. _ensure.onclick = function () {
  750. U.MD.DK.VW.saveSynergy.ensure(_formel, _input, postfix, fileinfo, type, callback);
  751. }
  752. //取消函数
  753. _cancel.onclick = function () {
  754. U.UF.F.windowMinimize(_formel);
  755. }
  756. }
  757. //打印文件
  758. U.MD.DK.VW.chosenSaveFile.printFolder(_grouplistarr.directoryOrFiles.slice(1, 3), _grouplist, 0, ["U_MD_DK_LCD", "U_MD_DK_LCS"]);
  759. //默认切换 选择群状态
  760. U.MD.DK.VW.saveSynergy.swith(true);
  761. }
  762. };
  763. /**
  764. * 保存到指定协同群窗口 确定函数
  765. *
  766. * @param formel {element} 窗体元素
  767. * @param input {element} 文件名输入框
  768. * @param postfix {string} 文件后缀 文件类型
  769. * @param fileinfo {object} 文件信息
  770. * @param type {string} 操作类型 move 移动 new 新建
  771. * @param callback {function} 回调函数
  772. *
  773. **/
  774. U.MD.DK.VW.saveSynergy.ensure = function (formel, input, postfix, fileinfo, type, callback) {
  775. var _name = input.value; //获取文件名
  776. if (_name.trim() == "") { //判断是否为空
  777. return U.Alert('请填写文件名!');
  778. }
  779. //判断文件名是否符合规范
  780. if (U.UF.S.ZWFileName.test(_name)) {
  781. var _dirinfo;
  782. var _userid = US.userInfo.userid; //获取用户ID
  783. var _diskinfo = US.disk.Disks[_userid]; //获取用户网盘信息
  784. if ($('#U_MD_O_SaveSynergy_GroupList').css('display') == 'none') {
  785. var _groupName = '协同文档群--' + new Date().getHours() + ":" + new Date().getMinutes(), //默认群名/也是文档名
  786. _groupDesc = "由" + US.userInfo.username + "发起的互联办公群组。";
  787. U.MD.F.J.determineCreateGroupAndAddGroupUser(false, null, null, false, _groupName, _groupDesc, function (groupid) {
  788. _dirinfo = U.Json.select(_diskinfo.directoryOrFiles, { UserDirectoryID: groupid })[0]; //获取文件夹信息
  789. U.MD.DK.VW.saveSynergy.ensure.operate(formel, _dirinfo, fileinfo, groupid, groupid, type, postfix, _name, callback);
  790. });
  791. } else {
  792. var _groupid, _parentid;
  793. var _nowfile = $('.U_MD_DK_LTXOSO', formel)[0]; //获取当前选择的文件夹
  794. _parentid = _nowfile.id.replace('CS', ''); //获取文件目录ID
  795. _dirinfo = U.Json.select(_diskinfo.directoryOrFiles, { UserDirectoryID: _parentid })[0]; //获取文件夹信息
  796. if (!U.MD.DK.C.getDirectoryPermissions(_dirinfo.UserDirectoryID, _diskinfo).isnew) {
  797. return U.Alert(_dirinfo.Child.length ? '分类目录无法操作,请选择群文件或文件夹!' : '分类目录无法操作,请新建群或者选择其他群文件夹'); //提示未选择文件
  798. }
  799. //获取粘贴到制定目录的群id
  800. _ancestors = U.MD.DK.C.getAncestors(_dirinfo, _diskinfo); //获取所有的祖先
  801. //如果是ftp目录,那么groupid就是用户id
  802. if (_ancestors[0].UserDirectoryID == US.FTPFOLDERID) {
  803. _groupid = _diskinfo.userInfo.UserId;
  804. }
  805. //否则就是对应的群id,如果不存在那么就是""
  806. else {
  807. _groupid = _ancestors[0].GroupID || "";
  808. }
  809. U.MD.DK.VW.saveSynergy.ensure.operate(formel, _dirinfo, fileinfo, _parentid, _groupid, type, postfix, _name, callback);
  810. }
  811. } else {
  812. U.Alert('请填写文件名符合规范!');
  813. }
  814. }
  815. /**
  816. * 执行对应操作函数
  817. *
  818. * @param formel {element} 窗体元素
  819. * @param dirinfo {object} 文件夹信息
  820. * @param fileinfo {object} 文件信息
  821. * @param parentid {string} 文件目录ID
  822. * @param groupid {string} 群ID
  823. * @param type {string} 操作类型 move 移动 new 新建
  824. * @param postfix {string} 文件后缀 文件类型
  825. * @param name {string} 文件名
  826. * @param callback {function} 回调函数
  827. *
  828. **/
  829. U.MD.DK.VW.saveSynergy.ensure.operate = function (formel, dirinfo, fileinfo, parentid, groupid, type, postfix, name, callback) {
  830. var _fileid = fileinfo.UserDirectoryID;
  831. var _userid = US.userInfo.userid; //获取用户ID
  832. var _diskinfo = US.disk.Disks[_userid]; //获取用户网盘信息
  833. if (type == "move") {
  834. var _pastecontent = US.disk.Disks[_userid].pasteDirOrFile = {
  835. "type": "shear", //复制或者剪切 "copy" || "shear"
  836. "UserDirectoryID": groupid, //在哪个目录复制或者剪切
  837. "dirorfile": fileinfo, //复制的内容
  838. "userid": _userid //用户id
  839. }
  840. U.A.Request(US.DISK, ["CutAndPasteFiles", fileinfo.UserId, groupid, fileinfo.UserDirectoryID, groupid, groupid],
  841. top.U.MD.DK.RE.asynPaste, ["", dirinfo, groupid, _pastecontent, _diskinfo]);
  842. U.A.Request(US.DISK, ["UpdateFileInfo", _fileid, name], function () {
  843. fileinfo.UserallDirectoryName = name; //文件全写的名字
  844. fileinfo.UserDirectoryName = name.addEllipsis(20); //文件的缩略名
  845. fileinfo.GroupId = fileinfo.UserDirectoryEncrypt = groupid;
  846. //如果存在就执行
  847. if (U.UF.C.isFunction(callback)) {//判断是否有点击事件的方法,如果有,运行它
  848. callback(fileinfo);
  849. }
  850. U.UF.F.windowMinimize(formel);
  851. });
  852. } else {
  853. //去数据库添加文件
  854. U.A.Request(US.DISK, ["CreateFile", _userid, _fileid, parentid, name, "", "", "", postfix, groupid], function (r) {
  855. //创建文件
  856. var _fileinfo = new U.MD.DK.M.entity(_fileid, 0, parentid, name, name, postfix, "", U.UF.D.toTimeStamp(), "", "9999", null, "", 1, "", groupid, "", _userid, US.userInfo.UserNickName, US.userInfo.username, US.userInfo.UserThumbnailImageHead)
  857. U.MD.DK.RE.addFileOrFolder([_fileinfo], _diskinfo, dirinfo); //添加到页面上中
  858. U.UF.F.windowMinimize(formel);
  859. //如果存在就执行
  860. if (U.UF.C.isFunction(callback)) {//判断是否有点击事件的方法,如果有,运行它
  861. callback(_fileinfo);
  862. }
  863. U.UF.F.windowMinimize(formel);
  864. }, []);
  865. }
  866. }
  867. /**
  868. * 选择群、新建群方式切换
  869. *
  870. * @param init {boole} 是否为默认状态 选择群状态
  871. *
  872. **/
  873. U.MD.DK.VW.saveSynergy.swith = function (init) {
  874. var _newgroup = $('#U_MD_O_SaveSynergy_NewGroup'); //新建群元素
  875. var _grouplist = $('#U_MD_O_SaveSynergy_GroupList'); //群列表
  876. var _creategroup = $('#U_MD_O_SaveSynergy_CreateGroup'); //按钮
  877. if (_newgroup.css('display') == 'none' && !init) { //是否为新建群状态
  878. _newgroup.css('display', 'block'); //新建群元素显示
  879. _grouplist.css('display', 'none'); //选择群元素影藏
  880. _creategroup[0].innerHTML = "返回群列表"; //修改按钮提示字
  881. _creategroup[0].nextElementSibling.innerHTML = "选择联系人"; //修改标题
  882. if (_newgroup.Child().length == 0) { //判断初始化窗体是否打印
  883. U.MD.DK.VW.saveSynergy.createGroupInit(); //未打印则执行打印
  884. }
  885. U.MD.DK.VW.saveSynergy.Friends(); //打印可选好友
  886. } else {
  887. _newgroup.css('display', 'none'); //新建群元素显隐藏
  888. _grouplist.css('display', 'block'); //选择群元素显示
  889. _creategroup[0].innerHTML = "新建群"; //修改按钮提示字
  890. _creategroup[0].nextElementSibling.innerHTML = "群列表"; //修改标题
  891. }
  892. }
  893. /**
  894. * 新建群区域初始化
  895. *
  896. **/
  897. U.MD.DK.VW.saveSynergy.createGroupInit = function () {
  898. var _newgroup = $('#U_MD_O_SaveSynergy_NewGroup')[0];
  899. var _left = $$('div', { style: { borderRight: "1px solid #ccc", position: "relative" } }, _newgroup);
  900. var _right = $$('div', { style: { overflow: "hidden" } }, _newgroup);
  901. var _count = $$('div', { style: { lineHeight: '30px' }, innerHTML: '已选择联系人:<span>1</span>' }, _right);
  902. var _select = $$('div', { id: "U_MD_O_SaveSynergy_NewGroup_Select", style: { height: '265px', overflow: 'auto' } }, _right);
  903. var _box = $$('div', { "className": 'U_MD_O_SaveSynergy_NewGroup_Friend', style: { paddingLeft: '5px' } }, _select);
  904. $$('img', { "onerror": U.MD.C.imgError, src: U.MD.C.getHeadImage(US.userInfo.UserThumbnailImageHead) }, _box);
  905. $$('span', { innerHTML: US.userInfo.UserNickName || US.userInfo.username }, _box);
  906. }
  907. /**
  908. * 打印好友列表
  909. *
  910. **/
  911. U.MD.DK.VW.saveSynergy.Friends = function () {
  912. var i, _box, //定义变量
  913. _friends = US.friend.friends; //好友列表
  914. var _child = $('#U_MD_O_SaveSynergy_NewGroup').Child(); //获取新建群区域的子级
  915. var _friendel = _child[0]; //获取好友列表区域
  916. var _countel = $('span', $(_child[1]).Child()[0])[0]; //获取选择计数元素
  917. var _selectel = $("#U_MD_O_SaveSynergy_NewGroup_Select"); //获取选中好友列表
  918. _friendel.innerHTML = ""; //清空好友列表
  919. _countel.innerHTML = "1"; //设置默认选择人数为1 默认选择自己
  920. U.MD.F.J.selectUserInfo.NeedUser = []; //清空选中全局
  921. var _oldfriend = _selectel.Child(); //获取遗留选中好友
  922. //清除遗留选中好友
  923. for (i = 1; i < _oldfriend.length; i++) {
  924. $(_oldfriend[i]).remove();
  925. }
  926. //如果存在好友
  927. if (_friends.length > 0) {
  928. //循环打印好友
  929. for (i = 0; i < _friends.length; i++) {
  930. //创建好友盒子
  931. var _box = $$('div', {
  932. "className": 'U_MD_O_SaveSynergy_NewGroup_Friend', onclick: U.UF.C.closure(function (friendinfo) {
  933. U.MD.DK.VW.saveSynergy.Friends.Select(friendinfo, _selectel[0], _countel);
  934. }, [_friends[i]]), friendid: _friends[i].FriendsID
  935. }, _friendel);
  936. //创建头像
  937. $$('img', { "onerror": U.MD.C.imgError, src: U.MD.C.getHeadImage(_friends[i].UserThumbnailImageHead) }, _box);
  938. //创建用户名
  939. $$('span', { innerHTML: _friends[i].UserNickName || _friends[i].UserName }, _box);
  940. }
  941. }
  942. //如果不存在好友
  943. else {
  944. //创建提示字
  945. $$('p', {
  946. style: { cssText: "font-weight: bold; font-size: 14px;padding-left:60px;padding-top:60px;" },
  947. innerHTML: '您暂无添加好友,</br> 快去<span style="cursor:pointer;color:rgb(41, 103, 167);" onclick="U.MD.F.S.popSearchFriendsOrGroupForm(0);">添加你的好友</span>吧。 </br>'
  948. }, _friendel);
  949. //创建刷新按钮
  950. $$('span', {
  951. innerHTML: "已添加完好友点击刷新好友列表", onclick: function () {
  952. U.UF.DL.loading(_friendel);
  953. setTimeout(function () { U.MD.DK.VW.saveSynergy.Friends(); U.UF.DL.uploading(_friendel); }, 300);
  954. }, style: { color: "red", cursor: "pointer", position: "absolute", bottom: "0px", fontSize: "12px" }
  955. }, _friendel);
  956. }
  957. }
  958. /**
  959. * 选择好友操作
  960. *
  961. * @param friendinfo {object} 好友信息
  962. * @param selectel {element} 选中好友列表区域
  963. * @param countel {element} 计数元素
  964. *
  965. **/
  966. U.MD.DK.VW.saveSynergy.Friends.Select = function (friendinfo, selectel, countel) {
  967. var i, //定义变量
  968. _isselect = U.Json.select(U.MD.F.J.selectUserInfo.NeedUser, { UserId: friendinfo.UserId })[0]; //判断是否已选中
  969. if (!_isselect) { //如果未选中
  970. countel.innerHTML = parseInt(countel.innerHTML) + 1; //计数+1
  971. U.MD.F.J.selectUserInfo.NeedUser.push(friendinfo); //加入选中好友全局
  972. //打印选择好友
  973. var _box = $$('div', {
  974. "className": 'U_MD_O_SaveSynergy_NewGroup_Friend', style: { paddingLeft: '5px' }, onclick: function () {
  975. $(this).remove();
  976. U.Json.del(U.MD.F.J.selectUserInfo.NeedUser, { "UserId": friendinfo.UserId });
  977. countel.innerHTML = parseInt(countel.innerHTML) - 1;
  978. }
  979. }, selectel);
  980. //打印头像
  981. $$('img', { "onerror": U.MD.C.imgError, src: U.MD.C.getHeadImage(friendinfo.UserThumbnailImageHead) }, _box);
  982. //打印姓名
  983. $$('span', { innerHTML: friendinfo.UserNickName || friendinfo.UserName }, _box);
  984. }
  985. }
  986. /*
  987. U.MD.DK.VW.choseFile
  988. 参数一:选择文件
  989. 参数二: 显示文件类型
  990. */
  991. U.MD.DK.VW.choseFile = function (cb, type) {
  992. var _diskinfo = US.disk.Disks[US.userInfo.userid]; //获取当前登录用户的网盘信息
  993. var _formel = $('#U_MD_DK_VW_ChosenSaveFile')[0]; //获取窗体元素
  994. var _file; //定义变量
  995. type = type ? type : "*"; //默认为全部
  996. if (_formel) { //判断窗体是否存在
  997. //存在则居中显示
  998. U.UF.F.windowTopCenter(_formel);
  999. //获取文件区域
  1000. _file = $('#U_MD_DK_VW_ChosenSaveFile_File')[0];
  1001. _file.innerHTML = "";
  1002. }
  1003. else {
  1004. var _box = $$('div', { style: { position: "relative", overflow: "hidden" }, "className": "U_MD_DK_VW_ChosenSaveFile" }); //创建文件区域容器
  1005. var _newfolder = $$('button', { style: { position: "absolute", right: "0", top: "2px" }, innerHTML: "新建文件夹" }, _box); //创建新建文件夹按钮
  1006. $$("div", { style: { "font-size": "16px", padding: "12px 10px 2px" }, innerHTML: "文件名称" }, _box); //创建标题
  1007. $$("hr", {}, _box); //创建分割线
  1008. _file = $$("div", { "className": "U_MD_DK_VW_ChosenSaveFile_File", id: "U_MD_DK_VW_ChosenSaveFile_File" }, _box); //创建文件区域
  1009. var _inputarea = $$('div', {}, _box); //创建填写文件名区域
  1010. $$('span', { 'innerHTML': '文件名:' }, _inputarea); //标题
  1011. var _input = $$('input', { "className": "U_MD_DK_VW_ChosenSaveFileName", placeholder: "请输入文件名...", style: { width: "89%", "text-indent": "5px", "line-height": "26px" } }, _inputarea); //文件名输入框
  1012. var _ensure = $$('button', { innerHTML: "确定" }, _box); //确定按钮
  1013. var _cancel = $$('button', { innerHTML: "取消" }, _box); //取消按钮
  1014. //创建窗体
  1015. _formel = new U.UF.UI.form(
  1016. "<span id='U_MD_DK_VW_ChosenSaveFile_Title'>选择文件</span>",
  1017. _box, {
  1018. "id": "U_MD_DK_VW_ChosenSaveFile",
  1019. "style": {
  1020. "width": "600px",
  1021. "height": "450px"
  1022. }
  1023. }).form;
  1024. //绑定新建文件夹事件
  1025. _newfolder.onclick = function () {
  1026. U.MD.DK.VW.chosenSaveFile.newFolder();
  1027. }
  1028. //绑定确定按钮事件
  1029. _ensure.onclick = function () {
  1030. cb($('.U_MD_DK_VW_ChosenSaveFileName')[0].data); //回调
  1031. U.UF.F.windowMinimize(_formel); //隐藏弹框
  1032. _input.value = ""; //清空显示
  1033. _input.data = null; //清空数据
  1034. }
  1035. //取消函数
  1036. _cancel.onclick = function () {
  1037. U.UF.F.windowMinimize(_formel);
  1038. }
  1039. }
  1040. //默认创建初始化目录
  1041. U.MD.DK.VW.chosenSaveFile.printFolder(_diskinfo.directoryOrFiles.slice(1, 8), _file, 0, ["U_MD_DK_LCD", "U_MD_DK_LCS", "U_MD_DK_LCD", "U_MD_DK_LCB", "U_MD_DK_LCF", "U_MD_DK_LCT", "U_MD_DK_LCP", "U_MD_DK_LCY"], _file, type);
  1042. }
  1043. //#endregion