DiskView.js 54 KB

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