]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/modal.js
Merge pull request #4455 from MrPetovan/task/4176-fix-undeclared-variables-2
[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 .jot-nav-lnk", 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                 // Insert 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         // Get the ID of the tab panel which should be activated.
310         var tabpanel = elm.getAttribute("aria-controls");
311         var cls = hasClass(elm, "jot-nav-lnk-mobile");
312
313         // Select all li of jot-nav and remove the active class.
314         $(elm).parent("li").siblings("li").removeClass("active");
315         // Add the active class to the parent of the link which was selected.
316         $(elm).parent("li").addClass("active");
317
318         // Minimize all tab content wrapper and activate only the selected
319         // tab panel.
320         $('#jot-modal [role=tabpanel]').addClass("minimize").attr("aria-hidden" ,"true");
321         $('#jot-modal #' + tabpanel).removeClass("minimize").attr("aria-hidden" ,"false");
322
323         // Set the aria-selected states
324         $("#jot-modal .nav-tabs .jot-nav-lnk").attr("aria-selected", "false");
325         elm.setAttribute("aria-selected", "true");
326
327         // For some some tab panels we need to execute other js functions.
328         if (tabpanel === "jot-preview-content") {
329                 preview_post();
330         } else if (tabpanel === "jot-fbrowser-wrapper") {
331                 $(function() {
332                         Dialog.showJot();
333                 });
334         }
335
336         // If element is a mobile dropdown nav menu we need to change the botton text.
337         if (cls) {
338                 toggleDropdownText(elm);
339         }
340 }
341
342 // Wall Message needs a special handling because in some cases
343 // it redirects you to your own server. In such cases we can't
344 // load it into a modal.
345 function openWallMessage(url) {
346         // Split the the url in its parts.
347         var parts = parseUrl(url);
348
349         // If the host isn't the same we can't load it in a modal.
350         // So we will go to to the url directly.
351         if( ("host" in parts) && (parts.host !== window.location.host)) {
352                 window.location.href = url;
353         } else {
354                 // Otherwise load the wall message into a modal.
355                 addToModal(url);
356         }
357 }
358
359 // This function load the content of the edit url into a modal.
360 /// @todo Rename this function because it can be used for more than events.
361 function eventEdit(url) {
362         var char = qOrAmp(url);
363         url = url + char + 'mode=none';
364
365         $.get(url, function(data) {
366                 $("#modal-body").empty();
367                 $("#modal-body").append(data);
368         }).done(function() {
369                 loadModalTitle();
370         });
371 }