]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/modal.js
Merge pull request #3251 from rabuzarus/20170320_-_fix_fbrowser
[friendica.git] / view / theme / frio / js / modal.js
1 /* 
2  * @brief contains functions for bootstrap modal handling
3  */
4 $(document).ready(function(){
5         // Clear bs modal on close
6         // We need this to prevent that the modal displays old content
7         $('body, footer').on('hidden.bs.modal', '.modal', function () {
8                 $(this).removeData('bs.modal');
9                 $("#modal-title").empty();
10                 $('#modal-body').empty();
11                 // Remove the file browser from jot (else we would have problems
12                 // with AjaxUpload
13                 $(".fbrowser").remove();
14                 // Remove the AjaxUpload element
15                 $("[name=userfile]").parent().remove();
16         });
17
18         // Clear bs modal on close
19         // We need this to prevent that the modal displays old content
20         $('body').on('hidden.bs.modal', '#jot-modal', function () {
21                 // restore cached jot at its hidden position ("#jot-content")
22                 $("#jot-content").append(jotcache);
23                 // clear the jotcache
24                 jotcache = '';
25         });
26
27         // Add Colorbox for viewing Network page images
28         //var cBoxClasses = new Array();
29         $("body").on("click", ".wall-item-body a img", function(){
30                 var aElem = $(this).parent();
31                 var imgHref = aElem.attr("href");
32
33                 // We need to make sure we only put a Colorbox on links to Friendica images
34                 // We'll try to do this by looking for links of the form
35                 // .../photo/ab803d8eg08daf85023adfec08 (with nothing more following), in hopes
36                 // that that will be unique enough
37                 if(imgHref.match(/\/photo\/[a-fA-F0-9]+(-[0-9]\.[\w]+?)?$/)) {
38
39                         // Add a unique class to all the images of a certain post, to allow scrolling through
40                         var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox";
41                         $(this).addClass(cBoxClass);
42
43 //                      if( $.inArray(cBoxClass, cBoxClasses) < 0 ) {
44 //                              cBoxClasses.push(cBoxClass);
45 //                      }
46
47                         aElem.colorbox({
48                                 maxHeight: '90%',
49                                 photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo
50                                 rel: cBoxClass //$(this).attr("class").match(/wall-item-body-[\d]+-lightbox/)[0]
51                         });
52                 }
53         });
54
55         // Navbar login
56         $("body").on("click", "#nav-login", function(e){
57                 e.preventDefault();
58                 Dialog.show(this.href, this.dataset.originalTitle || this.title);
59         });
60
61         // Jot nav menu.
62         $("body").on("click", "#jot-modal .jot-nav li a", function(e){
63                 e.preventDefault();
64                 toggleJotNav(this);
65         });
66
67         // bookmarklet page needs an jot modal which appears automatically
68         if(window.location.pathname.indexOf("/bookmarklet") >=0 && $("#jot-modal").length){
69                 jotShow();
70         }
71
72         // Open filebrowser for elements with the class "image-select"
73         // The following part handles the filebrowser for field_fileinput.tpl
74         $("body").on("click", ".image-select", function(){
75                 // set a extra attribute to mark the clicked button
76                 this.setAttribute("image-input", "select");
77                 Dialog.doImageBrowser("input");
78         });
79
80         // Insert filebrowser images into the input field (field_fileinput.tpl)
81         $("body").on("fbrowser.image.input", function(e, filename, embedcode, id, img) {
82                 // select the clicked button by it's attribute
83                 var elm = $("[image-input='select']");
84                 // select the input field which belongs to this button
85                 var input = elm.parent(".input-group").children("input");
86                 // remove the special indicator attribut from the button
87                 elm.removeAttr("image-input");
88                 // inserte the link from the image into the input field
89                 input.val(img);
90                 
91         });
92 });
93
94 // overwrite Dialog.show from main js to load the filebrowser into a bs modal
95 Dialog.show = function(url, title) {
96         if (typeof(title) === 'undefined') {
97                 title = "";
98         }
99
100         var modal = $('#modal').modal();
101         modal.find("#modal-header h4").html(title);
102         modal
103                 .find('#modal-body')
104                 .load(url, function (responseText, textStatus) {
105                         if ( textStatus === 'success' || 
106                                 textStatus === 'notmodified') 
107                         {
108                                 modal.show();
109
110                                 $(function() {Dialog._load(url);});
111                         }
112                 });
113 };
114
115 // overwrite the function _get_url from main.js
116 Dialog._get_url = function(type, name, id) {
117         var hash = name;
118         if (id !== undefined) hash = hash + "-" + id;
119         return "fbrowser/"+type+"/?mode=none#"+hash;
120 };
121
122 // does load the filebrowser into the jot modal
123 Dialog.showJot = function() {
124         var type = "image";
125         var name = "main";
126
127         var url = Dialog._get_url(type, name);
128         if(($(".modal-body #jot-fbrowser-wrapper .fbrowser").length) < 1 ) {
129                 // load new content to fbrowser window
130                 $("#jot-fbrowser-wrapper").load(url,function(responseText, textStatus){
131                         if ( textStatus === 'success' || 
132                                 textStatus === 'notmodified') 
133                         {
134                                 $(function() {Dialog._load(url);});
135                         }
136                 });
137         }
138 };
139
140 // init the filebrowser after page load
141 Dialog._load = function(url) {
142         // get nickname & filebrowser type from the modal content
143         var nickname = $("#fb-nickname").attr("value");
144         var type = $("#fb-type").attr("value");
145
146         // try to fetch the hash form the url
147         var match = url.match(/fbrowser\/[a-z]+\/\?mode=none(.*)/);
148         if (match===null) return; //not fbrowser
149         var hash = match[1];
150
151         // initialize the filebrowser
152         var jsbrowser = function() {
153                 FileBrowser.init(nickname, type, hash);
154         };
155         loadScript("view/theme/frio/js/filebrowser.js", jsbrowser);
156 };
157
158 /**
159  * @brief Add first element with the class "heading" as modal title
160  * 
161  * Note: this should be really done in the template
162  * and is the solution where we havent done it until this
163  * moment or where it isn't possible because of design
164  */
165 function loadModalTitle() {
166         // clear the text of the title
167         $("#modal-title").empty();
168
169         // hide the first element with the class "heading" of the modal body
170         $("#modal-body .heading").first().hide();
171
172         var title = "";
173
174         // get the text of the first element with "heading" class
175         title = $("#modal-body .heading").first().text();
176
177         // for event modals we need some speacial handling
178         if($("#modal-body .event-wrapper .event-summary").length) {
179                 title = '<i class="fa fa-calendar" aria-hidden="true"></i>&nbsp;';
180                 var eventsum = $("#modal-body .event-wrapper .event-summary").text();
181                 title = title + eventsum;
182         }
183
184         // and append it to modal title
185         if (title!=="") {
186                 $("#modal-title").append(title);
187         }
188 }
189
190 // This function loads html content from a friendica page
191 // into a modal
192 function addToModal(url) {
193         var char = qOrAmp(url);
194
195         url = url + char + 'mode=none';
196         var modal = $('#modal').modal();
197
198         modal
199                 .find('#modal-body')
200                 .load(url, function (responseText, textStatus) {
201                         if ( textStatus === 'success' || 
202                                 textStatus === 'notmodified') 
203                         {
204                                 modal.show();
205
206                                 //Get first element with the class "heading"
207                                 //and use it as title
208                                 loadModalTitle();
209                         }
210                 });
211 }
212
213 // Add a element (by it's id) to a bootstrap modal
214 function addElmToModal(id) {
215         var elm = $(id).html();
216         var modal = $('#modal').modal();
217
218         modal
219                 .find('#modal-body')
220                 .append(elm)
221                 .modal.show;
222
223         loadModalTitle();
224 }
225
226 // function to load the html from the edit post page into
227 // the jot modal
228 function editpost(url) {
229         // next to normel posts the post can be an event post. The event posts don't
230         // use the normal Jot modal. For event posts we will use a normal modal
231         // But first we have to test if the url links to an event. So we will split up
232         // the url in its parts
233         var splitURL = parseUrl(url);
234         // Test if in the url path containing "events/event". If the path containing this
235         // expression then we will call the addToModal function and exit this function at
236         // this point
237         if (splitURL.path.indexOf('events/event') > -1) {
238                 addToModal(splitURL.path);
239                 return;
240         }
241
242         var modal = $('#jot-modal').modal();
243         url = url + " #jot-sections";
244
245         //var rand_num = random_digits(12);
246         $(".jot-nav .jot-perms-lnk").parent("li").addClass("hidden");
247
248         // For editpost we load the modal html of "jot-sections" of the edit page. So we would have two jot forms in
249         // the page html. To avoid js conflicts we store the original jot in the variable jotcache.
250         // After closing the modal original jot should be restored at its orginal position in the html structure.
251         jotcache = $("#jot-content > #jot-sections");
252
253         // remove the original Jot as long as the edit Jot is open
254         jotcache.remove();
255
256         // add the class "edit" to the modal to have some kind of identifier to
257         // have the possibility to e.g. put special event-listener
258         $("#jot-modal").addClass("edit-jot");
259
260         jotreset();
261
262         modal
263                 .find('#jot-modal-content')
264                 .load(url, function (responseText, textStatus) {
265                         if ( textStatus === 'success' || 
266                                 textStatus === 'notmodified') 
267                         {
268                                 // get the item type and hide the input for title and category if it isn't needed
269                                 var type = $(responseText).find("#profile-jot-form input[name='type']").val();
270                                 if(type === "wall-comment" || type === "remote-comment")
271                                 {
272                                         // hide title and category input fields because we don't
273                                         $("#profile-jot-form #jot-title-wrap").hide();
274                                         $("#profile-jot-form #jot-category-wrap").hide();
275                                 }
276
277                                 modal.show();
278                                 $("#jot-popup").show();
279                         }
280                 });
281 }
282
283 // remove content from the jot modal
284 function jotreset() {
285         // Clear bs modal on close
286         // We need this to prevent that the modal displays old content
287         $('body').on('hidden.bs.modal', '#jot-modal.edit-jot', function () {
288                 $(this).removeData('bs.modal');
289                 $(".jot-nav .jot-perms-lnk").parent("li").removeClass("hidden");
290                 $("#profile-jot-form #jot-title-wrap").show();
291                 $("#profile-jot-form #jot-category-wrap").show();
292
293                 // the following was commented out because it is needed anymore
294                 // because we changed the behavior at an other place
295         //              var rand_num = random_digits(12);
296         //              $('#jot-title, #jot-category, #profile-jot-text').val("");
297         //              $( "#profile-jot-form input[name='type']" ).val("wall");
298         //              $( "#profile-jot-form input[name='post_id']" ).val("");
299         //              $( "#profile-jot-form input[name='post_id_random']" ).val(rand_num);
300
301                 // remove the "edit-jot" class so we can the standard behavior on close
302                 $("#jot-modal.edit-jot").removeClass("edit-jot");
303                 $("#jot-modal-content").empty();
304         });
305 }
306
307 // Give the active "jot-nav" list element the class "active"
308 function toggleJotNav (elm) {
309         // select all li of jot-nav and remove the active class
310         $(".jot-nav li").removeClass("active");
311         // add the active class to the parent of the link which was selected
312         $(elm).parent("li").addClass("active");
313 }
314
315 // Wall Message needs a special handling because in some cases
316 // it redirects you to your own server. In such cases we can't
317 // load it into a modal
318 function openWallMessage(url) {
319         // split the the url in its parts
320         var parts = parseUrl(url);
321
322         // If the host isn't the same we can't load it in a modal.
323         // So we will go to to the url directly
324         if( ("host" in parts) && (parts.host !== window.location.host)) {
325                 window.location.href = url;
326         } else {
327                 // otherwise load the wall message into a modal
328                 addToModal(url);
329         }
330 }