]> git.mxchange.org Git - friendica.git/blobdiff - js/acl.js
Bugfix: Warning because of undefined constant
[friendica.git] / js / acl.js
index 82b631ee9444f0a98f666a08b4e31010a1ccfb08..487ffafc770032578f1437bd84db44e9b39c77c8 100644 (file)
--- a/js/acl.js
+++ b/js/acl.js
@@ -1,7 +1,8 @@
-function ACL(backend_url, preset){
+function ACL(backend_url, preset, automention){
        that = this;
        
        that.url = backend_url;
+       that.automention = automention;
        
        that.kp_timer = null;
        
@@ -21,15 +22,50 @@ function ACL(backend_url, preset){
        
        /*events*/
        that.showall.click(that.on_showall);
-       $(".acl-button-show").live('click', that.on_button_show);
-       $(".acl-button-hide").live('click', that.on_button_hide);
+       $(document).on("click", ".acl-button-show", that.on_button_show);
+       $(document).on("click", ".acl-button-hide", that.on_button_hide);
        $("#acl-search").keypress(that.on_search);
        $("#acl-wrapper").parents("form").submit(that.on_submit);
        
+       /* add/remove mentions  */
+       that.element = $("#profile-jot-text");
+       that.htmlelm = that.element.get()[0];
+       
        /* startup! */
        that.get(0,100);
 }
 
+ACL.prototype.remove_mention = function(id) {
+       if (!that.automention) return;
+       var nick = that.data[id].nick;
+       var searchText = "@"+nick+"+"+id+" ";
+       if (tinyMCE.activeEditor===null) {
+               start = that.element.val().indexOf(searchText); 
+               if ( start<0) return;
+               end = start+searchText.length;
+               that.element.setSelection(start,end).replaceSelectedText('').collapseSelection(false);
+       } else {
+               start =  tinyMCE.activeEditor.getContent({format : 'raw'}).search( searchText );
+               if ( start<0 ) return;
+               txt = tinyMCE.activeEditor.getContent();
+               newtxt = txt.replace(searchText, '');
+               tinyMCE.activeEditor.setContent(newtxt);
+       }
+}
+
+ACL.prototype.add_mention = function(id) {
+       if (!that.automention) return;
+       var nick = that.data[id].nick;
+       var searchText =  "@"+nick+"+"+id+" ";
+       if (tinyMCE.activeEditor===null) {
+               if ( that.element.val().indexOf( searchText) >= 0 ) return;
+               that.element.val( searchText + that.element.val() );
+       } else {
+               if ( tinyMCE.activeEditor.getContent({format : 'raw'}).search(searchText) >= 0 ) return;
+               tinyMCE.activeEditor.dom.add(tinyMCE.activeEditor.getBody(), 'dummy', {}, searchText);
+       }
+}
+
 ACL.prototype.on_submit = function(){
        aclfileds = $("#acl-fields").html("");
        $(that.allow_gid).each(function(i,v){
@@ -58,7 +94,9 @@ ACL.prototype.on_search = function(event){
 }
 
 ACL.prototype.on_showall = function(event){
+       event.preventDefault()
        event.stopPropagation();
+       
        if (that.showall.hasClass("selected")){
                return false;
        }
@@ -69,12 +107,14 @@ ACL.prototype.on_showall = function(event){
        that.deny_cid  = [];
        that.deny_gid  = [];
        
-       that.updateview();
+       that.update_view();
        
        return false;
 }
 
 ACL.prototype.on_button_show = function(event){
+       event.preventDefault()
+       event.stopImmediatePropagation()
        event.stopPropagation();
 
        /*that.showall.removeClass("selected");
@@ -86,6 +126,8 @@ ACL.prototype.on_button_show = function(event){
        return false;
 }
 ACL.prototype.on_button_hide = function(event){
+       event.preventDefault()
+       event.stopImmediatePropagation()
        event.stopPropagation();
 
        /*that.showall.removeClass("selected");
@@ -99,7 +141,8 @@ ACL.prototype.on_button_hide = function(event){
 
 ACL.prototype.set_allow = function(itemid){
        type = itemid[0];
-       id       = parseInt(itemid.substr(1));
+       id     = parseInt(itemid.substr(1));
+       
        switch(type){
                case "g":
                        if (that.allow_gid.indexOf(id)<0){
@@ -112,18 +155,21 @@ ACL.prototype.set_allow = function(itemid){
                case "c":
                        if (that.allow_cid.indexOf(id)<0){
                                that.allow_cid.push(id)
+                               if (that.data[id].forum=="1") that.add_mention(id);
                        } else {
                                that.allow_cid.remove(id);
+                               if (that.data[id].forum=="1") that.remove_mention(id);
                        }
                        if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id);                     
                        break;
        }
-       that.updateview();
+       that.update_view();
 }
 
 ACL.prototype.set_deny = function(itemid){
        type = itemid[0];
-       id       = parseInt(itemid.substr(1));
+       id     = parseInt(itemid.substr(1));
+       
        switch(type){
                case "g":
                        if (that.deny_gid.indexOf(id)<0){
@@ -134,6 +180,7 @@ ACL.prototype.set_deny = function(itemid){
                        if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id);
                        break;
                case "c":
+                       if (that.data[id].forum=="1") that.remove_mention(id);
                        if (that.deny_cid.indexOf(id)<0){
                                that.deny_cid.push(id)
                        } else {
@@ -142,18 +189,22 @@ ACL.prototype.set_deny = function(itemid){
                        if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id);
                        break;
        }
-       that.updateview();
+       that.update_view();
+}
+
+ACL.prototype.is_show_all = function() {
+       return (that.allow_gid.length==0 && that.allow_cid.length==0 &&
+               that.deny_gid.length==0 && that.deny_cid.length==0);
 }
 
-ACL.prototype.updateview = function(){
-       if (that.allow_gid.length==0 && that.allow_cid.length==0 &&
-               that.deny_gid.length==0 && that.deny_cid.length==0){
+ACL.prototype.update_view = function(){
+       if (this.is_show_all()){
                        that.showall.addClass("selected");
                        /* jot acl */
                                $('#jot-perms-icon').removeClass('lock').addClass('unlock');
                                $('#jot-public').show();
                                $('.profile-jot-net input').attr('disabled', false);                    
-                               if(editor != false) {
+                               if(typeof editor != 'undefined' && editor != false) {
                                        $('#profile-jot-desc').html(ispublic);
                                }
                        
@@ -165,6 +216,9 @@ ACL.prototype.updateview = function(){
                                $('.profile-jot-net input').attr('disabled', 'disabled');                       
                                $('#profile-jot-desc').html('&nbsp;');
        }
+       $("#acl-list-content .acl-list-item").each(function(){
+               $(this).removeClass("groupshow grouphide");
+       });
        
        $("#acl-list-content .acl-list-item").each(function(){
                itemid = $(this).attr('id');
@@ -188,8 +242,17 @@ ACL.prototype.updateview = function(){
                                        uclass="grouphide";
                                }
                                
-                               $(that.group_uids[id]).each(function(i,v){
-                                       $("#c"+v).removeClass("groupshow grouphide").addClass(uclass);
+                               $(that.group_uids[id]).each(function(i,v) {
+                                       if(uclass == "grouphide")
+                                               $("#c"+v).removeClass("groupshow");
+                                       if(uclass != "") {
+                                               var cls = $("#c"+v).attr('class');
+                                               if( cls == undefined)
+                                                       return true;
+                                               var hiding = cls.indexOf('grouphide');
+                                               if(hiding == -1)
+                                                       $("#c"+v).addClass(uclass);
+                                       }
                                });
                                
                                break;
@@ -228,13 +291,20 @@ ACL.prototype.get = function(start,count, search){
 ACL.prototype.populate = function(data){
        var height = Math.ceil(data.tot / that.nw) * 42;
        that.list_content.height(height);
+       that.data = {};
        $(data.items).each(function(){
-               html = "<div class='acl-list-item {4} {5}' id='{2}{3}'>"+that.item_tpl+"</div>";
-               html = html.format( this.photo, this.name, this.type, this.id, '', this.network );
+               html = "<div class='acl-list-item {4} {5} type{2}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
+               html = html.format(this.photo, this.name, this.type, this.id, (this.forum=='1'?'forum':''), this.network, this.link);
                if (this.uids!=undefined) that.group_uids[this.id] = this.uids;
                //console.log(html);
                that.list_content.append(html);
+               that.data[this.id] = this;
        });
-       that.updateview();
+       $(".acl-list-item img[data-src]", that.list_content).each(function(i, el){
+               // Add src attribute for images with a data-src attribute
+               $(el).attr('src', $(el).data("src"));
+       });
+       
+       that.update_view();
 }