2 * @brief contains functions for bootstrap modal handling
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
13 $(".fbrowser").remove();
16 // Clear bs modal on close
17 // We need this to prevent that the modal displays old content
18 $('body').on('hidden.bs.modal', '#jot-modal', function () {
19 // restore cached jot at its hidden position ("#jot-content")
20 $("#jot-content").append(jotcache);
25 // Add Colorbox for viewing Network page images
26 //var cBoxClasses = new Array();
27 $("body").on("click", ".wall-item-body a img", function(){
28 var aElem = $(this).parent();
29 var imgHref = aElem.attr("href");
31 // We need to make sure we only put a Colorbox on links to Friendica images
32 // We'll try to do this by looking for links of the form
33 // .../photo/ab803d8eg08daf85023adfec08 (with nothing more following), in hopes
34 // that that will be unique enough
35 if(imgHref.match(/\/photo\/[a-fA-F0-9]+(-[0-9]\.[\w]+?)?$/)) {
37 // Add a unique class to all the images of a certain post, to allow scrolling through
38 var cBoxClass = $(this).closest(".wall-item-body").attr("id") + "-lightbox";
39 $(this).addClass(cBoxClass);
41 // if( $.inArray(cBoxClass, cBoxClasses) < 0 ) {
42 // cBoxClasses.push(cBoxClass);
47 photo: true, // Colorbox doesn't recognize a URL that don't end in .jpg, etc. as a photo
48 rel: cBoxClass //$(this).attr("class").match(/wall-item-body-[\d]+-lightbox/)[0]
54 $("body").on("click", "#nav-login", function(e){
56 Dialog.show(this.href, this.dataset.originalTitle || this.title);
60 $("body").on("click", "#jot-modal .jot-nav li a", function(e){
65 // bookmarklet page needs an jot modal which appears automatically
66 if(window.location.pathname.indexOf("/bookmarklet") >=0 && $("#jot-modal").length){
70 // Open filebrowser for elements with the class "image-select"
71 // The following part handles the filebrowser for field_fileinput.tpl
72 $("body").on("click", ".image-select", function(){
73 // set a extra attribute to mark the clicked button
74 this.setAttribute("image-input", "select");
75 Dialog.doImageBrowser("input");
78 // Insert filebrowser images into the input field (field_fileinput.tpl)
79 $("body").on("fbrowser.image.input", function(e, filename, embedcode, id, img) {
80 // select the clicked button by it's attribute
81 var elm = $("[image-input='select']");
82 // select the input field which belongs to this button
83 var input = elm.parent(".input-group").children("input");
84 // remove the special indicator attribut from the button
85 elm.removeAttr("image-input");
86 // inserte the link from the image into the input field
92 // overwrite Dialog.show from main js to load the filebrowser into a bs modal
93 Dialog.show = function(url, title="") {
94 var modal = $('#modal').modal();
95 modal.find("#modal-header h4").html(title);
98 .load(url, function (responseText, textStatus) {
99 if ( textStatus === 'success' ||
100 textStatus === 'notmodified')
104 $(function() {Dialog._load(url);});
109 // overwrite the function _get_url from main.js
110 Dialog._get_url = function(type, name, id) {
112 if (id !== undefined) hash = hash + "-" + id;
113 return "fbrowser/"+type+"/?mode=none#"+hash;
116 // does load the filebrowser into the jot modal
117 Dialog.showJot = function() {
121 var url = Dialog._get_url(type, name);
122 if(($(".modal-body #jot-fbrowser-wrapper .fbrowser").length) < 1 ) {
123 // load new content to fbrowser window
124 $("#jot-fbrowser-wrapper").load(url,function(responseText, textStatus){
125 if ( textStatus === 'success' ||
126 textStatus === 'notmodified')
128 $(function() {Dialog._load(url);});
134 // init the filebrowser after page load
135 Dialog._load = function(url) {
136 // get nickname & filebrowser type from the modal content
137 var nickname = $("#fb-nickname").attr("value");
138 var type = $("#fb-type").attr("value");
140 // try to fetch the hash form the url
141 var match = url.match(/fbrowser\/[a-z]+\/\?mode=none(.*)/);
142 if (match===null) return; //not fbrowser
145 // initialize the filebrowser
146 var jsbrowser = function() {
147 FileBrowser.init(nickname, type, hash);
149 loadScript("view/theme/frio/js/filebrowser.js", jsbrowser);
153 * @brief Add first element with the class "heading" as modal title
155 * Note: this should be really done in the template
156 * and is the solution where we havent done it until this
157 * moment or where it isn't possible because of design
159 function loadModalTitle() {
160 // clear the text of the title
161 $("#modal-title").empty();
163 // hide the first element with the class "heading" of the modal body
164 $("#modal-body .heading").first().hide();
168 // get the text of the first element with "heading" class
169 title = $("#modal-body .heading").first().text();
171 // for event modals we need some speacial handling
172 if($("#modal-body .event-wrapper .event-summary").length) {
173 title = '<i class="fa fa-calendar" aria-hidden="true"></i> ';
174 var eventsum = $("#modal-body .event-wrapper .event-summary").text();
175 title = title + eventsum;
178 // and append it to modal title
180 $("#modal-title").append(title);
184 // This function loads html content from a friendica page
186 function addToModal(url) {
187 var char = qOrAmp(url);
189 url = url + char + 'mode=none';
190 var modal = $('#modal').modal();
194 .load(url, function (responseText, textStatus) {
195 if ( textStatus === 'success' ||
196 textStatus === 'notmodified')
200 //Get first element with the class "heading"
201 //and use it as title
207 // function to load the html from the edit post page into
209 function editpost(url) {
210 // next to normel posts the post can be an event post. The event posts don't
211 // use the normal Jot modal. For event posts we will use a normal modal
212 // But first we have to test if the url links to an event. So we will split up
213 // the url in its parts
214 var splitURL = parseUrl(url);
215 // Test if in the url path containing "events/event". If the path containing this
216 // expression then we will call the addToModal function and exit this function at
218 if (splitURL.path.indexOf('events/event') > -1) {
219 addToModal(splitURL.path);
223 var modal = $('#jot-modal').modal();
224 url = url + " #profile-jot-form";
226 //var rand_num = random_digits(12);
227 $(".jot-nav .jot-perms-lnk").parent("li").addClass("hidden");
229 // For editpost we load the modal html form the edit page. So we would have two jot forms in
230 // the page html. To avoid js conflicts we store the original jot in the variable jotcache.
231 // After closing the modal original jot should be restored at its orginal position in the html structure.
232 jotcache = $("#jot-content > #profile-jot-form");
234 // remove the original Jot as long as the edit Jot is open
237 // add the class "edit" to the modal to have some kind of identifier to
238 // have the possibility to e.g. put special event-listener
239 $("#jot-modal").addClass("edit-jot");
244 .find('#jot-modal-content')
245 .load(url, function (responseText, textStatus) {
246 if ( textStatus === 'success' ||
247 textStatus === 'notmodified')
249 // get the item type and hide the input for title and category if it isn't needed
250 var type = $(responseText).find("#profile-jot-form input[name='type']").val();
251 if(type === "wall-comment" || type === "remote-comment")
253 // hide title and category input fields because we don't
254 $("#profile-jot-form #jot-title-wrap").hide();
255 $("#profile-jot-form #jot-category-wrap").hide();
259 $("#jot-popup").show();
264 // remove content from the jot modal
265 function jotreset() {
266 // Clear bs modal on close
267 // We need this to prevent that the modal displays old content
268 $('body').on('hidden.bs.modal', '#jot-modal.edit-jot', function () {
269 $(this).removeData('bs.modal');
270 $(".jot-nav .jot-perms-lnk").parent("li").removeClass("hidden");
271 $("#profile-jot-form #jot-title-wrap").show();
272 $("#profile-jot-form #jot-category-wrap").show();
274 // the following was commented out because it is needed anymore
275 // because we changed the behavior at an other place
276 // var rand_num = random_digits(12);
277 // $('#jot-title, #jot-category, #profile-jot-text').val("");
278 // $( "#profile-jot-form input[name='type']" ).val("wall");
279 // $( "#profile-jot-form input[name='post_id']" ).val("");
280 // $( "#profile-jot-form input[name='post_id_random']" ).val(rand_num);
282 // remove the "edit-jot" class so we can the standard behavior on close
283 $("#jot-modal.edit-jot").removeClass("edit-jot");
284 $("#jot-modal-content").empty();
288 // Give the active "jot-nav" list element the class "active"
289 function toggleJotNav (elm) {
290 // select all li of jot-nav and remove the active class
291 $(".jot-nav li").removeClass("active");
292 // add the active class to the parent of the link which was selected
293 $(elm).parent("li").addClass("active");
296 // Wall Message needs a special handling because in some cases
297 // it redirects you to your own server. In such cases we can't
298 // load it into a modal
299 function openWallMessage(url) {
300 // split the the url in its parts
301 var parts = parseUrl(url);
303 // If the host isn't the same we can't load it in a modal.
304 // So we will go to to the url directly
305 if( ("host" in parts) && (parts.host !== window.location.host)) {
306 window.location.href = url;
308 // otherwise load the wall message into a modal