]> git.mxchange.org Git - friendica.git/blob - js/filebrowser.js
hovercard: some polishing
[friendica.git] / js / filebrowser.js
1 /**\r
2  * Filebrowser - Friendica Communications Server\r
3  *\r
4  * Copyright (c) 2010-2015 the Friendica Project\r
5  *\r
6  * This program is free software: you can redistribute it and/or modify\r
7  * it under the terms of the GNU Affero General Public License as published by\r
8  * the Free Software Foundation, either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * This code handle user interaction for image/file upload/browser dialog.\r
12  * Is loaded from filebrowser_plain.tpl\r
13  *\r
14  * To load filebrowser in colorbox, call\r
15  *\r
16  *      Dialog.doImageBrowser(eventname, id);\r
17  *\r
18  * or\r
19  *\r
20  *      Dialog.doFileBrowser(eventname, id);\r
21  *\r
22  * where:\r
23  *\r
24  *              eventname: event name to catch return value\r
25  *              id: id returned to event handler\r
26  *\r
27  * When user select an item, an event in fired in parent page, on body element\r
28  * The event is named\r
29  *\r
30  *              fbrowser.<type>.[<eventname>]\r
31  *\r
32  * <type> will be one of "image" or "file", and the event handler will\r
33  * get the following params:\r
34  *\r
35  *              filemane: filename of item choosed by user\r
36  *              embed: bbcode to embed element into posts\r
37  *              id: id from caller code\r
38  *\r
39  * example:\r
40  *\r
41  *              // open dialog for select an image for a textarea with id "myeditor"\r
42  *              var id="myeditor";\r
43  *              Dialog.doImageBrowser("example", id);\r
44  *\r
45  *              // setup event handler to get user selection\r
46  *              $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) {\r
47  *                      // close colorbox\r
48  *                      $.colorbox.close();\r
49  *                      // replace textxarea text with bbcode\r
50  *                      $(id).value = bbcode;\r
51  *              });\r
52  **/\r
53 \r
54 \r
55 /*\r
56  * IMPORTANT\r
57  * \r
58  *  This is a modified version to work with \r
59  *  the frio theme.and bootstrap modals\r
60  *  \r
61  *  The origninal file is under:\r
62  *  js/filebrowser.js\r
63  * \r
64  */\r
65 \r
66 \r
67 var FileBrowser = {\r
68         nickname : "",\r
69         type : "",\r
70         event: "",\r
71         id : null,\r
72 \r
73         init: function(nickname, type, hash) {\r
74                 FileBrowser.nickname = nickname;\r
75                 FileBrowser.type = type;\r
76                 FileBrowser.event = "fbrowser."+type;\r
77 \r
78                 if (hash!=="") {\r
79                         var h = hash.replace("#","");\r
80                         FileBrowser.event = FileBrowser.event + "." + h.split("-")[0];\r
81                         FileBrowser.id = h.split("-")[1];\r
82                 };\r
83 \r
84                 console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id );\r
85 \r
86                 $(".error a.close").on("click", function(e) {\r
87                         e.preventDefault();\r
88                         $(".error").addClass("hidden");\r
89                 });\r
90 \r
91                 $(".folders a, .path a").on("click", function(e){\r
92                         e.preventDefault();\r
93                         var url = baseurl + "/fbrowser/" + FileBrowser.type + "/" + this.dataset.folder + "?mode=modal"+ location['hash'];\r
94 \r
95                         // load new content to modal\r
96                         $('.modal-body').load(url,function(){\r
97                                 $(function() {\r
98                                                 FileBrowser.init(nickname, type, hash);\r
99                                         });\r
100                         });\r
101                 });\r
102 \r
103                 $(".photo-album-photo-link").on('click', function(e){\r
104                         e.preventDefault();\r
105 \r
106                         var embed = "";\r
107                         if (FileBrowser.type == "image") {\r
108                                 embed = "[url="+this.dataset.link+"][img]"+this.dataset.img+"[/img][/url]";\r
109                         }\r
110                         if (FileBrowser.type=="file") {\r
111                                 // attachment links are "baseurl/attach/id"; we need id\r
112                                 embed = "[attachment]"+this.dataset.link.split("/").pop()+"[/attachment]";\r
113                         }\r
114                         console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id);\r
115                         parent.$("body").trigger(FileBrowser.event, [\r
116                                 this.dataset.filename,\r
117                                 embed,\r
118                                 FileBrowser.id,\r
119                         ]);\r
120 \r
121                         // close model\r
122                         $('#modal').modal('hide');\r
123                         if (id!=="") {\r
124                                 $("#comment-edit-text-" + FileBrowser.id).empty();\r
125                                 commentExpand(FileBrowser.id);\r
126                                 //$("#comment-edit-text-558").empty();\r
127                         };\r
128 \r
129                 });\r
130 \r
131                 if ($("#upload-image").length)\r
132                         var image_uploader = new window.AjaxUpload(\r
133                                 'upload-image',\r
134                                 { action: 'wall_upload/'+FileBrowser.nickname+'?response=json',\r
135                                         name: 'userfile',\r
136                                         responseType: 'json',\r
137                                         onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },\r
138                                         onComplete: function(file,response) {\r
139                                                 if (response['error']!= undefined) {\r
140                                                         $(".error span").html(response['error']);\r
141                                                         $(".error").removeClass('hidden');\r
142                                                         $('#profile-rotator').hide();\r
143                                                         return;\r
144                                                 }\r
145                                                 location = baseurl + "/fbrowser/image/?mode=minimal"+location['hash'];\r
146                                                 location.reload(true);\r
147                                         }\r
148                                 }\r
149                         );\r
150 \r
151                 if ($("#upload-file").length)\r
152                         var file_uploader = new window.AjaxUpload(\r
153                                 'upload-file',\r
154                                 { action: 'wall_attach/'+FileBrowser.nickname+'?response=json',\r
155                                         name: 'userfile',\r
156                                         onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },\r
157                                         onComplete: function(file,response) {\r
158                                                 if (response['error']!= undefined) {\r
159                                                         $(".error span").html(response['error']);\r
160                                                         $(".error").removeClass('hidden');\r
161                                                         $('#profile-rotator').hide();\r
162                                                         return;\r
163                                                 }\r
164                                                 location = baseurl + "/fbrowser/file/?mode=minimal"+location['hash'];\r
165                                                 location.reload(true);\r
166                                         }\r
167                                 }\r
168                 );\r
169         }\r
170 };\r
171 \r