]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/modal.js
Merge pull request #4883 from nupplaphil/install_config
[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/js/ajaxupload.js");
156         loadScript("view/theme/frio/js/filebrowser.js", jsbrowser);
157 };
158
159 /**
160  * @brief Add first element with the class "heading" as modal title
161  * 
162  * Note: this should be really done in the template
163  * and is the solution where we havent done it until this
164  * moment or where it isn't possible because of design
165  */
166 function loadModalTitle() {
167         // Clear the text of the title.
168         $("#modal-title").empty();
169
170         // Hide the first element with the class "heading" of the modal body.
171         $("#modal-body .heading").first().hide();
172
173         var title = "";
174
175         // Get the text of the first element with "heading" class.
176         title = $("#modal-body .heading").first().text();
177
178         // for event modals we need some speacial handling
179         if($("#modal-body .event-wrapper .event-summary").length) {
180                 title = '<i class="fa fa-calendar" aria-hidden="true"></i>&nbsp;';
181                 var eventsum = $("#modal-body .event-wrapper .event-summary").text();
182                 title = title + eventsum;
183         }
184
185         // And append it to modal title.
186         if (title!=="") {
187                 $("#modal-title").append(title);
188         }
189 }
190
191 // This function loads html content from a friendica page
192 // into a modal.
193 function addToModal(url) {
194         var char = qOrAmp(url);
195
196         url = url + char + 'mode=none';
197         var modal = $('#modal').modal();
198
199         modal
200                 .find('#modal-body')
201                 .load(url, function (responseText, textStatus) {
202                         if ( textStatus === 'success' || 
203                                 textStatus === 'notmodified') 
204                         {
205                                 modal.show();
206
207                                 //Get first element with the class "heading"
208                                 //and use it as title.
209                                 loadModalTitle();
210                         }
211                 });
212 }
213
214 // Add a element (by it's id) to a bootstrap modal.
215 function addElmToModal(id) {
216         var elm = $(id).html();
217         var modal = $('#modal').modal();
218
219         modal
220                 .find('#modal-body')
221                 .append(elm)
222                 .modal.show;
223
224         loadModalTitle();
225 }
226
227 // Function to load the html from the edit post page into
228 // the jot modal.
229 function editpost(url) {
230         // Next to normel posts the post can be an event post. The event posts don't
231         // use the normal Jot modal. For event posts we will use a normal modal
232         // But first we have to test if the url links to an event. So we will split up
233         // the url in its parts.
234         var splitURL = parseUrl(url);
235         // Test if in the url path containing "events/event". If the path containing this
236         // expression then we will call the addToModal function and exit this function at
237         // this point.
238         if (splitURL.path.indexOf('events/event') > -1) {
239                 addToModal(splitURL.path);
240                 return;
241         }
242
243         var modal = $('#jot-modal').modal();
244         url = url + " #jot-sections";
245
246         //var rand_num = random_digits(12);
247         $(".jot-nav .jot-perms-lnk").parent("li").addClass("hidden");
248
249         // For editpost we load the modal html of "jot-sections" of the edit page. So we would have two jot forms in
250         // the page html. To avoid js conflicts we store the original jot in the variable jotcache.
251         // After closing the modal original jot should be restored at its orginal position in the html structure.
252         jotcache = $("#jot-content > #jot-sections");
253
254         // Remove the original Jot as long as the edit Jot is open.
255         jotcache.remove();
256
257         // Add the class "edit" to the modal to have some kind of identifier to
258         // have the possibility to e.g. put special event-listener.
259         $("#jot-modal").addClass("edit-jot");
260
261         jotreset();
262
263         modal
264                 .find('#jot-modal-content')
265                 .load(url, function (responseText, textStatus) {
266                         if ( textStatus === 'success' || 
267                                 textStatus === 'notmodified') 
268                         {
269                                 // get the item type and hide the input for title and category if it isn't needed.
270                                 var type = $(responseText).find("#profile-jot-form input[name='type']").val();
271                                 if(type === "wall-comment" || type === "remote-comment")
272                                 {
273                                         // Hide title and category input fields because we don't.
274                                         $("#profile-jot-form #jot-title-wrap").hide();
275                                         $("#profile-jot-form #jot-category-wrap").hide();
276                                 }
277
278                                 modal.show();
279                                 $("#jot-popup").show();
280                         }
281                 });
282 }
283
284 // Remove content from the jot modal.
285 function jotreset() {
286         // Clear bs modal on close.
287         // We need this to prevent that the modal displays old content.
288         $('body').on('hidden.bs.modal', '#jot-modal.edit-jot', function () {
289                 $(this).removeData('bs.modal');
290                 $(".jot-nav .jot-perms-lnk").parent("li").removeClass("hidden");
291                 $("#profile-jot-form #jot-title-wrap").show();
292                 $("#profile-jot-form #jot-category-wrap").show();
293
294                 // the following was commented out because it is needed anymore
295                 // because we changed the behavior at an other place.
296         //              var rand_num = random_digits(12);
297         //              $('#jot-title, #jot-category, #profile-jot-text').val("");
298         //              $( "#profile-jot-form input[name='type']" ).val("wall");
299         //              $( "#profile-jot-form input[name='post_id']" ).val("");
300         //              $( "#profile-jot-form input[name='post_id_random']" ).val(rand_num);
301
302                 // Remove the "edit-jot" class so we can the standard behavior on close.
303                 $("#jot-modal.edit-jot").removeClass("edit-jot");
304                 $("#jot-modal-content").empty();
305         });
306 }
307
308 // Give the active "jot-nav" list element the class "active".
309 function toggleJotNav (elm) {
310         // Get the ID of the tab panel which should be activated.
311         var tabpanel = elm.getAttribute("aria-controls");
312         var cls = hasClass(elm, "jot-nav-lnk-mobile");
313
314         // Select all li of jot-nav and remove the active class.
315         $(elm).parent("li").siblings("li").removeClass("active");
316         // Add the active class to the parent of the link which was selected.
317         $(elm).parent("li").addClass("active");
318
319         // Minimize all tab content wrapper and activate only the selected
320         // tab panel.
321         $('#jot-modal [role=tabpanel]').addClass("minimize").attr("aria-hidden" ,"true");
322         $('#jot-modal #' + tabpanel).removeClass("minimize").attr("aria-hidden" ,"false");
323
324         // Set the aria-selected states
325         $("#jot-modal .nav-tabs .jot-nav-lnk").attr("aria-selected", "false");
326         elm.setAttribute("aria-selected", "true");
327
328         // For some some tab panels we need to execute other js functions.
329         if (tabpanel === "jot-preview-content") {
330                 preview_post();
331         } else if (tabpanel === "jot-fbrowser-wrapper") {
332                 $(function() {
333                         Dialog.showJot();
334                 });
335         }
336
337         // If element is a mobile dropdown nav menu we need to change the botton text.
338         if (cls) {
339                 toggleDropdownText(elm);
340         }
341 }
342
343 // Wall Message needs a special handling because in some cases
344 // it redirects you to your own server. In such cases we can't
345 // load it into a modal.
346 function openWallMessage(url) {
347         // Split the the url in its parts.
348         var parts = parseUrl(url);
349
350         // If the host isn't the same we can't load it in a modal.
351         // So we will go to to the url directly.
352         if( ("host" in parts) && (parts.host !== window.location.host)) {
353                 window.location.href = url;
354         } else {
355                 // Otherwise load the wall message into a modal.
356                 addToModal(url);
357         }
358 }
359
360 // This function load the content of the edit url into a modal.
361 /// @todo Rename this function because it can be used for more than events.
362 function eventEdit(url) {
363         var char = qOrAmp(url);
364         url = url + char + 'mode=none';
365
366         $.get(url, function(data) {
367                 $("#modal-body").empty();
368                 $("#modal-body").append(data);
369         }).done(function() {
370                 loadModalTitle();
371         });
372 }